1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 2007
4 * Author(s): Utz Bacher <utz.bacher@de.ibm.com>,
5 * Frank Pavlic <fpavlic@de.ibm.com>,
6 * Thomas Spatzier <tspat@de.ibm.com>,
7 * Frank Blaschka <frank.blaschka@de.ibm.com>
10 #ifndef __QETH_CORE_H__
11 #define __QETH_CORE_H__
14 #include <linux/if_arp.h>
15 #include <linux/etherdevice.h>
16 #include <linux/if_vlan.h>
17 #include <linux/ctype.h>
18 #include <linux/in6.h>
19 #include <linux/bitops.h>
20 #include <linux/seq_file.h>
21 #include <linux/ethtool.h>
22 #include <linux/hashtable.h>
24 #include <linux/refcount.h>
27 #include <net/if_inet6.h>
28 #include <net/addrconf.h>
30 #include <asm/debug.h>
32 #include <asm/ccwdev.h>
33 #include <asm/ccwgroup.h>
34 #include <asm/sysinfo.h>
36 #include "qeth_core_mpc.h"
39 * Debug Facility stuff
45 QETH_DBF_INFOS
/* must be last element */
48 struct qeth_dbf_info
{
49 char name
[DEBUG_MAX_NAME_LEN
];
54 struct debug_view
*view
;
58 #define QETH_DBF_CTRL_LEN 256
60 #define QETH_DBF_TEXT(name, level, text) \
61 debug_text_event(qeth_dbf[QETH_DBF_##name].id, level, text)
63 #define QETH_DBF_HEX(name, level, addr, len) \
64 debug_event(qeth_dbf[QETH_DBF_##name].id, level, (void *)(addr), len)
66 #define QETH_DBF_MESSAGE(level, text...) \
67 debug_sprintf_event(qeth_dbf[QETH_DBF_MSG].id, level, text)
69 #define QETH_DBF_TEXT_(name, level, text...) \
70 qeth_dbf_longtext(qeth_dbf[QETH_DBF_##name].id, level, text)
72 #define QETH_CARD_TEXT(card, level, text) \
73 debug_text_event(card->debug, level, text)
75 #define QETH_CARD_HEX(card, level, addr, len) \
76 debug_event(card->debug, level, (void *)(addr), len)
78 #define QETH_CARD_MESSAGE(card, text...) \
79 debug_sprintf_event(card->debug, level, text)
81 #define QETH_CARD_TEXT_(card, level, text...) \
82 qeth_dbf_longtext(card->debug, level, text)
84 #define SENSE_COMMAND_REJECT_BYTE 0
85 #define SENSE_COMMAND_REJECT_FLAG 0x80
86 #define SENSE_RESETTING_EVENT_BYTE 1
87 #define SENSE_RESETTING_EVENT_FLAG 0x80
90 * Common IO related definitions
92 #define CARD_RDEV(card) card->read.ccwdev
93 #define CARD_WDEV(card) card->write.ccwdev
94 #define CARD_DDEV(card) card->data.ccwdev
95 #define CARD_BUS_ID(card) dev_name(&card->gdev->dev)
96 #define CARD_RDEV_ID(card) dev_name(&card->read.ccwdev->dev)
97 #define CARD_WDEV_ID(card) dev_name(&card->write.ccwdev->dev)
98 #define CARD_DDEV_ID(card) dev_name(&card->data.ccwdev->dev)
99 #define CHANNEL_ID(channel) dev_name(&channel->ccwdev->dev)
104 struct qeth_perf_stats
{
105 unsigned int bufs_rec
;
106 unsigned int bufs_sent
;
108 unsigned int skbs_sent_pack
;
109 unsigned int bufs_sent_pack
;
111 unsigned int sc_dp_p
;
112 unsigned int sc_p_dp
;
113 /* qdio_cq_handler: number of times called, time spent in */
116 unsigned int cq_time
;
117 /* qdio_input_handler: number of times called, time spent in */
118 __u64 inbound_start_time
;
119 unsigned int inbound_cnt
;
120 unsigned int inbound_time
;
121 /* qeth_send_packet: number of times called, time spent in */
122 __u64 outbound_start_time
;
123 unsigned int outbound_cnt
;
124 unsigned int outbound_time
;
125 /* qdio_output_handler: number of times called, time spent in */
126 __u64 outbound_handler_start_time
;
127 unsigned int outbound_handler_cnt
;
128 unsigned int outbound_handler_time
;
129 /* number of calls to and time spent in do_QDIO for inbound queue */
130 __u64 inbound_do_qdio_start_time
;
131 unsigned int inbound_do_qdio_cnt
;
132 unsigned int inbound_do_qdio_time
;
133 /* number of calls to and time spent in do_QDIO for outbound queues */
134 __u64 outbound_do_qdio_start_time
;
135 unsigned int outbound_do_qdio_cnt
;
136 unsigned int outbound_do_qdio_time
;
137 unsigned int large_send_bytes
;
138 unsigned int large_send_cnt
;
139 unsigned int sg_skbs_sent
;
140 unsigned int sg_frags_sent
;
141 /* initial values when measuring starts */
142 unsigned long initial_rx_packets
;
143 unsigned long initial_tx_packets
;
144 /* inbound scatter gather data */
145 unsigned int sg_skbs_rx
;
146 unsigned int sg_frags_rx
;
147 unsigned int sg_alloc_page_rx
;
148 unsigned int tx_csum
;
150 unsigned int tx_linfail
;
154 struct qeth_routing_info
{
155 enum qeth_routing_types type
;
159 struct qeth_ipa_info
{
160 __u32 supported_funcs
;
164 /* SETBRIDGEPORT stuff */
165 enum qeth_sbp_roles
{
166 QETH_SBP_ROLE_NONE
= 0,
167 QETH_SBP_ROLE_PRIMARY
= 1,
168 QETH_SBP_ROLE_SECONDARY
= 2,
171 enum qeth_sbp_states
{
172 QETH_SBP_STATE_INACTIVE
= 0,
173 QETH_SBP_STATE_STANDBY
= 1,
174 QETH_SBP_STATE_ACTIVE
= 2,
177 #define QETH_SBP_HOST_NOTIFICATION 1
179 struct qeth_sbp_info
{
180 __u32 supported_funcs
;
181 enum qeth_sbp_roles role
;
182 __u32 hostnotification
:1;
183 __u32 reflect_promisc
:1;
184 __u32 reflect_promisc_primary
:1;
187 struct qeth_vnicc_info
{
188 /* supported/currently configured VNICCs; updated in IPA exchanges */
191 /* supported commands: bitmasks which VNICCs support respective cmd */
193 u32 getset_timeout_sup
;
194 /* timeout value for the learning characteristic */
195 u32 learning_timeout
;
196 /* characteristics wanted/configured by user */
198 /* has user explicitly enabled rx_bcast while online? */
199 bool rx_bcast_enabled
;
202 static inline int qeth_is_ipa_supported(struct qeth_ipa_info
*ipa
,
203 enum qeth_ipa_funcs func
)
205 return (ipa
->supported_funcs
& func
);
208 static inline int qeth_is_ipa_enabled(struct qeth_ipa_info
*ipa
,
209 enum qeth_ipa_funcs func
)
211 return (ipa
->supported_funcs
& ipa
->enabled_funcs
& func
);
214 #define qeth_adp_supported(c, f) \
215 qeth_is_ipa_supported(&c->options.adp, f)
216 #define qeth_adp_enabled(c, f) \
217 qeth_is_ipa_enabled(&c->options.adp, f)
218 #define qeth_is_supported(c, f) \
219 qeth_is_ipa_supported(&c->options.ipa4, f)
220 #define qeth_is_enabled(c, f) \
221 qeth_is_ipa_enabled(&c->options.ipa4, f)
222 #define qeth_is_supported6(c, f) \
223 qeth_is_ipa_supported(&c->options.ipa6, f)
224 #define qeth_is_enabled6(c, f) \
225 qeth_is_ipa_enabled(&c->options.ipa6, f)
226 #define qeth_is_ipafunc_supported(c, prot, f) \
227 ((prot == QETH_PROT_IPV6) ? \
228 qeth_is_supported6(c, f) : qeth_is_supported(c, f))
229 #define qeth_is_ipafunc_enabled(c, prot, f) \
230 ((prot == QETH_PROT_IPV6) ? \
231 qeth_is_enabled6(c, f) : qeth_is_enabled(c, f))
233 #define QETH_IDX_FUNC_LEVEL_OSD 0x0101
234 #define QETH_IDX_FUNC_LEVEL_IQD 0x4108
236 #define QETH_REAL_CARD 1
237 #define QETH_VLAN_CARD 2
238 #define QETH_BUFSIZE 4096
243 #define QETH_TX_TIMEOUT 100 * HZ
244 #define QETH_RCD_TIMEOUT 60 * HZ
245 #define QETH_RECLAIM_WORK_TIME HZ
246 #define QETH_MAX_PORTNO 15
248 /*IPv6 address autoconfiguration stuff*/
249 #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
250 #define UNIQUE_ID_NOT_BY_CARD 0x10000
252 /*****************************************************************************/
253 /* QDIO queue and buffer handling */
254 /*****************************************************************************/
255 #define QETH_MAX_QUEUES 4
256 #define QETH_IN_BUF_SIZE_DEFAULT 65536
257 #define QETH_IN_BUF_COUNT_DEFAULT 64
258 #define QETH_IN_BUF_COUNT_HSDEFAULT 128
259 #define QETH_IN_BUF_COUNT_MIN 8
260 #define QETH_IN_BUF_COUNT_MAX 128
261 #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
262 #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
263 ((card)->qdio.in_buf_pool.buf_count / 2)
265 /* buffers we have to be behind before we get a PCI */
266 #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
267 /*enqueued free buffers left before we get a PCI*/
268 #define QETH_PCI_THRESHOLD_B(card) 0
269 /*not used unless the microcode gets patched*/
270 #define QETH_PCI_TIMER_VALUE(card) 3
272 /* priority queing */
273 #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
274 #define QETH_DEFAULT_QUEUE 2
275 #define QETH_NO_PRIO_QUEUEING 0
276 #define QETH_PRIO_Q_ING_PREC 1
277 #define QETH_PRIO_Q_ING_TOS 2
278 #define QETH_PRIO_Q_ING_SKB 3
279 #define QETH_PRIO_Q_ING_VLAN 4
282 #define QETH_LOW_WATERMARK_PACK 2
283 #define QETH_HIGH_WATERMARK_PACK 5
284 #define QETH_WATERMARK_PACK_FUZZ 1
286 /* large receive scatter gather copy break */
287 #define QETH_RX_SG_CB (PAGE_SIZE >> 1)
288 #define QETH_RX_PULL_LEN 256
290 struct qeth_hdr_layer3
{
293 __u16 inbound_checksum
; /*TSO:__u16 seqno */
294 __u32 token
; /*TSO: __u32 reserved */
318 struct qeth_hdr_layer2
{
328 } __attribute__ ((packed
));
330 struct qeth_hdr_osn
{
339 } __attribute__ ((packed
));
343 struct qeth_hdr_layer2 l2
;
344 struct qeth_hdr_layer3 l3
;
345 struct qeth_hdr_osn osn
;
347 } __attribute__ ((packed
));
349 /*TCP Segmentation Offload header*/
350 struct qeth_hdr_ext_tso
{
361 } __attribute__ ((packed
));
363 struct qeth_hdr_tso
{
364 struct qeth_hdr hdr
; /*hdr->hdr.l3.xxx*/
365 struct qeth_hdr_ext_tso ext
;
366 } __attribute__ ((packed
));
369 /* flags for qeth_hdr.flags */
370 #define QETH_HDR_PASSTHRU 0x10
371 #define QETH_HDR_IPV6 0x80
372 #define QETH_HDR_CAST_MASK 0x07
373 enum qeth_cast_flags
{
374 QETH_CAST_UNICAST
= 0x06,
375 QETH_CAST_MULTICAST
= 0x04,
376 QETH_CAST_BROADCAST
= 0x05,
377 QETH_CAST_ANYCAST
= 0x07,
378 QETH_CAST_NOCAST
= 0x00,
381 enum qeth_layer2_frame_flags
{
382 QETH_LAYER2_FLAG_MULTICAST
= 0x01,
383 QETH_LAYER2_FLAG_BROADCAST
= 0x02,
384 QETH_LAYER2_FLAG_UNICAST
= 0x04,
385 QETH_LAYER2_FLAG_VLAN
= 0x10,
388 enum qeth_header_ids
{
389 QETH_HEADER_TYPE_LAYER3
= 0x01,
390 QETH_HEADER_TYPE_LAYER2
= 0x02,
391 QETH_HEADER_TYPE_TSO
= 0x03,
392 QETH_HEADER_TYPE_OSN
= 0x04,
394 /* flags for qeth_hdr.ext_flags */
395 #define QETH_HDR_EXT_VLAN_FRAME 0x01
396 #define QETH_HDR_EXT_TOKEN_ID 0x02
397 #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
398 #define QETH_HDR_EXT_SRC_MAC_ADDR 0x08
399 #define QETH_HDR_EXT_CSUM_HDR_REQ 0x10
400 #define QETH_HDR_EXT_CSUM_TRANSP_REQ 0x20
401 #define QETH_HDR_EXT_UDP 0x40 /*bit off for TCP*/
403 enum qeth_qdio_buffer_states
{
405 * inbound: read out by driver; owned by hardware in order to be filled
406 * outbound: owned by driver in order to be filled
410 * inbound: filled by hardware; owned by driver in order to be read out
411 * outbound: filled by driver; owned by hardware in order to be sent
413 QETH_QDIO_BUF_PRIMED
,
415 * inbound: not applicable
416 * outbound: identified to be pending in TPQ
418 QETH_QDIO_BUF_PENDING
,
420 * inbound: not applicable
421 * outbound: found in completion queue
425 * inbound: not applicable
426 * outbound: handled via transfer pending / completion queue
428 QETH_QDIO_BUF_HANDLED_DELAYED
,
431 enum qeth_qdio_info_states
{
432 QETH_QDIO_UNINITIALIZED
,
434 QETH_QDIO_ESTABLISHED
,
438 struct qeth_buffer_pool_entry
{
439 struct list_head list
;
440 struct list_head init_list
;
441 void *elements
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
444 struct qeth_qdio_buffer_pool
{
445 struct list_head entry_list
;
449 struct qeth_qdio_buffer
{
450 struct qdio_buffer
*buffer
;
451 /* the buffer pool entry currently associated to this buffer */
452 struct qeth_buffer_pool_entry
*pool_entry
;
453 struct sk_buff
*rx_skb
;
457 struct qdio_buffer
*qdio_bufs
[QDIO_MAX_BUFFERS_PER_Q
];
458 struct qeth_qdio_buffer bufs
[QDIO_MAX_BUFFERS_PER_Q
];
459 int next_buf_to_init
;
462 struct qeth_qdio_out_buffer
{
463 struct qdio_buffer
*buffer
;
465 int next_element_to_fill
;
466 struct sk_buff_head skb_list
;
467 int is_header
[QDIO_MAX_ELEMENTS_PER_BUFFER
];
470 struct qeth_qdio_out_q
*q
;
471 struct qeth_qdio_out_buffer
*next_pending
;
476 enum qeth_out_q_states
{
479 QETH_OUT_Q_LOCKED_FLUSH
,
482 struct qeth_qdio_out_q
{
483 struct qdio_buffer
*qdio_bufs
[QDIO_MAX_BUFFERS_PER_Q
];
484 struct qeth_qdio_out_buffer
*bufs
[QDIO_MAX_BUFFERS_PER_Q
];
485 struct qdio_outbuf_state
*bufstates
; /* convenience pointer */
487 struct qeth_card
*card
;
491 * index of buffer to be filled by driver; state EMPTY or PACKING
493 int next_buf_to_fill
;
495 * number of buffers that are currently filled (PRIMED)
496 * -> these buffers are hardware-owned
498 atomic_t used_buffers
;
499 /* indicates whether PCI flag must be set (or if one is outstanding) */
500 atomic_t set_pci_flags_count
;
503 struct qeth_qdio_info
{
507 struct qeth_qdio_q
*in_q
;
508 struct qeth_qdio_q
*c_q
;
509 struct qeth_qdio_buffer_pool in_buf_pool
;
510 struct qeth_qdio_buffer_pool init_pool
;
515 struct qeth_qdio_out_q
**out_qs
;
516 struct qdio_outbuf_state
*out_bufstates
;
518 /* priority queueing */
519 int do_prio_queueing
;
520 int default_out_queue
;
524 * buffer stuff for read channel
526 #define QETH_CMD_BUFFER_NO 8
529 * channel state machine
531 enum qeth_channel_states
{
543 enum qeth_card_states
{
545 CARD_STATE_HARDSETUP
,
546 CARD_STATE_SOFTSETUP
,
554 enum qeth_prot_versions
{
555 QETH_PROT_IPV4
= 0x0004,
556 QETH_PROT_IPV6
= 0x0006,
565 enum qeth_cmd_buffer_state
{
572 QETH_CQ_DISABLED
= 0,
574 QETH_CQ_NOTAVAILABLE
= 2,
581 struct list_head entries
;
586 struct qeth_cmd_buffer
{
587 enum qeth_cmd_buffer_state state
;
588 struct qeth_channel
*channel
;
591 void (*callback
) (struct qeth_channel
*, struct qeth_cmd_buffer
*);
594 static inline struct qeth_ipa_cmd
*__ipa_cmd(struct qeth_cmd_buffer
*iob
)
596 return (struct qeth_ipa_cmd
*)(iob
->data
+ IPA_PDU_HEADER_SIZE
);
600 * definition of a qeth channel, used for read and write
602 struct qeth_channel
{
603 enum qeth_channel_states state
;
606 wait_queue_head_t wait_q
;
607 struct ccw_device
*ccwdev
;
608 /*command buffer for control data*/
609 struct qeth_cmd_buffer iob
[QETH_CMD_BUFFER_NO
];
610 atomic_t irq_pending
;
616 * OSA card related definitions
623 __u32 cm_connection_w
;
624 __u32 cm_connection_r
;
627 __u32 ulp_connection_w
;
628 __u32 ulp_connection_r
;
640 struct list_head list
;
641 wait_queue_head_t wait_q
;
642 int (*callback
)(struct qeth_card
*, struct qeth_reply
*,
645 unsigned long offset
;
649 struct qeth_card
*card
;
653 struct qeth_card_blkt
{
656 int inter_packet_jumbo
;
659 #define QETH_BROADCAST_WITH_ECHO 0x01
660 #define QETH_BROADCAST_WITHOUT_ECHO 0x02
661 #define QETH_LAYER2_MAC_READ 0x01
662 #define QETH_LAYER2_MAC_REGISTERED 0x02
663 struct qeth_card_info
{
664 unsigned short unit_addr2
;
666 unsigned short chpid
;
668 char mcl_level
[QETH_MCL_LENGTH
+ 1];
672 enum qeth_card_types type
;
673 enum qeth_link_types link_type
;
674 int is_multicast_different
;
677 int broadcast_capable
;
680 struct qeth_card_blkt blkt
;
681 enum qeth_ipa_promisc_modes promisc_mode
;
682 __u32 diagass_support
;
686 struct qeth_card_options
{
687 struct qeth_routing_info route4
;
688 struct qeth_ipa_info ipa4
;
689 struct qeth_ipa_info adp
; /*Adapter parameters*/
690 struct qeth_routing_info route6
;
691 struct qeth_ipa_info ipa6
;
692 struct qeth_sbp_info sbp
; /* SETBRIDGEPORT options */
693 struct qeth_vnicc_info vnicc
; /* VNICC options */
696 int performance_stats
;
698 enum qeth_ipa_isolation_modes isolation
;
699 enum qeth_ipa_isolation_modes prev_isolation
;
706 * thread bits for qeth_card thread masks
709 QETH_RECOVER_THREAD
= 1,
712 struct qeth_osn_info
{
713 int (*assist_cb
)(struct net_device
*dev
, void *data
);
714 int (*data_cb
)(struct sk_buff
*skb
);
717 enum qeth_discipline_id
{
718 QETH_DISCIPLINE_UNDETERMINED
= -1,
719 QETH_DISCIPLINE_LAYER3
= 0,
720 QETH_DISCIPLINE_LAYER2
= 1,
723 struct qeth_discipline
{
724 const struct device_type
*devtype
;
725 void (*start_poll
)(struct ccw_device
*, int, unsigned long);
726 qdio_handler_t
*input_handler
;
727 qdio_handler_t
*output_handler
;
728 int (*process_rx_buffer
)(struct qeth_card
*card
, int budget
, int *done
);
729 int (*recover
)(void *ptr
);
730 int (*setup
) (struct ccwgroup_device
*);
731 void (*remove
) (struct ccwgroup_device
*);
732 int (*set_online
) (struct ccwgroup_device
*);
733 int (*set_offline
) (struct ccwgroup_device
*);
734 int (*freeze
)(struct ccwgroup_device
*);
735 int (*thaw
) (struct ccwgroup_device
*);
736 int (*restore
)(struct ccwgroup_device
*);
737 int (*do_ioctl
)(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
738 int (*control_event_handler
)(struct qeth_card
*card
,
739 struct qeth_ipa_cmd
*cmd
);
742 struct qeth_vlan_vid
{
743 struct list_head list
;
747 enum qeth_addr_disposition
{
748 QETH_DISP_ADDR_DELETE
= 0,
749 QETH_DISP_ADDR_DO_NOTHING
= 1,
750 QETH_DISP_ADDR_ADD
= 2,
756 struct qdio_buffer_element
*b_element
;
761 struct carrier_info
{
767 struct qeth_switch_info
{
772 #define QETH_NAPI_WEIGHT NAPI_POLL_WEIGHT
775 struct list_head list
;
776 enum qeth_card_states state
;
779 struct ccwgroup_device
*gdev
;
780 struct qeth_channel read
;
781 struct qeth_channel write
;
782 struct qeth_channel data
;
784 struct net_device
*dev
;
785 struct net_device_stats stats
;
787 struct qeth_card_info info
;
788 struct qeth_token token
;
789 struct qeth_seqno seqno
;
790 struct qeth_card_options options
;
792 wait_queue_head_t wait_q
;
795 unsigned long active_vlans
[BITS_TO_LONGS(VLAN_N_VID
)];
796 struct list_head vid_list
;
797 DECLARE_HASHTABLE(mac_htable
, 4);
798 DECLARE_HASHTABLE(ip_htable
, 4);
799 DECLARE_HASHTABLE(ip_mc_htable
, 4);
800 struct work_struct kernel_thread_starter
;
801 spinlock_t thread_mask_lock
;
802 unsigned long thread_start_mask
;
803 unsigned long thread_allowed_mask
;
804 unsigned long thread_running_mask
;
805 struct task_struct
*recovery_task
;
807 struct qeth_ipato ipato
;
808 struct list_head cmd_waiter_list
;
809 /* QDIO buffer handling */
810 struct qeth_qdio_info qdio
;
811 struct qeth_perf_stats perf_stats
;
812 int read_or_write_problem
;
813 struct qeth_osn_info osn_info
;
814 struct qeth_discipline
*discipline
;
815 atomic_t force_alloc_skb
;
816 struct service_level qeth_service_level
;
817 struct qdio_ssqd_desc ssqd
;
819 struct mutex conf_mutex
;
820 struct mutex discipline_mutex
;
821 struct napi_struct napi
;
823 struct delayed_work buffer_reclaim_work
;
825 struct work_struct close_dev_work
;
828 struct qeth_card_list_struct
{
829 struct list_head list
;
833 struct qeth_trap_id
{
841 /*some helper functions*/
842 #define QETH_CARD_IFNAME(card) (((card)->dev)? (card)->dev->name : "")
845 * qeth_get_elements_for_range() - find number of SBALEs to cover range.
846 * @start: Start of the address range.
847 * @end: Address after the end of the range.
849 * Returns the number of pages, and thus QDIO buffer elements, needed to cover
850 * the specified address range.
852 static inline int qeth_get_elements_for_range(addr_t start
, addr_t end
)
854 return PFN_UP(end
) - PFN_DOWN(start
);
857 static inline int qeth_get_micros(void)
859 return (int) (get_tod_clock() >> 12);
862 static inline int qeth_get_ip_version(struct sk_buff
*skb
)
864 struct vlan_ethhdr
*veth
= vlan_eth_hdr(skb
);
865 __be16 prot
= veth
->h_vlan_proto
;
867 if (prot
== htons(ETH_P_8021Q
))
868 prot
= veth
->h_vlan_encapsulated_proto
;
871 case htons(ETH_P_IPV6
):
873 case htons(ETH_P_IP
):
880 static inline void qeth_put_buffer_pool_entry(struct qeth_card
*card
,
881 struct qeth_buffer_pool_entry
*entry
)
883 list_add_tail(&entry
->list
, &card
->qdio
.in_buf_pool
.entry_list
);
886 static inline int qeth_is_diagass_supported(struct qeth_card
*card
,
887 enum qeth_diags_cmds cmd
)
889 return card
->info
.diagass_support
& (__u32
)cmd
;
892 extern struct qeth_discipline qeth_l2_discipline
;
893 extern struct qeth_discipline qeth_l3_discipline
;
894 extern const struct attribute_group
*qeth_generic_attr_groups
[];
895 extern const struct attribute_group
*qeth_osn_attr_groups
[];
896 extern const struct attribute_group qeth_device_attr_group
;
897 extern const struct attribute_group qeth_device_blkt_group
;
898 extern const struct device_type qeth_generic_devtype
;
899 extern struct workqueue_struct
*qeth_wq
;
901 int qeth_card_hw_is_reachable(struct qeth_card
*);
902 const char *qeth_get_cardname_short(struct qeth_card
*);
903 int qeth_realloc_buffer_pool(struct qeth_card
*, int);
904 int qeth_core_load_discipline(struct qeth_card
*, enum qeth_discipline_id
);
905 void qeth_core_free_discipline(struct qeth_card
*);
907 /* exports for qeth discipline device drivers */
908 extern struct qeth_card_list_struct qeth_core_card_list
;
909 extern struct kmem_cache
*qeth_core_header_cache
;
910 extern struct qeth_dbf_info qeth_dbf
[QETH_DBF_INFOS
];
912 void qeth_set_recovery_task(struct qeth_card
*);
913 void qeth_clear_recovery_task(struct qeth_card
*);
914 void qeth_set_allowed_threads(struct qeth_card
*, unsigned long , int);
915 int qeth_threads_running(struct qeth_card
*, unsigned long);
916 int qeth_wait_for_threads(struct qeth_card
*, unsigned long);
917 int qeth_do_run_thread(struct qeth_card
*, unsigned long);
918 void qeth_clear_thread_start_bit(struct qeth_card
*, unsigned long);
919 void qeth_clear_thread_running_bit(struct qeth_card
*, unsigned long);
920 int qeth_core_hardsetup_card(struct qeth_card
*);
921 void qeth_print_status_message(struct qeth_card
*);
922 int qeth_init_qdio_queues(struct qeth_card
*);
923 int qeth_send_ipa_cmd(struct qeth_card
*, struct qeth_cmd_buffer
*,
925 (struct qeth_card
*, struct qeth_reply
*, unsigned long),
927 struct qeth_cmd_buffer
*qeth_get_ipacmd_buffer(struct qeth_card
*,
928 enum qeth_ipa_cmds
, enum qeth_prot_versions
);
929 int qeth_query_setadapterparms(struct qeth_card
*);
930 struct sk_buff
*qeth_core_get_next_skb(struct qeth_card
*,
931 struct qeth_qdio_buffer
*, struct qdio_buffer_element
**, int *,
933 void qeth_schedule_recovery(struct qeth_card
*);
934 void qeth_qdio_start_poll(struct ccw_device
*, int, unsigned long);
935 int qeth_poll(struct napi_struct
*napi
, int budget
);
936 void qeth_qdio_input_handler(struct ccw_device
*,
937 unsigned int, unsigned int, int,
939 void qeth_qdio_output_handler(struct ccw_device
*, unsigned int,
940 int, int, int, unsigned long);
941 void qeth_clear_ipacmd_list(struct qeth_card
*);
942 int qeth_qdio_clear_card(struct qeth_card
*, int);
943 void qeth_clear_working_pool_list(struct qeth_card
*);
944 void qeth_clear_cmd_buffers(struct qeth_channel
*);
945 void qeth_clear_qdio_buffers(struct qeth_card
*);
946 void qeth_setadp_promisc_mode(struct qeth_card
*);
947 struct net_device_stats
*qeth_get_stats(struct net_device
*);
948 int qeth_change_mtu(struct net_device
*, int);
949 int qeth_setadpparms_change_macaddr(struct qeth_card
*);
950 void qeth_tx_timeout(struct net_device
*);
951 void qeth_prepare_control_data(struct qeth_card
*, int,
952 struct qeth_cmd_buffer
*);
953 void qeth_release_buffer(struct qeth_channel
*, struct qeth_cmd_buffer
*);
954 void qeth_prepare_ipa_cmd(struct qeth_card
*, struct qeth_cmd_buffer
*, char);
955 struct qeth_cmd_buffer
*qeth_wait_for_buffer(struct qeth_channel
*);
956 int qeth_query_switch_attributes(struct qeth_card
*card
,
957 struct qeth_switch_info
*sw_info
);
958 int qeth_send_control_data(struct qeth_card
*, int, struct qeth_cmd_buffer
*,
959 int (*reply_cb
)(struct qeth_card
*, struct qeth_reply
*, unsigned long),
961 int qeth_bridgeport_query_ports(struct qeth_card
*card
,
962 enum qeth_sbp_roles
*role
, enum qeth_sbp_states
*state
);
963 int qeth_bridgeport_setrole(struct qeth_card
*card
, enum qeth_sbp_roles role
);
964 int qeth_bridgeport_an_set(struct qeth_card
*card
, int enable
);
965 int qeth_get_priority_queue(struct qeth_card
*, struct sk_buff
*, int, int);
966 int qeth_get_elements_no(struct qeth_card
*card
, struct sk_buff
*skb
,
967 int extra_elems
, int data_offset
);
968 int qeth_get_elements_for_frags(struct sk_buff
*);
969 int qeth_do_send_packet_fast(struct qeth_qdio_out_q
*queue
, struct sk_buff
*skb
,
970 struct qeth_hdr
*hdr
, unsigned int offset
,
971 unsigned int hd_len
);
972 int qeth_do_send_packet(struct qeth_card
*card
, struct qeth_qdio_out_q
*queue
,
973 struct sk_buff
*skb
, struct qeth_hdr
*hdr
,
974 unsigned int offset
, unsigned int hd_len
,
975 int elements_needed
);
976 int qeth_do_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
977 int qeth_core_get_sset_count(struct net_device
*, int);
978 void qeth_core_get_ethtool_stats(struct net_device
*,
979 struct ethtool_stats
*, u64
*);
980 void qeth_core_get_strings(struct net_device
*, u32
, u8
*);
981 void qeth_core_get_drvinfo(struct net_device
*, struct ethtool_drvinfo
*);
982 void qeth_dbf_longtext(debug_info_t
*id
, int level
, char *text
, ...);
983 int qeth_core_ethtool_get_link_ksettings(struct net_device
*netdev
,
984 struct ethtool_link_ksettings
*cmd
);
985 int qeth_set_access_ctrl_online(struct qeth_card
*card
, int fallback
);
986 int qeth_hdr_chk_and_bounce(struct sk_buff
*, struct qeth_hdr
**, int);
987 int qeth_configure_cq(struct qeth_card
*, enum qeth_cq
);
988 int qeth_hw_trap(struct qeth_card
*, enum qeth_diags_trap_action
);
989 int qeth_query_ipassists(struct qeth_card
*, enum qeth_prot_versions prot
);
990 void qeth_trace_features(struct qeth_card
*);
991 void qeth_close_dev(struct qeth_card
*);
992 int qeth_send_simple_setassparms(struct qeth_card
*, enum qeth_ipa_funcs
,
994 int qeth_send_setassparms(struct qeth_card
*, struct qeth_cmd_buffer
*, __u16
,
996 int (*reply_cb
)(struct qeth_card
*,
997 struct qeth_reply
*, unsigned long),
999 int qeth_setassparms_cb(struct qeth_card
*, struct qeth_reply
*, unsigned long);
1000 struct qeth_cmd_buffer
*qeth_get_setassparms_cmd(struct qeth_card
*,
1001 enum qeth_ipa_funcs
,
1003 enum qeth_prot_versions
);
1004 int qeth_set_features(struct net_device
*, netdev_features_t
);
1005 void qeth_recover_features(struct net_device
*dev
);
1006 netdev_features_t
qeth_fix_features(struct net_device
*, netdev_features_t
);
1007 netdev_features_t
qeth_features_check(struct sk_buff
*skb
,
1008 struct net_device
*dev
,
1009 netdev_features_t features
);
1010 int qeth_vm_request_mac(struct qeth_card
*card
);
1011 int qeth_push_hdr(struct sk_buff
*skb
, struct qeth_hdr
**hdr
, unsigned int len
);
1013 /* exports for OSN */
1014 int qeth_osn_assist(struct net_device
*, void *, int);
1015 int qeth_osn_register(unsigned char *read_dev_no
, struct net_device
**,
1016 int (*assist_cb
)(struct net_device
*, void *),
1017 int (*data_cb
)(struct sk_buff
*));
1018 void qeth_osn_deregister(struct net_device
*);
1020 #endif /* __QETH_CORE_H__ */