qeth_core.h 27 KB

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