]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/s390/net/qeth_core.h
c3ab956536ff4eba80f77fdf4d58f97356a09f18
[karo-tx-linux.git] / drivers / s390 / net / qeth_core.h
1 /*
2  *    Copyright IBM Corp. 2007
3  *    Author(s): Utz Bacher <utz.bacher@de.ibm.com>,
4  *               Frank Pavlic <fpavlic@de.ibm.com>,
5  *               Thomas Spatzier <tspat@de.ibm.com>,
6  *               Frank Blaschka <frank.blaschka@de.ibm.com>
7  */
8
9 #ifndef __QETH_CORE_H__
10 #define __QETH_CORE_H__
11
12 #include <linux/if.h>
13 #include <linux/if_arp.h>
14 #include <linux/etherdevice.h>
15 #include <linux/if_vlan.h>
16 #include <linux/ctype.h>
17 #include <linux/in6.h>
18 #include <linux/bitops.h>
19 #include <linux/seq_file.h>
20 #include <linux/ethtool.h>
21 #include <linux/hashtable.h>
22 #include <linux/ip.h>
23
24 #include <net/ipv6.h>
25 #include <net/if_inet6.h>
26 #include <net/addrconf.h>
27
28 #include <asm/debug.h>
29 #include <asm/qdio.h>
30 #include <asm/ccwdev.h>
31 #include <asm/ccwgroup.h>
32 #include <asm/sysinfo.h>
33
34 #include "qeth_core_mpc.h"
35
36 /**
37  * Debug Facility stuff
38  */
39 enum qeth_dbf_names {
40         QETH_DBF_SETUP,
41         QETH_DBF_MSG,
42         QETH_DBF_CTRL,
43         QETH_DBF_INFOS  /* must be last element */
44 };
45
46 struct qeth_dbf_info {
47         char name[DEBUG_MAX_NAME_LEN];
48         int pages;
49         int areas;
50         int len;
51         int level;
52         struct debug_view *view;
53         debug_info_t *id;
54 };
55
56 #define QETH_DBF_CTRL_LEN 256
57
58 #define QETH_DBF_TEXT(name, level, text) \
59         debug_text_event(qeth_dbf[QETH_DBF_##name].id, level, text)
60
61 #define QETH_DBF_HEX(name, level, addr, len) \
62         debug_event(qeth_dbf[QETH_DBF_##name].id, level, (void *)(addr), len)
63
64 #define QETH_DBF_MESSAGE(level, text...) \
65         debug_sprintf_event(qeth_dbf[QETH_DBF_MSG].id, level, text)
66
67 #define QETH_DBF_TEXT_(name, level, text...) \
68         qeth_dbf_longtext(qeth_dbf[QETH_DBF_##name].id, level, text)
69
70 #define QETH_CARD_TEXT(card, level, text) \
71         debug_text_event(card->debug, level, text)
72
73 #define QETH_CARD_HEX(card, level, addr, len) \
74         debug_event(card->debug, level, (void *)(addr), len)
75
76 #define QETH_CARD_MESSAGE(card, text...) \
77         debug_sprintf_event(card->debug, level, text)
78
79 #define QETH_CARD_TEXT_(card, level, text...) \
80         qeth_dbf_longtext(card->debug, level, text)
81
82 #define SENSE_COMMAND_REJECT_BYTE 0
83 #define SENSE_COMMAND_REJECT_FLAG 0x80
84 #define SENSE_RESETTING_EVENT_BYTE 1
85 #define SENSE_RESETTING_EVENT_FLAG 0x80
86
87 /*
88  * Common IO related definitions
89  */
90 #define CARD_RDEV(card) card->read.ccwdev
91 #define CARD_WDEV(card) card->write.ccwdev
92 #define CARD_DDEV(card) card->data.ccwdev
93 #define CARD_BUS_ID(card) dev_name(&card->gdev->dev)
94 #define CARD_RDEV_ID(card) dev_name(&card->read.ccwdev->dev)
95 #define CARD_WDEV_ID(card) dev_name(&card->write.ccwdev->dev)
96 #define CARD_DDEV_ID(card) dev_name(&card->data.ccwdev->dev)
97 #define CHANNEL_ID(channel) dev_name(&channel->ccwdev->dev)
98
99 /**
100  * card stuff
101  */
102 struct qeth_perf_stats {
103         unsigned int bufs_rec;
104         unsigned int bufs_sent;
105
106         unsigned int skbs_sent_pack;
107         unsigned int bufs_sent_pack;
108
109         unsigned int sc_dp_p;
110         unsigned int sc_p_dp;
111         /* qdio_cq_handler: number of times called, time spent in */
112         __u64 cq_start_time;
113         unsigned int cq_cnt;
114         unsigned int cq_time;
115         /* qdio_input_handler: number of times called, time spent in */
116         __u64 inbound_start_time;
117         unsigned int inbound_cnt;
118         unsigned int inbound_time;
119         /* qeth_send_packet: number of times called, time spent in */
120         __u64 outbound_start_time;
121         unsigned int outbound_cnt;
122         unsigned int outbound_time;
123         /* qdio_output_handler: number of times called, time spent in */
124         __u64 outbound_handler_start_time;
125         unsigned int outbound_handler_cnt;
126         unsigned int outbound_handler_time;
127         /* number of calls to and time spent in do_QDIO for inbound queue */
128         __u64 inbound_do_qdio_start_time;
129         unsigned int inbound_do_qdio_cnt;
130         unsigned int inbound_do_qdio_time;
131         /* number of calls to and time spent in do_QDIO for outbound queues */
132         __u64 outbound_do_qdio_start_time;
133         unsigned int outbound_do_qdio_cnt;
134         unsigned int outbound_do_qdio_time;
135         unsigned int large_send_bytes;
136         unsigned int large_send_cnt;
137         unsigned int sg_skbs_sent;
138         unsigned int sg_frags_sent;
139         /* initial values when measuring starts */
140         unsigned long initial_rx_packets;
141         unsigned long initial_tx_packets;
142         /* inbound scatter gather data */
143         unsigned int sg_skbs_rx;
144         unsigned int sg_frags_rx;
145         unsigned int sg_alloc_page_rx;
146         unsigned int tx_csum;
147         unsigned int tx_lin;
148 };
149
150 /* Routing stuff */
151 struct qeth_routing_info {
152         enum qeth_routing_types type;
153 };
154
155 /* IPA stuff */
156 struct qeth_ipa_info {
157         __u32 supported_funcs;
158         __u32 enabled_funcs;
159 };
160
161 /* SETBRIDGEPORT stuff */
162 enum qeth_sbp_roles {
163         QETH_SBP_ROLE_NONE      = 0,
164         QETH_SBP_ROLE_PRIMARY   = 1,
165         QETH_SBP_ROLE_SECONDARY = 2,
166 };
167
168 enum qeth_sbp_states {
169         QETH_SBP_STATE_INACTIVE = 0,
170         QETH_SBP_STATE_STANDBY  = 1,
171         QETH_SBP_STATE_ACTIVE   = 2,
172 };
173
174 #define QETH_SBP_HOST_NOTIFICATION 1
175
176 struct qeth_sbp_info {
177         __u32 supported_funcs;
178         enum qeth_sbp_roles role;
179         __u32 hostnotification:1;
180         __u32 reflect_promisc:1;
181         __u32 reflect_promisc_primary:1;
182 };
183
184 static inline int qeth_is_ipa_supported(struct qeth_ipa_info *ipa,
185                 enum qeth_ipa_funcs func)
186 {
187         return (ipa->supported_funcs & func);
188 }
189
190 static inline int qeth_is_ipa_enabled(struct qeth_ipa_info *ipa,
191                 enum qeth_ipa_funcs func)
192 {
193         return (ipa->supported_funcs & ipa->enabled_funcs & func);
194 }
195
196 #define qeth_adp_supported(c, f) \
197         qeth_is_ipa_supported(&c->options.adp, f)
198 #define qeth_adp_enabled(c, f) \
199         qeth_is_ipa_enabled(&c->options.adp, f)
200 #define qeth_is_supported(c, f) \
201         qeth_is_ipa_supported(&c->options.ipa4, f)
202 #define qeth_is_enabled(c, f) \
203         qeth_is_ipa_enabled(&c->options.ipa4, f)
204 #define qeth_is_supported6(c, f) \
205         qeth_is_ipa_supported(&c->options.ipa6, f)
206 #define qeth_is_enabled6(c, f) \
207         qeth_is_ipa_enabled(&c->options.ipa6, f)
208 #define qeth_is_ipafunc_supported(c, prot, f) \
209          ((prot == QETH_PROT_IPV6) ? \
210                 qeth_is_supported6(c, f) : qeth_is_supported(c, f))
211 #define qeth_is_ipafunc_enabled(c, prot, f) \
212          ((prot == QETH_PROT_IPV6) ? \
213                 qeth_is_enabled6(c, f) : qeth_is_enabled(c, f))
214
215 #define QETH_IDX_FUNC_LEVEL_OSD          0x0101
216 #define QETH_IDX_FUNC_LEVEL_IQD          0x4108
217
218 #define QETH_MODELLIST_ARRAY \
219         {{0x1731, 0x01, 0x1732, QETH_CARD_TYPE_OSD, QETH_MAX_QUEUES, 0}, \
220          {0x1731, 0x05, 0x1732, QETH_CARD_TYPE_IQD, QETH_MAX_QUEUES, 0x103}, \
221          {0x1731, 0x06, 0x1732, QETH_CARD_TYPE_OSN, QETH_MAX_QUEUES, 0}, \
222          {0x1731, 0x02, 0x1732, QETH_CARD_TYPE_OSM, QETH_MAX_QUEUES, 0}, \
223          {0x1731, 0x02, 0x1732, QETH_CARD_TYPE_OSX, QETH_MAX_QUEUES, 0}, \
224          {0, 0, 0, 0, 0, 0} }
225 #define QETH_CU_TYPE_IND        0
226 #define QETH_CU_MODEL_IND       1
227 #define QETH_DEV_TYPE_IND       2
228 #define QETH_DEV_MODEL_IND      3
229 #define QETH_QUEUE_NO_IND       4
230 #define QETH_MULTICAST_IND      5
231
232 #define QETH_REAL_CARD          1
233 #define QETH_VLAN_CARD          2
234 #define QETH_BUFSIZE            4096
235
236 /**
237  * some more defs
238  */
239 #define QETH_TX_TIMEOUT         100 * HZ
240 #define QETH_RCD_TIMEOUT        60 * HZ
241 #define QETH_RECLAIM_WORK_TIME  HZ
242 #define QETH_HEADER_SIZE        32
243 #define QETH_MAX_PORTNO         15
244
245 /*IPv6 address autoconfiguration stuff*/
246 #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
247 #define UNIQUE_ID_NOT_BY_CARD           0x10000
248
249 /*****************************************************************************/
250 /* QDIO queue and buffer handling                                            */
251 /*****************************************************************************/
252 #define QETH_MAX_QUEUES 4
253 #define QETH_IN_BUF_SIZE_DEFAULT 65536
254 #define QETH_IN_BUF_COUNT_DEFAULT 64
255 #define QETH_IN_BUF_COUNT_HSDEFAULT 128
256 #define QETH_IN_BUF_COUNT_MIN 8
257 #define QETH_IN_BUF_COUNT_MAX 128
258 #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
259 #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
260                  ((card)->qdio.in_buf_pool.buf_count / 2)
261
262 /* buffers we have to be behind before we get a PCI */
263 #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
264 /*enqueued free buffers left before we get a PCI*/
265 #define QETH_PCI_THRESHOLD_B(card) 0
266 /*not used unless the microcode gets patched*/
267 #define QETH_PCI_TIMER_VALUE(card) 3
268
269 /* priority queing */
270 #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
271 #define QETH_DEFAULT_QUEUE    2
272 #define QETH_NO_PRIO_QUEUEING 0
273 #define QETH_PRIO_Q_ING_PREC  1
274 #define QETH_PRIO_Q_ING_TOS   2
275 #define QETH_PRIO_Q_ING_SKB   3
276 #define QETH_PRIO_Q_ING_VLAN  4
277
278 /* Packing */
279 #define QETH_LOW_WATERMARK_PACK  2
280 #define QETH_HIGH_WATERMARK_PACK 5
281 #define QETH_WATERMARK_PACK_FUZZ 1
282
283 #define QETH_IP_HEADER_SIZE 40
284
285 /* large receive scatter gather copy break */
286 #define QETH_RX_SG_CB (PAGE_SIZE >> 1)
287 #define QETH_RX_PULL_LEN 256
288
289 struct qeth_hdr_layer3 {
290         __u8  id;
291         __u8  flags;
292         __u16 inbound_checksum; /*TSO:__u16 seqno */
293         __u32 token;            /*TSO: __u32 reserved */
294         __u16 length;
295         __u8  vlan_prio;
296         __u8  ext_flags;
297         __u16 vlan_id;
298         __u16 frame_offset;
299         __u8  dest_addr[16];
300 } __attribute__ ((packed));
301
302 struct qeth_hdr_layer2 {
303         __u8 id;
304         __u8 flags[3];
305         __u8 port_no;
306         __u8 hdr_length;
307         __u16 pkt_length;
308         __u16 seq_no;
309         __u16 vlan_id;
310         __u32 reserved;
311         __u8 reserved2[16];
312 } __attribute__ ((packed));
313
314 struct qeth_hdr_osn {
315         __u8 id;
316         __u8 reserved;
317         __u16 seq_no;
318         __u16 reserved2;
319         __u16 control_flags;
320         __u16 pdu_length;
321         __u8 reserved3[18];
322         __u32 ccid;
323 } __attribute__ ((packed));
324
325 struct qeth_hdr {
326         union {
327                 struct qeth_hdr_layer2 l2;
328                 struct qeth_hdr_layer3 l3;
329                 struct qeth_hdr_osn    osn;
330         } hdr;
331 } __attribute__ ((packed));
332
333 /*TCP Segmentation Offload header*/
334 struct qeth_hdr_ext_tso {
335         __u16 hdr_tot_len;
336         __u8  imb_hdr_no;
337         __u8  reserved;
338         __u8  hdr_type;
339         __u8  hdr_version;
340         __u16 hdr_len;
341         __u32 payload_len;
342         __u16 mss;
343         __u16 dg_hdr_len;
344         __u8  padding[16];
345 } __attribute__ ((packed));
346
347 struct qeth_hdr_tso {
348         struct qeth_hdr hdr;    /*hdr->hdr.l3.xxx*/
349         struct qeth_hdr_ext_tso ext;
350 } __attribute__ ((packed));
351
352
353 /* flags for qeth_hdr.flags */
354 #define QETH_HDR_PASSTHRU 0x10
355 #define QETH_HDR_IPV6     0x80
356 #define QETH_HDR_CAST_MASK 0x07
357 enum qeth_cast_flags {
358         QETH_CAST_UNICAST   = 0x06,
359         QETH_CAST_MULTICAST = 0x04,
360         QETH_CAST_BROADCAST = 0x05,
361         QETH_CAST_ANYCAST   = 0x07,
362         QETH_CAST_NOCAST    = 0x00,
363 };
364
365 enum qeth_layer2_frame_flags {
366         QETH_LAYER2_FLAG_MULTICAST = 0x01,
367         QETH_LAYER2_FLAG_BROADCAST = 0x02,
368         QETH_LAYER2_FLAG_UNICAST   = 0x04,
369         QETH_LAYER2_FLAG_VLAN      = 0x10,
370 };
371
372 enum qeth_header_ids {
373         QETH_HEADER_TYPE_LAYER3 = 0x01,
374         QETH_HEADER_TYPE_LAYER2 = 0x02,
375         QETH_HEADER_TYPE_TSO    = 0x03,
376         QETH_HEADER_TYPE_OSN    = 0x04,
377 };
378 /* flags for qeth_hdr.ext_flags */
379 #define QETH_HDR_EXT_VLAN_FRAME       0x01
380 #define QETH_HDR_EXT_TOKEN_ID         0x02
381 #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
382 #define QETH_HDR_EXT_SRC_MAC_ADDR     0x08
383 #define QETH_HDR_EXT_CSUM_HDR_REQ     0x10
384 #define QETH_HDR_EXT_CSUM_TRANSP_REQ  0x20
385 #define QETH_HDR_EXT_UDP              0x40 /*bit off for TCP*/
386
387 enum qeth_qdio_buffer_states {
388         /*
389          * inbound: read out by driver; owned by hardware in order to be filled
390          * outbound: owned by driver in order to be filled
391          */
392         QETH_QDIO_BUF_EMPTY,
393         /*
394          * inbound: filled by hardware; owned by driver in order to be read out
395          * outbound: filled by driver; owned by hardware in order to be sent
396          */
397         QETH_QDIO_BUF_PRIMED,
398         /*
399          * inbound: not applicable
400          * outbound: identified to be pending in TPQ
401          */
402         QETH_QDIO_BUF_PENDING,
403         /*
404          * inbound: not applicable
405          * outbound: found in completion queue
406          */
407         QETH_QDIO_BUF_IN_CQ,
408         /*
409          * inbound: not applicable
410          * outbound: handled via transfer pending / completion queue
411          */
412         QETH_QDIO_BUF_HANDLED_DELAYED,
413 };
414
415 enum qeth_qdio_info_states {
416         QETH_QDIO_UNINITIALIZED,
417         QETH_QDIO_ALLOCATED,
418         QETH_QDIO_ESTABLISHED,
419         QETH_QDIO_CLEANING
420 };
421
422 struct qeth_buffer_pool_entry {
423         struct list_head list;
424         struct list_head init_list;
425         void *elements[QDIO_MAX_ELEMENTS_PER_BUFFER];
426 };
427
428 struct qeth_qdio_buffer_pool {
429         struct list_head entry_list;
430         int buf_count;
431 };
432
433 struct qeth_qdio_buffer {
434         struct qdio_buffer *buffer;
435         /* the buffer pool entry currently associated to this buffer */
436         struct qeth_buffer_pool_entry *pool_entry;
437         struct sk_buff *rx_skb;
438 };
439
440 struct qeth_qdio_q {
441         struct qdio_buffer *qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
442         struct qeth_qdio_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
443         int next_buf_to_init;
444 };
445
446 struct qeth_qdio_out_buffer {
447         struct qdio_buffer *buffer;
448         atomic_t state;
449         int next_element_to_fill;
450         struct sk_buff_head skb_list;
451         int is_header[16];
452
453         struct qaob *aob;
454         struct qeth_qdio_out_q *q;
455         struct qeth_qdio_out_buffer *next_pending;
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         struct qdio_outbuf_state *bufstates; /* convenience pointer */
470         int queue_no;
471         struct qeth_card *card;
472         atomic_t state;
473         int do_pack;
474         /*
475          * index of buffer to be filled by driver; state EMPTY or PACKING
476          */
477         int next_buf_to_fill;
478         /*
479          * number of buffers that are currently filled (PRIMED)
480          * -> these buffers are hardware-owned
481          */
482         atomic_t used_buffers;
483         /* indicates whether PCI flag must be set (or if one is outstanding) */
484         atomic_t set_pci_flags_count;
485 };
486
487 struct qeth_qdio_info {
488         atomic_t state;
489         /* input */
490         int no_in_queues;
491         struct qeth_qdio_q *in_q;
492         struct qeth_qdio_q *c_q;
493         struct qeth_qdio_buffer_pool in_buf_pool;
494         struct qeth_qdio_buffer_pool init_pool;
495         int in_buf_size;
496
497         /* output */
498         int no_out_queues;
499         struct qeth_qdio_out_q **out_qs;
500         struct qdio_outbuf_state *out_bufstates;
501
502         /* priority queueing */
503         int do_prio_queueing;
504         int default_out_queue;
505 };
506
507 enum qeth_send_errors {
508         QETH_SEND_ERROR_NONE,
509         QETH_SEND_ERROR_LINK_FAILURE,
510         QETH_SEND_ERROR_RETRY,
511         QETH_SEND_ERROR_KICK_IT,
512 };
513
514 #define QETH_ETH_MAC_V4      0x0100 /* like v4 */
515 #define QETH_ETH_MAC_V6      0x3333 /* like v6 */
516 /* tr mc mac is longer, but that will be enough to detect mc frames */
517 #define QETH_TR_MAC_NC       0xc000 /* non-canonical */
518 #define QETH_TR_MAC_C        0x0300 /* canonical */
519
520 #define DEFAULT_ADD_HHLEN 0
521 #define MAX_ADD_HHLEN 1024
522
523 /**
524  * buffer stuff for read channel
525  */
526 #define QETH_CMD_BUFFER_NO      8
527
528 /**
529  *  channel state machine
530  */
531 enum qeth_channel_states {
532         CH_STATE_UP,
533         CH_STATE_DOWN,
534         CH_STATE_ACTIVATING,
535         CH_STATE_HALTED,
536         CH_STATE_STOPPED,
537         CH_STATE_RCD,
538         CH_STATE_RCD_DONE,
539 };
540 /**
541  * card state machine
542  */
543 enum qeth_card_states {
544         CARD_STATE_DOWN,
545         CARD_STATE_HARDSETUP,
546         CARD_STATE_SOFTSETUP,
547         CARD_STATE_UP,
548         CARD_STATE_RECOVER,
549 };
550
551 /**
552  * Protocol versions
553  */
554 enum qeth_prot_versions {
555         QETH_PROT_IPV4 = 0x0004,
556         QETH_PROT_IPV6 = 0x0006,
557 };
558
559 enum qeth_ip_types {
560         QETH_IP_TYPE_NORMAL,
561         QETH_IP_TYPE_VIPA,
562         QETH_IP_TYPE_RXIP,
563         QETH_IP_TYPE_DEL_ALL_MC,
564 };
565
566 enum qeth_cmd_buffer_state {
567         BUF_STATE_FREE,
568         BUF_STATE_LOCKED,
569         BUF_STATE_PROCESSED,
570 };
571
572 enum qeth_cq {
573         QETH_CQ_DISABLED = 0,
574         QETH_CQ_ENABLED = 1,
575         QETH_CQ_NOTAVAILABLE = 2,
576 };
577
578 struct qeth_ipato {
579         int enabled;
580         int invert4;
581         int invert6;
582         struct list_head entries;
583 };
584
585 struct qeth_channel;
586
587 struct qeth_cmd_buffer {
588         enum qeth_cmd_buffer_state state;
589         struct qeth_channel *channel;
590         unsigned char *data;
591         int rc;
592         void (*callback) (struct qeth_channel *, struct qeth_cmd_buffer *);
593 };
594
595 /**
596  * definition of a qeth channel, used for read and write
597  */
598 struct qeth_channel {
599         enum qeth_channel_states state;
600         struct ccw1 ccw;
601         spinlock_t iob_lock;
602         wait_queue_head_t wait_q;
603         struct ccw_device *ccwdev;
604 /*command buffer for control data*/
605         struct qeth_cmd_buffer iob[QETH_CMD_BUFFER_NO];
606         atomic_t irq_pending;
607         int io_buf_no;
608         int buf_no;
609 };
610
611 /**
612  *  OSA card related definitions
613  */
614 struct qeth_token {
615         __u32 issuer_rm_w;
616         __u32 issuer_rm_r;
617         __u32 cm_filter_w;
618         __u32 cm_filter_r;
619         __u32 cm_connection_w;
620         __u32 cm_connection_r;
621         __u32 ulp_filter_w;
622         __u32 ulp_filter_r;
623         __u32 ulp_connection_w;
624         __u32 ulp_connection_r;
625 };
626
627 struct qeth_seqno {
628         __u32 trans_hdr;
629         __u32 pdu_hdr;
630         __u32 pdu_hdr_ack;
631         __u16 ipa;
632         __u32 pkt_seqno;
633 };
634
635 struct qeth_reply {
636         struct list_head list;
637         wait_queue_head_t wait_q;
638         int (*callback)(struct qeth_card *, struct qeth_reply *,
639                 unsigned long);
640         u32 seqno;
641         unsigned long offset;
642         atomic_t received;
643         int rc;
644         void *param;
645         struct qeth_card *card;
646         atomic_t refcnt;
647 };
648
649
650 struct qeth_card_blkt {
651         int time_total;
652         int inter_packet;
653         int inter_packet_jumbo;
654 };
655
656 #define QETH_BROADCAST_WITH_ECHO    0x01
657 #define QETH_BROADCAST_WITHOUT_ECHO 0x02
658 #define QETH_LAYER2_MAC_READ        0x01
659 #define QETH_LAYER2_MAC_REGISTERED  0x02
660 struct qeth_card_info {
661         unsigned short unit_addr2;
662         unsigned short cula;
663         unsigned short chpid;
664         __u16 func_level;
665         char mcl_level[QETH_MCL_LENGTH + 1];
666         int guestlan;
667         int mac_bits;
668         int portno;
669         enum qeth_card_types type;
670         enum qeth_link_types link_type;
671         int is_multicast_different;
672         int initial_mtu;
673         int max_mtu;
674         int broadcast_capable;
675         int unique_id;
676         struct qeth_card_blkt blkt;
677         __u32 csum_mask;
678         __u32 tx_csum_mask;
679         enum qeth_ipa_promisc_modes promisc_mode;
680         __u32 diagass_support;
681         __u32 hwtrap;
682 };
683
684 struct qeth_card_options {
685         struct qeth_routing_info route4;
686         struct qeth_ipa_info ipa4;
687         struct qeth_ipa_info adp; /*Adapter parameters*/
688         struct qeth_routing_info route6;
689         struct qeth_ipa_info ipa6;
690         struct qeth_sbp_info sbp; /* SETBRIDGEPORT options */
691         int fake_broadcast;
692         int add_hhlen;
693         int layer2;
694         int performance_stats;
695         int rx_sg_cb;
696         enum qeth_ipa_isolation_modes isolation;
697         enum qeth_ipa_isolation_modes prev_isolation;
698         int sniffer;
699         enum qeth_cq cq;
700         char hsuid[9];
701 };
702
703 /*
704  * thread bits for qeth_card thread masks
705  */
706 enum qeth_threads {
707         QETH_RECOVER_THREAD = 1,
708 };
709
710 struct qeth_osn_info {
711         int (*assist_cb)(struct net_device *dev, void *data);
712         int (*data_cb)(struct sk_buff *skb);
713 };
714
715 enum qeth_discipline_id {
716         QETH_DISCIPLINE_LAYER3 = 0,
717         QETH_DISCIPLINE_LAYER2 = 1,
718 };
719
720 struct qeth_discipline {
721         void (*start_poll)(struct ccw_device *, int, unsigned long);
722         qdio_handler_t *input_handler;
723         qdio_handler_t *output_handler;
724         int (*recover)(void *ptr);
725         int (*setup) (struct ccwgroup_device *);
726         void (*remove) (struct ccwgroup_device *);
727         int (*set_online) (struct ccwgroup_device *);
728         int (*set_offline) (struct ccwgroup_device *);
729         void (*shutdown)(struct ccwgroup_device *);
730         int (*prepare) (struct ccwgroup_device *);
731         void (*complete) (struct ccwgroup_device *);
732         int (*freeze)(struct ccwgroup_device *);
733         int (*thaw) (struct ccwgroup_device *);
734         int (*restore)(struct ccwgroup_device *);
735         int (*control_event_handler)(struct qeth_card *card,
736                                         struct qeth_ipa_cmd *cmd);
737 };
738
739 struct qeth_vlan_vid {
740         struct list_head list;
741         unsigned short vid;
742 };
743
744 enum qeth_mac_disposition {
745         QETH_DISP_MAC_DELETE = 0,
746         QETH_DISP_MAC_DO_NOTHING = 1,
747         QETH_DISP_MAC_ADD = 2,
748 };
749
750 struct qeth_mac {
751         u8 mac_addr[OSA_ADDR_LEN];
752         u8 is_uc:1;
753         u8 disp_flag:2;
754         struct hlist_node hnode;
755 };
756
757 struct qeth_rx {
758         int b_count;
759         int b_index;
760         struct qdio_buffer_element *b_element;
761         int e_offset;
762         int qdio_err;
763 };
764
765 struct carrier_info {
766         __u8  card_type;
767         __u16 port_mode;
768         __u32 port_speed;
769 };
770
771 struct qeth_switch_info {
772         __u32 capabilities;
773         __u32 settings;
774 };
775
776 #define QETH_NAPI_WEIGHT NAPI_POLL_WEIGHT
777
778 struct qeth_card {
779         struct list_head list;
780         enum qeth_card_states state;
781         int lan_online;
782         spinlock_t lock;
783         struct ccwgroup_device *gdev;
784         struct qeth_channel read;
785         struct qeth_channel write;
786         struct qeth_channel data;
787
788         struct net_device *dev;
789         struct net_device_stats stats;
790
791         struct qeth_card_info info;
792         struct qeth_token token;
793         struct qeth_seqno seqno;
794         struct qeth_card_options options;
795
796         wait_queue_head_t wait_q;
797         spinlock_t vlanlock;
798         spinlock_t mclock;
799         unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
800         struct list_head vid_list;
801         DECLARE_HASHTABLE(mac_htable, 4);
802         struct work_struct kernel_thread_starter;
803         spinlock_t thread_mask_lock;
804         unsigned long thread_start_mask;
805         unsigned long thread_allowed_mask;
806         unsigned long thread_running_mask;
807         struct task_struct *recovery_task;
808         spinlock_t ip_lock;
809         struct list_head ip_list;
810         struct list_head *ip_tbd_list;
811         struct qeth_ipato ipato;
812         struct list_head cmd_waiter_list;
813         /* QDIO buffer handling */
814         struct qeth_qdio_info qdio;
815         struct qeth_perf_stats perf_stats;
816         int read_or_write_problem;
817         struct qeth_osn_info osn_info;
818         struct qeth_discipline *discipline;
819         atomic_t force_alloc_skb;
820         struct service_level qeth_service_level;
821         struct qdio_ssqd_desc ssqd;
822         debug_info_t *debug;
823         struct mutex conf_mutex;
824         struct mutex discipline_mutex;
825         struct napi_struct napi;
826         struct qeth_rx rx;
827         struct delayed_work buffer_reclaim_work;
828         int reclaim_index;
829         struct work_struct close_dev_work;
830 };
831
832 struct qeth_card_list_struct {
833         struct list_head list;
834         rwlock_t rwlock;
835 };
836
837 struct qeth_trap_id {
838         __u16 lparnr;
839         char vmname[8];
840         __u8 chpid;
841         __u8 ssid;
842         __u16 devno;
843 } __packed;
844
845 /*some helper functions*/
846 #define QETH_CARD_IFNAME(card) (((card)->dev)? (card)->dev->name : "")
847
848 /**
849  * qeth_get_elements_for_range() -      find number of SBALEs to cover range.
850  * @start:                              Start of the address range.
851  * @end:                                Address after the end of the range.
852  *
853  * Returns the number of pages, and thus QDIO buffer elements, needed to cover
854  * the specified address range.
855  */
856 static inline int qeth_get_elements_for_range(addr_t start, addr_t end)
857 {
858         return PFN_UP(end - 1) - PFN_DOWN(start);
859 }
860
861 static inline int qeth_get_micros(void)
862 {
863         return (int) (get_tod_clock() >> 12);
864 }
865
866 static inline int qeth_get_ip_version(struct sk_buff *skb)
867 {
868         __be16 *p = &((struct ethhdr *)skb->data)->h_proto;
869
870         if (*p == ETH_P_8021Q)
871                 p += 2;
872         switch (*p) {
873         case ETH_P_IPV6:
874                 return 6;
875         case ETH_P_IP:
876                 return 4;
877         default:
878                 return 0;
879         }
880 }
881
882 static inline int qeth_get_ip_protocol(struct sk_buff *skb)
883 {
884         return ip_hdr(skb)->protocol;
885 }
886
887 static inline void qeth_put_buffer_pool_entry(struct qeth_card *card,
888                 struct qeth_buffer_pool_entry *entry)
889 {
890         list_add_tail(&entry->list, &card->qdio.in_buf_pool.entry_list);
891 }
892
893 static inline int qeth_is_diagass_supported(struct qeth_card *card,
894                 enum qeth_diags_cmds cmd)
895 {
896         return card->info.diagass_support & (__u32)cmd;
897 }
898
899 extern struct qeth_discipline qeth_l2_discipline;
900 extern struct qeth_discipline qeth_l3_discipline;
901 extern const struct attribute_group *qeth_generic_attr_groups[];
902 extern const struct attribute_group *qeth_osn_attr_groups[];
903 extern struct workqueue_struct *qeth_wq;
904
905 int qeth_card_hw_is_reachable(struct qeth_card *);
906 const char *qeth_get_cardname_short(struct qeth_card *);
907 int qeth_realloc_buffer_pool(struct qeth_card *, int);
908 int qeth_core_load_discipline(struct qeth_card *, enum qeth_discipline_id);
909 void qeth_core_free_discipline(struct qeth_card *);
910
911 /* exports for qeth discipline device drivers */
912 extern struct qeth_card_list_struct qeth_core_card_list;
913 extern struct kmem_cache *qeth_core_header_cache;
914 extern struct qeth_dbf_info qeth_dbf[QETH_DBF_INFOS];
915
916 void qeth_set_recovery_task(struct qeth_card *);
917 void qeth_clear_recovery_task(struct qeth_card *);
918 void qeth_set_allowed_threads(struct qeth_card *, unsigned long , int);
919 int qeth_threads_running(struct qeth_card *, unsigned long);
920 int qeth_wait_for_threads(struct qeth_card *, unsigned long);
921 int qeth_do_run_thread(struct qeth_card *, unsigned long);
922 void qeth_clear_thread_start_bit(struct qeth_card *, unsigned long);
923 void qeth_clear_thread_running_bit(struct qeth_card *, unsigned long);
924 int qeth_core_hardsetup_card(struct qeth_card *);
925 void qeth_print_status_message(struct qeth_card *);
926 int qeth_init_qdio_queues(struct qeth_card *);
927 int qeth_send_startlan(struct qeth_card *);
928 int qeth_send_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *,
929                   int (*reply_cb)
930                   (struct qeth_card *, struct qeth_reply *, unsigned long),
931                   void *);
932 struct qeth_cmd_buffer *qeth_get_ipacmd_buffer(struct qeth_card *,
933                         enum qeth_ipa_cmds, enum qeth_prot_versions);
934 int qeth_query_setadapterparms(struct qeth_card *);
935 int qeth_check_qdio_errors(struct qeth_card *, struct qdio_buffer *,
936                 unsigned int, const char *);
937 void qeth_queue_input_buffer(struct qeth_card *, int);
938 struct sk_buff *qeth_core_get_next_skb(struct qeth_card *,
939                 struct qeth_qdio_buffer *, struct qdio_buffer_element **, int *,
940                 struct qeth_hdr **);
941 void qeth_schedule_recovery(struct qeth_card *);
942 void qeth_qdio_start_poll(struct ccw_device *, int, unsigned long);
943 void qeth_qdio_input_handler(struct ccw_device *,
944                 unsigned int, unsigned int, int,
945                 int, unsigned long);
946 void qeth_qdio_output_handler(struct ccw_device *, unsigned int,
947                         int, int, int, unsigned long);
948 void qeth_clear_ipacmd_list(struct qeth_card *);
949 int qeth_qdio_clear_card(struct qeth_card *, int);
950 void qeth_clear_working_pool_list(struct qeth_card *);
951 void qeth_clear_cmd_buffers(struct qeth_channel *);
952 void qeth_clear_qdio_buffers(struct qeth_card *);
953 void qeth_setadp_promisc_mode(struct qeth_card *);
954 struct net_device_stats *qeth_get_stats(struct net_device *);
955 int qeth_change_mtu(struct net_device *, int);
956 int qeth_setadpparms_change_macaddr(struct qeth_card *);
957 void qeth_tx_timeout(struct net_device *);
958 void qeth_prepare_control_data(struct qeth_card *, int,
959                                 struct qeth_cmd_buffer *);
960 void qeth_release_buffer(struct qeth_channel *, struct qeth_cmd_buffer *);
961 void qeth_prepare_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *, char);
962 struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
963 int qeth_mdio_read(struct net_device *, int, int);
964 int qeth_snmp_command(struct qeth_card *, char __user *);
965 int qeth_query_oat_command(struct qeth_card *, char __user *);
966 int qeth_query_switch_attributes(struct qeth_card *card,
967                                   struct qeth_switch_info *sw_info);
968 int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
969         int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
970         void *reply_param);
971 int qeth_bridgeport_query_ports(struct qeth_card *card,
972         enum qeth_sbp_roles *role, enum qeth_sbp_states *state);
973 int qeth_bridgeport_setrole(struct qeth_card *card, enum qeth_sbp_roles role);
974 int qeth_bridgeport_an_set(struct qeth_card *card, int enable);
975 int qeth_get_priority_queue(struct qeth_card *, struct sk_buff *, int, int);
976 int qeth_get_elements_no(struct qeth_card *, struct sk_buff *, int);
977 int qeth_get_elements_for_frags(struct sk_buff *);
978 int qeth_do_send_packet_fast(struct qeth_card *, struct qeth_qdio_out_q *,
979                         struct sk_buff *, struct qeth_hdr *, int, int, int);
980 int qeth_do_send_packet(struct qeth_card *, struct qeth_qdio_out_q *,
981                     struct sk_buff *, struct qeth_hdr *, int);
982 int qeth_core_get_sset_count(struct net_device *, int);
983 void qeth_core_get_ethtool_stats(struct net_device *,
984                                 struct ethtool_stats *, u64 *);
985 void qeth_core_get_strings(struct net_device *, u32, u8 *);
986 void qeth_core_get_drvinfo(struct net_device *, struct ethtool_drvinfo *);
987 void qeth_dbf_longtext(debug_info_t *id, int level, char *text, ...);
988 int qeth_core_ethtool_get_settings(struct net_device *, struct ethtool_cmd *);
989 int qeth_set_access_ctrl_online(struct qeth_card *card, int fallback);
990 int qeth_hdr_chk_and_bounce(struct sk_buff *, struct qeth_hdr **, int);
991 int qeth_configure_cq(struct qeth_card *, enum qeth_cq);
992 int qeth_hw_trap(struct qeth_card *, enum qeth_diags_trap_action);
993 int qeth_query_ipassists(struct qeth_card *, enum qeth_prot_versions prot);
994 void qeth_trace_features(struct qeth_card *);
995 void qeth_close_dev(struct qeth_card *);
996 int qeth_send_simple_setassparms(struct qeth_card *, enum qeth_ipa_funcs,
997                                  __u16, long);
998 int qeth_send_setassparms(struct qeth_card *, struct qeth_cmd_buffer *, __u16,
999                           long,
1000                           int (*reply_cb)(struct qeth_card *,
1001                                           struct qeth_reply *, unsigned long),
1002                           void *);
1003 struct qeth_cmd_buffer *qeth_get_setassparms_cmd(struct qeth_card *,
1004                                                  enum qeth_ipa_funcs,
1005                                                  __u16, __u16,
1006                                                  enum qeth_prot_versions);
1007 int qeth_start_ipa_tx_checksum(struct qeth_card *);
1008 int qeth_set_rx_csum(struct qeth_card *, int);
1009
1010 /* exports for OSN */
1011 int qeth_osn_assist(struct net_device *, void *, int);
1012 int qeth_osn_register(unsigned char *read_dev_no, struct net_device **,
1013                 int (*assist_cb)(struct net_device *, void *),
1014                 int (*data_cb)(struct sk_buff *));
1015 void qeth_osn_deregister(struct net_device *);
1016
1017 #endif /* __QETH_CORE_H__ */