qeth_core.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. /*
  2. * drivers/s390/net/qeth_core.h
  3. *
  4. * Copyright IBM Corp. 2007
  5. * Author(s): Utz Bacher <utz.bacher@de.ibm.com>,
  6. * Frank Pavlic <fpavlic@de.ibm.com>,
  7. * Thomas Spatzier <tspat@de.ibm.com>,
  8. * Frank Blaschka <frank.blaschka@de.ibm.com>
  9. */
  10. #ifndef __QETH_CORE_H__
  11. #define __QETH_CORE_H__
  12. #include <linux/if.h>
  13. #include <linux/if_arp.h>
  14. #include <linux/if_tr.h>
  15. #include <linux/trdevice.h>
  16. #include <linux/etherdevice.h>
  17. #include <linux/if_vlan.h>
  18. #include <linux/ctype.h>
  19. #include <linux/in6.h>
  20. #include <linux/bitops.h>
  21. #include <linux/seq_file.h>
  22. #include <linux/ethtool.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. };
  130. /* Routing stuff */
  131. struct qeth_routing_info {
  132. enum qeth_routing_types type;
  133. };
  134. /* IPA stuff */
  135. struct qeth_ipa_info {
  136. __u32 supported_funcs;
  137. __u32 enabled_funcs;
  138. };
  139. static inline int qeth_is_ipa_supported(struct qeth_ipa_info *ipa,
  140. enum qeth_ipa_funcs func)
  141. {
  142. return (ipa->supported_funcs & func);
  143. }
  144. static inline int qeth_is_ipa_enabled(struct qeth_ipa_info *ipa,
  145. enum qeth_ipa_funcs func)
  146. {
  147. return (ipa->supported_funcs & ipa->enabled_funcs & func);
  148. }
  149. #define qeth_adp_supported(c, f) \
  150. qeth_is_ipa_supported(&c->options.adp, f)
  151. #define qeth_adp_enabled(c, f) \
  152. qeth_is_ipa_enabled(&c->options.adp, f)
  153. #define qeth_is_supported(c, f) \
  154. qeth_is_ipa_supported(&c->options.ipa4, f)
  155. #define qeth_is_enabled(c, f) \
  156. qeth_is_ipa_enabled(&c->options.ipa4, f)
  157. #define qeth_is_supported6(c, f) \
  158. qeth_is_ipa_supported(&c->options.ipa6, f)
  159. #define qeth_is_enabled6(c, f) \
  160. qeth_is_ipa_enabled(&c->options.ipa6, f)
  161. #define qeth_is_ipafunc_supported(c, prot, f) \
  162. ((prot == QETH_PROT_IPV6) ? \
  163. qeth_is_supported6(c, f) : qeth_is_supported(c, f))
  164. #define qeth_is_ipafunc_enabled(c, prot, f) \
  165. ((prot == QETH_PROT_IPV6) ? \
  166. qeth_is_enabled6(c, f) : qeth_is_enabled(c, f))
  167. #define QETH_IDX_FUNC_LEVEL_OSD 0x0101
  168. #define QETH_IDX_FUNC_LEVEL_IQD 0x4108
  169. #define QETH_MODELLIST_ARRAY \
  170. {{0x1731, 0x01, 0x1732, QETH_CARD_TYPE_OSD, QETH_MAX_QUEUES, 0}, \
  171. {0x1731, 0x05, 0x1732, QETH_CARD_TYPE_IQD, QETH_MAX_QUEUES, 0x103}, \
  172. {0x1731, 0x06, 0x1732, QETH_CARD_TYPE_OSN, QETH_MAX_QUEUES, 0}, \
  173. {0x1731, 0x02, 0x1732, QETH_CARD_TYPE_OSM, QETH_MAX_QUEUES, 0}, \
  174. {0x1731, 0x02, 0x1732, QETH_CARD_TYPE_OSX, QETH_MAX_QUEUES, 0}, \
  175. {0, 0, 0, 0, 0, 0} }
  176. #define QETH_CU_TYPE_IND 0
  177. #define QETH_CU_MODEL_IND 1
  178. #define QETH_DEV_TYPE_IND 2
  179. #define QETH_DEV_MODEL_IND 3
  180. #define QETH_QUEUE_NO_IND 4
  181. #define QETH_MULTICAST_IND 5
  182. #define QETH_REAL_CARD 1
  183. #define QETH_VLAN_CARD 2
  184. #define QETH_BUFSIZE 4096
  185. /**
  186. * some more defs
  187. */
  188. #define QETH_TX_TIMEOUT 100 * HZ
  189. #define QETH_RCD_TIMEOUT 60 * HZ
  190. #define QETH_RECLAIM_WORK_TIME HZ
  191. #define QETH_HEADER_SIZE 32
  192. #define QETH_MAX_PORTNO 15
  193. /*IPv6 address autoconfiguration stuff*/
  194. #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
  195. #define UNIQUE_ID_NOT_BY_CARD 0x10000
  196. /*****************************************************************************/
  197. /* QDIO queue and buffer handling */
  198. /*****************************************************************************/
  199. #define QETH_MAX_QUEUES 4
  200. #define QETH_IN_BUF_SIZE_DEFAULT 65536
  201. #define QETH_IN_BUF_COUNT_DEFAULT 64
  202. #define QETH_IN_BUF_COUNT_HSDEFAULT 128
  203. #define QETH_IN_BUF_COUNT_MIN 8
  204. #define QETH_IN_BUF_COUNT_MAX 128
  205. #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
  206. #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
  207. ((card)->qdio.in_buf_pool.buf_count / 2)
  208. /* buffers we have to be behind before we get a PCI */
  209. #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
  210. /*enqueued free buffers left before we get a PCI*/
  211. #define QETH_PCI_THRESHOLD_B(card) 0
  212. /*not used unless the microcode gets patched*/
  213. #define QETH_PCI_TIMER_VALUE(card) 3
  214. /* priority queing */
  215. #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
  216. #define QETH_DEFAULT_QUEUE 2
  217. #define QETH_NO_PRIO_QUEUEING 0
  218. #define QETH_PRIO_Q_ING_PREC 1
  219. #define QETH_PRIO_Q_ING_TOS 2
  220. #define IP_TOS_LOWDELAY 0x10
  221. #define IP_TOS_HIGHTHROUGHPUT 0x08
  222. #define IP_TOS_HIGHRELIABILITY 0x04
  223. #define IP_TOS_NOTIMPORTANT 0x02
  224. /* Packing */
  225. #define QETH_LOW_WATERMARK_PACK 2
  226. #define QETH_HIGH_WATERMARK_PACK 5
  227. #define QETH_WATERMARK_PACK_FUZZ 1
  228. #define QETH_IP_HEADER_SIZE 40
  229. /* large receive scatter gather copy break */
  230. #define QETH_RX_SG_CB (PAGE_SIZE >> 1)
  231. #define QETH_RX_PULL_LEN 256
  232. struct qeth_hdr_layer3 {
  233. __u8 id;
  234. __u8 flags;
  235. __u16 inbound_checksum; /*TSO:__u16 seqno */
  236. __u32 token; /*TSO: __u32 reserved */
  237. __u16 length;
  238. __u8 vlan_prio;
  239. __u8 ext_flags;
  240. __u16 vlan_id;
  241. __u16 frame_offset;
  242. __u8 dest_addr[16];
  243. } __attribute__ ((packed));
  244. struct qeth_hdr_layer2 {
  245. __u8 id;
  246. __u8 flags[3];
  247. __u8 port_no;
  248. __u8 hdr_length;
  249. __u16 pkt_length;
  250. __u16 seq_no;
  251. __u16 vlan_id;
  252. __u32 reserved;
  253. __u8 reserved2[16];
  254. } __attribute__ ((packed));
  255. struct qeth_hdr_osn {
  256. __u8 id;
  257. __u8 reserved;
  258. __u16 seq_no;
  259. __u16 reserved2;
  260. __u16 control_flags;
  261. __u16 pdu_length;
  262. __u8 reserved3[18];
  263. __u32 ccid;
  264. } __attribute__ ((packed));
  265. struct qeth_hdr {
  266. union {
  267. struct qeth_hdr_layer2 l2;
  268. struct qeth_hdr_layer3 l3;
  269. struct qeth_hdr_osn osn;
  270. } hdr;
  271. } __attribute__ ((packed));
  272. /*TCP Segmentation Offload header*/
  273. struct qeth_hdr_ext_tso {
  274. __u16 hdr_tot_len;
  275. __u8 imb_hdr_no;
  276. __u8 reserved;
  277. __u8 hdr_type;
  278. __u8 hdr_version;
  279. __u16 hdr_len;
  280. __u32 payload_len;
  281. __u16 mss;
  282. __u16 dg_hdr_len;
  283. __u8 padding[16];
  284. } __attribute__ ((packed));
  285. struct qeth_hdr_tso {
  286. struct qeth_hdr hdr; /*hdr->hdr.l3.xxx*/
  287. struct qeth_hdr_ext_tso ext;
  288. } __attribute__ ((packed));
  289. /* flags for qeth_hdr.flags */
  290. #define QETH_HDR_PASSTHRU 0x10
  291. #define QETH_HDR_IPV6 0x80
  292. #define QETH_HDR_CAST_MASK 0x07
  293. enum qeth_cast_flags {
  294. QETH_CAST_UNICAST = 0x06,
  295. QETH_CAST_MULTICAST = 0x04,
  296. QETH_CAST_BROADCAST = 0x05,
  297. QETH_CAST_ANYCAST = 0x07,
  298. QETH_CAST_NOCAST = 0x00,
  299. };
  300. enum qeth_layer2_frame_flags {
  301. QETH_LAYER2_FLAG_MULTICAST = 0x01,
  302. QETH_LAYER2_FLAG_BROADCAST = 0x02,
  303. QETH_LAYER2_FLAG_UNICAST = 0x04,
  304. QETH_LAYER2_FLAG_VLAN = 0x10,
  305. };
  306. enum qeth_header_ids {
  307. QETH_HEADER_TYPE_LAYER3 = 0x01,
  308. QETH_HEADER_TYPE_LAYER2 = 0x02,
  309. QETH_HEADER_TYPE_TSO = 0x03,
  310. QETH_HEADER_TYPE_OSN = 0x04,
  311. };
  312. /* flags for qeth_hdr.ext_flags */
  313. #define QETH_HDR_EXT_VLAN_FRAME 0x01
  314. #define QETH_HDR_EXT_TOKEN_ID 0x02
  315. #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
  316. #define QETH_HDR_EXT_SRC_MAC_ADDR 0x08
  317. #define QETH_HDR_EXT_CSUM_HDR_REQ 0x10
  318. #define QETH_HDR_EXT_CSUM_TRANSP_REQ 0x20
  319. #define QETH_HDR_EXT_UDP 0x40 /*bit off for TCP*/
  320. static inline int qeth_is_last_sbale(struct qdio_buffer_element *sbale)
  321. {
  322. return (sbale->eflags & SBAL_EFLAGS_LAST_ENTRY);
  323. }
  324. enum qeth_qdio_buffer_states {
  325. /*
  326. * inbound: read out by driver; owned by hardware in order to be filled
  327. * outbound: owned by driver in order to be filled
  328. */
  329. QETH_QDIO_BUF_EMPTY,
  330. /*
  331. * inbound: filled by hardware; owned by driver in order to be read out
  332. * outbound: filled by driver; owned by hardware in order to be sent
  333. */
  334. QETH_QDIO_BUF_PRIMED,
  335. /*
  336. * inbound: not applicable
  337. * outbound: identified to be pending in TPQ
  338. */
  339. QETH_QDIO_BUF_PENDING,
  340. /*
  341. * inbound: not applicable
  342. * outbound: found in completion queue
  343. */
  344. QETH_QDIO_BUF_IN_CQ,
  345. /*
  346. * inbound: not applicable
  347. * outbound: handled via transfer pending / completion queue
  348. */
  349. QETH_QDIO_BUF_HANDLED_DELAYED,
  350. };
  351. enum qeth_qdio_info_states {
  352. QETH_QDIO_UNINITIALIZED,
  353. QETH_QDIO_ALLOCATED,
  354. QETH_QDIO_ESTABLISHED,
  355. QETH_QDIO_CLEANING
  356. };
  357. struct qeth_buffer_pool_entry {
  358. struct list_head list;
  359. struct list_head init_list;
  360. void *elements[QDIO_MAX_ELEMENTS_PER_BUFFER];
  361. };
  362. struct qeth_qdio_buffer_pool {
  363. struct list_head entry_list;
  364. int buf_count;
  365. };
  366. struct qeth_qdio_buffer {
  367. struct qdio_buffer *buffer;
  368. /* the buffer pool entry currently associated to this buffer */
  369. struct qeth_buffer_pool_entry *pool_entry;
  370. struct sk_buff *rx_skb;
  371. };
  372. struct qeth_qdio_q {
  373. struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  374. struct qeth_qdio_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
  375. int next_buf_to_init;
  376. } __attribute__ ((aligned(256)));
  377. struct qeth_qdio_out_buffer {
  378. struct qdio_buffer *buffer;
  379. atomic_t state;
  380. int next_element_to_fill;
  381. struct sk_buff_head skb_list;
  382. int is_header[16];
  383. struct qaob *aob;
  384. struct qeth_qdio_out_q *q;
  385. struct qeth_qdio_out_buffer *next_pending;
  386. };
  387. struct qeth_card;
  388. enum qeth_out_q_states {
  389. QETH_OUT_Q_UNLOCKED,
  390. QETH_OUT_Q_LOCKED,
  391. QETH_OUT_Q_LOCKED_FLUSH,
  392. };
  393. struct qeth_qdio_out_q {
  394. struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  395. struct qeth_qdio_out_buffer *bufs[QDIO_MAX_BUFFERS_PER_Q];
  396. struct qdio_outbuf_state *bufstates; /* convenience pointer */
  397. int queue_no;
  398. struct qeth_card *card;
  399. atomic_t state;
  400. int do_pack;
  401. /*
  402. * index of buffer to be filled by driver; state EMPTY or PACKING
  403. */
  404. int next_buf_to_fill;
  405. /*
  406. * number of buffers that are currently filled (PRIMED)
  407. * -> these buffers are hardware-owned
  408. */
  409. atomic_t used_buffers;
  410. /* indicates whether PCI flag must be set (or if one is outstanding) */
  411. atomic_t set_pci_flags_count;
  412. } __attribute__ ((aligned(256)));
  413. struct qeth_qdio_info {
  414. atomic_t state;
  415. /* input */
  416. int no_in_queues;
  417. struct qeth_qdio_q *in_q;
  418. struct qeth_qdio_q *c_q;
  419. struct qeth_qdio_buffer_pool in_buf_pool;
  420. struct qeth_qdio_buffer_pool init_pool;
  421. int in_buf_size;
  422. /* output */
  423. int no_out_queues;
  424. struct qeth_qdio_out_q **out_qs;
  425. struct qdio_outbuf_state *out_bufstates;
  426. /* priority queueing */
  427. int do_prio_queueing;
  428. int default_out_queue;
  429. };
  430. enum qeth_send_errors {
  431. QETH_SEND_ERROR_NONE,
  432. QETH_SEND_ERROR_LINK_FAILURE,
  433. QETH_SEND_ERROR_RETRY,
  434. QETH_SEND_ERROR_KICK_IT,
  435. };
  436. #define QETH_ETH_MAC_V4 0x0100 /* like v4 */
  437. #define QETH_ETH_MAC_V6 0x3333 /* like v6 */
  438. /* tr mc mac is longer, but that will be enough to detect mc frames */
  439. #define QETH_TR_MAC_NC 0xc000 /* non-canonical */
  440. #define QETH_TR_MAC_C 0x0300 /* canonical */
  441. #define DEFAULT_ADD_HHLEN 0
  442. #define MAX_ADD_HHLEN 1024
  443. /**
  444. * buffer stuff for read channel
  445. */
  446. #define QETH_CMD_BUFFER_NO 8
  447. /**
  448. * channel state machine
  449. */
  450. enum qeth_channel_states {
  451. CH_STATE_UP,
  452. CH_STATE_DOWN,
  453. CH_STATE_ACTIVATING,
  454. CH_STATE_HALTED,
  455. CH_STATE_STOPPED,
  456. CH_STATE_RCD,
  457. CH_STATE_RCD_DONE,
  458. };
  459. /**
  460. * card state machine
  461. */
  462. enum qeth_card_states {
  463. CARD_STATE_DOWN,
  464. CARD_STATE_HARDSETUP,
  465. CARD_STATE_SOFTSETUP,
  466. CARD_STATE_UP,
  467. CARD_STATE_RECOVER,
  468. };
  469. /**
  470. * Protocol versions
  471. */
  472. enum qeth_prot_versions {
  473. QETH_PROT_IPV4 = 0x0004,
  474. QETH_PROT_IPV6 = 0x0006,
  475. };
  476. enum qeth_ip_types {
  477. QETH_IP_TYPE_NORMAL,
  478. QETH_IP_TYPE_VIPA,
  479. QETH_IP_TYPE_RXIP,
  480. QETH_IP_TYPE_DEL_ALL_MC,
  481. };
  482. enum qeth_cmd_buffer_state {
  483. BUF_STATE_FREE,
  484. BUF_STATE_LOCKED,
  485. BUF_STATE_PROCESSED,
  486. };
  487. enum qeth_cq {
  488. QETH_CQ_DISABLED = 0,
  489. QETH_CQ_ENABLED = 1,
  490. QETH_CQ_NOTAVAILABLE = 2,
  491. };
  492. struct qeth_ipato {
  493. int enabled;
  494. int invert4;
  495. int invert6;
  496. struct list_head entries;
  497. };
  498. struct qeth_channel;
  499. struct qeth_cmd_buffer {
  500. enum qeth_cmd_buffer_state state;
  501. struct qeth_channel *channel;
  502. unsigned char *data;
  503. int rc;
  504. void (*callback) (struct qeth_channel *, struct qeth_cmd_buffer *);
  505. };
  506. /**
  507. * definition of a qeth channel, used for read and write
  508. */
  509. struct qeth_channel {
  510. enum qeth_channel_states state;
  511. struct ccw1 ccw;
  512. spinlock_t iob_lock;
  513. wait_queue_head_t wait_q;
  514. struct tasklet_struct irq_tasklet;
  515. struct ccw_device *ccwdev;
  516. /*command buffer for control data*/
  517. struct qeth_cmd_buffer iob[QETH_CMD_BUFFER_NO];
  518. atomic_t irq_pending;
  519. int io_buf_no;
  520. int buf_no;
  521. };
  522. /**
  523. * OSA card related definitions
  524. */
  525. struct qeth_token {
  526. __u32 issuer_rm_w;
  527. __u32 issuer_rm_r;
  528. __u32 cm_filter_w;
  529. __u32 cm_filter_r;
  530. __u32 cm_connection_w;
  531. __u32 cm_connection_r;
  532. __u32 ulp_filter_w;
  533. __u32 ulp_filter_r;
  534. __u32 ulp_connection_w;
  535. __u32 ulp_connection_r;
  536. };
  537. struct qeth_seqno {
  538. __u32 trans_hdr;
  539. __u32 pdu_hdr;
  540. __u32 pdu_hdr_ack;
  541. __u16 ipa;
  542. __u32 pkt_seqno;
  543. };
  544. struct qeth_reply {
  545. struct list_head list;
  546. wait_queue_head_t wait_q;
  547. int (*callback)(struct qeth_card *, struct qeth_reply *,
  548. unsigned long);
  549. u32 seqno;
  550. unsigned long offset;
  551. atomic_t received;
  552. int rc;
  553. void *param;
  554. struct qeth_card *card;
  555. atomic_t refcnt;
  556. };
  557. struct qeth_card_blkt {
  558. int time_total;
  559. int inter_packet;
  560. int inter_packet_jumbo;
  561. };
  562. #define QETH_BROADCAST_WITH_ECHO 0x01
  563. #define QETH_BROADCAST_WITHOUT_ECHO 0x02
  564. #define QETH_LAYER2_MAC_READ 0x01
  565. #define QETH_LAYER2_MAC_REGISTERED 0x02
  566. struct qeth_card_info {
  567. unsigned short unit_addr2;
  568. unsigned short cula;
  569. unsigned short chpid;
  570. __u16 func_level;
  571. char mcl_level[QETH_MCL_LENGTH + 1];
  572. int guestlan;
  573. int mac_bits;
  574. int portname_required;
  575. int portno;
  576. char portname[9];
  577. enum qeth_card_types type;
  578. enum qeth_link_types link_type;
  579. int is_multicast_different;
  580. int initial_mtu;
  581. int max_mtu;
  582. int broadcast_capable;
  583. int unique_id;
  584. struct qeth_card_blkt blkt;
  585. __u32 csum_mask;
  586. __u32 tx_csum_mask;
  587. enum qeth_ipa_promisc_modes promisc_mode;
  588. __u32 diagass_support;
  589. __u32 hwtrap;
  590. };
  591. struct qeth_card_options {
  592. struct qeth_routing_info route4;
  593. struct qeth_ipa_info ipa4;
  594. struct qeth_ipa_info adp; /*Adapter parameters*/
  595. struct qeth_routing_info route6;
  596. struct qeth_ipa_info ipa6;
  597. int broadcast_mode;
  598. int macaddr_mode;
  599. int fake_broadcast;
  600. int add_hhlen;
  601. int layer2;
  602. int performance_stats;
  603. int rx_sg_cb;
  604. enum qeth_ipa_isolation_modes isolation;
  605. int sniffer;
  606. enum qeth_cq cq;
  607. char hsuid[9];
  608. };
  609. /*
  610. * thread bits for qeth_card thread masks
  611. */
  612. enum qeth_threads {
  613. QETH_RECOVER_THREAD = 1,
  614. };
  615. struct qeth_osn_info {
  616. int (*assist_cb)(struct net_device *dev, void *data);
  617. int (*data_cb)(struct sk_buff *skb);
  618. };
  619. enum qeth_discipline_id {
  620. QETH_DISCIPLINE_LAYER3 = 0,
  621. QETH_DISCIPLINE_LAYER2 = 1,
  622. };
  623. struct qeth_discipline {
  624. void (*start_poll)(struct ccw_device *, int, unsigned long);
  625. qdio_handler_t *input_handler;
  626. qdio_handler_t *output_handler;
  627. int (*recover)(void *ptr);
  628. struct ccwgroup_driver *ccwgdriver;
  629. };
  630. struct qeth_vlan_vid {
  631. struct list_head list;
  632. unsigned short vid;
  633. };
  634. struct qeth_mc_mac {
  635. struct list_head list;
  636. __u8 mc_addr[MAX_ADDR_LEN];
  637. unsigned char mc_addrlen;
  638. int is_vmac;
  639. };
  640. struct qeth_rx {
  641. int b_count;
  642. int b_index;
  643. struct qdio_buffer_element *b_element;
  644. int e_offset;
  645. int qdio_err;
  646. };
  647. #define QETH_NAPI_WEIGHT 128
  648. struct qeth_card {
  649. struct list_head list;
  650. enum qeth_card_states state;
  651. int lan_online;
  652. spinlock_t lock;
  653. struct ccwgroup_device *gdev;
  654. struct qeth_channel read;
  655. struct qeth_channel write;
  656. struct qeth_channel data;
  657. struct net_device *dev;
  658. struct net_device_stats stats;
  659. struct qeth_card_info info;
  660. struct qeth_token token;
  661. struct qeth_seqno seqno;
  662. struct qeth_card_options options;
  663. wait_queue_head_t wait_q;
  664. spinlock_t vlanlock;
  665. spinlock_t mclock;
  666. unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
  667. struct list_head vid_list;
  668. struct list_head mc_list;
  669. struct work_struct kernel_thread_starter;
  670. spinlock_t thread_mask_lock;
  671. unsigned long thread_start_mask;
  672. unsigned long thread_allowed_mask;
  673. unsigned long thread_running_mask;
  674. spinlock_t ip_lock;
  675. struct list_head ip_list;
  676. struct list_head *ip_tbd_list;
  677. struct qeth_ipato ipato;
  678. struct list_head cmd_waiter_list;
  679. /* QDIO buffer handling */
  680. struct qeth_qdio_info qdio;
  681. struct qeth_perf_stats perf_stats;
  682. int read_or_write_problem;
  683. struct qeth_osn_info osn_info;
  684. struct qeth_discipline discipline;
  685. atomic_t force_alloc_skb;
  686. struct service_level qeth_service_level;
  687. struct qdio_ssqd_desc ssqd;
  688. debug_info_t *debug;
  689. struct mutex conf_mutex;
  690. struct mutex discipline_mutex;
  691. struct napi_struct napi;
  692. struct qeth_rx rx;
  693. struct delayed_work buffer_reclaim_work;
  694. int reclaim_index;
  695. };
  696. struct qeth_card_list_struct {
  697. struct list_head list;
  698. rwlock_t rwlock;
  699. };
  700. struct qeth_trap_id {
  701. __u16 lparnr;
  702. char vmname[8];
  703. __u8 chpid;
  704. __u8 ssid;
  705. __u16 devno;
  706. } __packed;
  707. /*some helper functions*/
  708. #define QETH_CARD_IFNAME(card) (((card)->dev)? (card)->dev->name : "")
  709. static inline struct qeth_card *CARD_FROM_CDEV(struct ccw_device *cdev)
  710. {
  711. struct qeth_card *card = dev_get_drvdata(&((struct ccwgroup_device *)
  712. dev_get_drvdata(&cdev->dev))->dev);
  713. return card;
  714. }
  715. static inline int qeth_get_micros(void)
  716. {
  717. return (int) (get_clock() >> 12);
  718. }
  719. static inline int qeth_get_ip_version(struct sk_buff *skb)
  720. {
  721. struct ethhdr *ehdr = (struct ethhdr *)skb->data;
  722. switch (ehdr->h_proto) {
  723. case ETH_P_IPV6:
  724. return 6;
  725. case ETH_P_IP:
  726. return 4;
  727. default:
  728. return 0;
  729. }
  730. }
  731. static inline void qeth_put_buffer_pool_entry(struct qeth_card *card,
  732. struct qeth_buffer_pool_entry *entry)
  733. {
  734. list_add_tail(&entry->list, &card->qdio.in_buf_pool.entry_list);
  735. }
  736. static inline int qeth_is_diagass_supported(struct qeth_card *card,
  737. enum qeth_diags_cmds cmd)
  738. {
  739. return card->info.diagass_support & (__u32)cmd;
  740. }
  741. extern struct ccwgroup_driver qeth_l2_ccwgroup_driver;
  742. extern struct ccwgroup_driver qeth_l3_ccwgroup_driver;
  743. const char *qeth_get_cardname_short(struct qeth_card *);
  744. int qeth_realloc_buffer_pool(struct qeth_card *, int);
  745. int qeth_core_load_discipline(struct qeth_card *, enum qeth_discipline_id);
  746. void qeth_core_free_discipline(struct qeth_card *);
  747. int qeth_core_create_device_attributes(struct device *);
  748. void qeth_core_remove_device_attributes(struct device *);
  749. int qeth_core_create_osn_attributes(struct device *);
  750. void qeth_core_remove_osn_attributes(struct device *);
  751. void qeth_buffer_reclaim_work(struct work_struct *);
  752. /* exports for qeth discipline device drivers */
  753. extern struct qeth_card_list_struct qeth_core_card_list;
  754. extern struct kmem_cache *qeth_core_header_cache;
  755. extern struct qeth_dbf_info qeth_dbf[QETH_DBF_INFOS];
  756. void qeth_set_allowed_threads(struct qeth_card *, unsigned long , int);
  757. int qeth_threads_running(struct qeth_card *, unsigned long);
  758. int qeth_wait_for_threads(struct qeth_card *, unsigned long);
  759. int qeth_do_run_thread(struct qeth_card *, unsigned long);
  760. void qeth_clear_thread_start_bit(struct qeth_card *, unsigned long);
  761. void qeth_clear_thread_running_bit(struct qeth_card *, unsigned long);
  762. int qeth_core_hardsetup_card(struct qeth_card *);
  763. void qeth_print_status_message(struct qeth_card *);
  764. int qeth_init_qdio_queues(struct qeth_card *);
  765. int qeth_send_startlan(struct qeth_card *);
  766. int qeth_send_stoplan(struct qeth_card *);
  767. int qeth_send_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *,
  768. int (*reply_cb)
  769. (struct qeth_card *, struct qeth_reply *, unsigned long),
  770. void *);
  771. struct qeth_cmd_buffer *qeth_get_ipacmd_buffer(struct qeth_card *,
  772. enum qeth_ipa_cmds, enum qeth_prot_versions);
  773. int qeth_query_setadapterparms(struct qeth_card *);
  774. int qeth_check_qdio_errors(struct qeth_card *, struct qdio_buffer *,
  775. unsigned int, const char *);
  776. void qeth_queue_input_buffer(struct qeth_card *, int);
  777. struct sk_buff *qeth_core_get_next_skb(struct qeth_card *,
  778. struct qeth_qdio_buffer *, struct qdio_buffer_element **, int *,
  779. struct qeth_hdr **);
  780. void qeth_schedule_recovery(struct qeth_card *);
  781. void qeth_qdio_start_poll(struct ccw_device *, int, unsigned long);
  782. void qeth_qdio_input_handler(struct ccw_device *,
  783. unsigned int, unsigned int, int,
  784. int, unsigned long);
  785. void qeth_qdio_output_handler(struct ccw_device *, unsigned int,
  786. int, int, int, unsigned long);
  787. void qeth_clear_ipacmd_list(struct qeth_card *);
  788. int qeth_qdio_clear_card(struct qeth_card *, int);
  789. void qeth_clear_working_pool_list(struct qeth_card *);
  790. void qeth_clear_cmd_buffers(struct qeth_channel *);
  791. void qeth_clear_qdio_buffers(struct qeth_card *);
  792. void qeth_setadp_promisc_mode(struct qeth_card *);
  793. struct net_device_stats *qeth_get_stats(struct net_device *);
  794. int qeth_change_mtu(struct net_device *, int);
  795. int qeth_setadpparms_change_macaddr(struct qeth_card *);
  796. void qeth_tx_timeout(struct net_device *);
  797. void qeth_prepare_control_data(struct qeth_card *, int,
  798. struct qeth_cmd_buffer *);
  799. void qeth_release_buffer(struct qeth_channel *, struct qeth_cmd_buffer *);
  800. void qeth_prepare_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *, char);
  801. struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
  802. int qeth_mdio_read(struct net_device *, int, int);
  803. int qeth_snmp_command(struct qeth_card *, char __user *);
  804. int qeth_query_oat_command(struct qeth_card *, char __user *);
  805. struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *, __u32, __u32);
  806. int qeth_default_setadapterparms_cb(struct qeth_card *, struct qeth_reply *,
  807. unsigned long);
  808. int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
  809. int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
  810. void *reply_param);
  811. int qeth_get_priority_queue(struct qeth_card *, struct sk_buff *, int, int);
  812. int qeth_get_elements_no(struct qeth_card *, void *, struct sk_buff *, int);
  813. int qeth_do_send_packet_fast(struct qeth_card *, struct qeth_qdio_out_q *,
  814. struct sk_buff *, struct qeth_hdr *, int, int, int);
  815. int qeth_do_send_packet(struct qeth_card *, struct qeth_qdio_out_q *,
  816. struct sk_buff *, struct qeth_hdr *, int);
  817. int qeth_core_get_sset_count(struct net_device *, int);
  818. void qeth_core_get_ethtool_stats(struct net_device *,
  819. struct ethtool_stats *, u64 *);
  820. void qeth_core_get_strings(struct net_device *, u32, u8 *);
  821. void qeth_core_get_drvinfo(struct net_device *, struct ethtool_drvinfo *);
  822. void qeth_dbf_longtext(debug_info_t *id, int level, char *text, ...);
  823. int qeth_core_ethtool_get_settings(struct net_device *, struct ethtool_cmd *);
  824. int qeth_set_access_ctrl_online(struct qeth_card *card);
  825. int qeth_hdr_chk_and_bounce(struct sk_buff *, int);
  826. int qeth_configure_cq(struct qeth_card *, enum qeth_cq);
  827. int qeth_hw_trap(struct qeth_card *, enum qeth_diags_trap_action);
  828. int qeth_query_ipassists(struct qeth_card *, enum qeth_prot_versions prot);
  829. /* exports for OSN */
  830. int qeth_osn_assist(struct net_device *, void *, int);
  831. int qeth_osn_register(unsigned char *read_dev_no, struct net_device **,
  832. int (*assist_cb)(struct net_device *, void *),
  833. int (*data_cb)(struct sk_buff *));
  834. void qeth_osn_deregister(struct net_device *);
  835. #endif /* __QETH_CORE_H__ */