qeth_core.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916
  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 "qeth_core_mpc.h"
  31. /**
  32. * Debug Facility stuff
  33. */
  34. #define QETH_DBF_SETUP_NAME "qeth_setup"
  35. #define QETH_DBF_SETUP_LEN 8
  36. #define QETH_DBF_SETUP_PAGES 8
  37. #define QETH_DBF_SETUP_NR_AREAS 1
  38. #define QETH_DBF_SETUP_LEVEL 5
  39. #define QETH_DBF_MISC_NAME "qeth_misc"
  40. #define QETH_DBF_MISC_LEN 128
  41. #define QETH_DBF_MISC_PAGES 2
  42. #define QETH_DBF_MISC_NR_AREAS 1
  43. #define QETH_DBF_MISC_LEVEL 2
  44. #define QETH_DBF_DATA_NAME "qeth_data"
  45. #define QETH_DBF_DATA_LEN 96
  46. #define QETH_DBF_DATA_PAGES 8
  47. #define QETH_DBF_DATA_NR_AREAS 1
  48. #define QETH_DBF_DATA_LEVEL 2
  49. #define QETH_DBF_CONTROL_NAME "qeth_control"
  50. #define QETH_DBF_CONTROL_LEN 256
  51. #define QETH_DBF_CONTROL_PAGES 8
  52. #define QETH_DBF_CONTROL_NR_AREAS 1
  53. #define QETH_DBF_CONTROL_LEVEL 5
  54. #define QETH_DBF_TRACE_NAME "qeth_trace"
  55. #define QETH_DBF_TRACE_LEN 8
  56. #define QETH_DBF_TRACE_PAGES 4
  57. #define QETH_DBF_TRACE_NR_AREAS 1
  58. #define QETH_DBF_TRACE_LEVEL 3
  59. #define QETH_DBF_SENSE_NAME "qeth_sense"
  60. #define QETH_DBF_SENSE_LEN 64
  61. #define QETH_DBF_SENSE_PAGES 2
  62. #define QETH_DBF_SENSE_NR_AREAS 1
  63. #define QETH_DBF_SENSE_LEVEL 2
  64. #define QETH_DBF_QERR_NAME "qeth_qerr"
  65. #define QETH_DBF_QERR_LEN 8
  66. #define QETH_DBF_QERR_PAGES 2
  67. #define QETH_DBF_QERR_NR_AREAS 1
  68. #define QETH_DBF_QERR_LEVEL 2
  69. #define QETH_DBF_TEXT(name, level, text) \
  70. do { \
  71. debug_text_event(qeth_dbf_##name, level, text); \
  72. } while (0)
  73. #define QETH_DBF_HEX(name, level, addr, len) \
  74. do { \
  75. debug_event(qeth_dbf_##name, level, (void *)(addr), len); \
  76. } while (0)
  77. /* Allow to sort out low debug levels early to avoid wasted sprints */
  78. static inline int qeth_dbf_passes(debug_info_t *dbf_grp, int level)
  79. {
  80. return (level <= dbf_grp->level);
  81. }
  82. /**
  83. * some more debug stuff
  84. */
  85. #define PRINTK_HEADER "qeth: "
  86. #define SENSE_COMMAND_REJECT_BYTE 0
  87. #define SENSE_COMMAND_REJECT_FLAG 0x80
  88. #define SENSE_RESETTING_EVENT_BYTE 1
  89. #define SENSE_RESETTING_EVENT_FLAG 0x80
  90. /*
  91. * Common IO related definitions
  92. */
  93. #define CARD_RDEV(card) card->read.ccwdev
  94. #define CARD_WDEV(card) card->write.ccwdev
  95. #define CARD_DDEV(card) card->data.ccwdev
  96. #define CARD_BUS_ID(card) card->gdev->dev.bus_id
  97. #define CARD_RDEV_ID(card) card->read.ccwdev->dev.bus_id
  98. #define CARD_WDEV_ID(card) card->write.ccwdev->dev.bus_id
  99. #define CARD_DDEV_ID(card) card->data.ccwdev->dev.bus_id
  100. #define CHANNEL_ID(channel) channel->ccwdev->dev.bus_id
  101. /**
  102. * card stuff
  103. */
  104. struct qeth_perf_stats {
  105. unsigned int bufs_rec;
  106. unsigned int bufs_sent;
  107. unsigned int skbs_sent_pack;
  108. unsigned int bufs_sent_pack;
  109. unsigned int sc_dp_p;
  110. unsigned int sc_p_dp;
  111. /* qdio_input_handler: number of times called, time spent in */
  112. __u64 inbound_start_time;
  113. unsigned int inbound_cnt;
  114. unsigned int inbound_time;
  115. /* qeth_send_packet: number of times called, time spent in */
  116. __u64 outbound_start_time;
  117. unsigned int outbound_cnt;
  118. unsigned int outbound_time;
  119. /* qdio_output_handler: number of times called, time spent in */
  120. __u64 outbound_handler_start_time;
  121. unsigned int outbound_handler_cnt;
  122. unsigned int outbound_handler_time;
  123. /* number of calls to and time spent in do_QDIO for inbound queue */
  124. __u64 inbound_do_qdio_start_time;
  125. unsigned int inbound_do_qdio_cnt;
  126. unsigned int inbound_do_qdio_time;
  127. /* number of calls to and time spent in do_QDIO for outbound queues */
  128. __u64 outbound_do_qdio_start_time;
  129. unsigned int outbound_do_qdio_cnt;
  130. unsigned int outbound_do_qdio_time;
  131. /* eddp data */
  132. unsigned int large_send_bytes;
  133. unsigned int large_send_cnt;
  134. unsigned int sg_skbs_sent;
  135. unsigned int sg_frags_sent;
  136. /* initial values when measuring starts */
  137. unsigned long initial_rx_packets;
  138. unsigned long initial_tx_packets;
  139. /* inbound scatter gather data */
  140. unsigned int sg_skbs_rx;
  141. unsigned int sg_frags_rx;
  142. unsigned int sg_alloc_page_rx;
  143. };
  144. /* Routing stuff */
  145. struct qeth_routing_info {
  146. enum qeth_routing_types type;
  147. };
  148. /* IPA stuff */
  149. struct qeth_ipa_info {
  150. __u32 supported_funcs;
  151. __u32 enabled_funcs;
  152. };
  153. static inline int qeth_is_ipa_supported(struct qeth_ipa_info *ipa,
  154. enum qeth_ipa_funcs func)
  155. {
  156. return (ipa->supported_funcs & func);
  157. }
  158. static inline int qeth_is_ipa_enabled(struct qeth_ipa_info *ipa,
  159. enum qeth_ipa_funcs func)
  160. {
  161. return (ipa->supported_funcs & ipa->enabled_funcs & func);
  162. }
  163. #define qeth_adp_supported(c, f) \
  164. qeth_is_ipa_supported(&c->options.adp, f)
  165. #define qeth_adp_enabled(c, f) \
  166. qeth_is_ipa_enabled(&c->options.adp, f)
  167. #define qeth_is_supported(c, f) \
  168. qeth_is_ipa_supported(&c->options.ipa4, f)
  169. #define qeth_is_enabled(c, f) \
  170. qeth_is_ipa_enabled(&c->options.ipa4, f)
  171. #define qeth_is_supported6(c, f) \
  172. qeth_is_ipa_supported(&c->options.ipa6, f)
  173. #define qeth_is_enabled6(c, f) \
  174. qeth_is_ipa_enabled(&c->options.ipa6, f)
  175. #define qeth_is_ipafunc_supported(c, prot, f) \
  176. ((prot == QETH_PROT_IPV6) ? \
  177. qeth_is_supported6(c, f) : qeth_is_supported(c, f))
  178. #define qeth_is_ipafunc_enabled(c, prot, f) \
  179. ((prot == QETH_PROT_IPV6) ? \
  180. qeth_is_enabled6(c, f) : qeth_is_enabled(c, f))
  181. #define QETH_IDX_FUNC_LEVEL_OSAE_ENA_IPAT 0x0101
  182. #define QETH_IDX_FUNC_LEVEL_OSAE_DIS_IPAT 0x0101
  183. #define QETH_IDX_FUNC_LEVEL_IQD_ENA_IPAT 0x4108
  184. #define QETH_IDX_FUNC_LEVEL_IQD_DIS_IPAT 0x5108
  185. #define QETH_MODELLIST_ARRAY \
  186. {{0x1731, 0x01, 0x1732, 0x01, QETH_CARD_TYPE_OSAE, 1, \
  187. QETH_IDX_FUNC_LEVEL_OSAE_ENA_IPAT, \
  188. QETH_IDX_FUNC_LEVEL_OSAE_DIS_IPAT, \
  189. QETH_MAX_QUEUES, 0}, \
  190. {0x1731, 0x05, 0x1732, 0x05, QETH_CARD_TYPE_IQD, 0, \
  191. QETH_IDX_FUNC_LEVEL_IQD_ENA_IPAT, \
  192. QETH_IDX_FUNC_LEVEL_IQD_DIS_IPAT, \
  193. QETH_MAX_QUEUES, 0x103}, \
  194. {0x1731, 0x06, 0x1732, 0x06, QETH_CARD_TYPE_OSN, 0, \
  195. QETH_IDX_FUNC_LEVEL_OSAE_ENA_IPAT, \
  196. QETH_IDX_FUNC_LEVEL_OSAE_DIS_IPAT, \
  197. QETH_MAX_QUEUES, 0}, \
  198. {0, 0, 0, 0, 0, 0, 0, 0, 0} }
  199. #define QETH_REAL_CARD 1
  200. #define QETH_VLAN_CARD 2
  201. #define QETH_BUFSIZE 4096
  202. /**
  203. * some more defs
  204. */
  205. #define QETH_TX_TIMEOUT 100 * HZ
  206. #define QETH_RCD_TIMEOUT 60 * HZ
  207. #define QETH_HEADER_SIZE 32
  208. #define QETH_MAX_PORTNO 15
  209. /*IPv6 address autoconfiguration stuff*/
  210. #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
  211. #define UNIQUE_ID_NOT_BY_CARD 0x10000
  212. /*****************************************************************************/
  213. /* QDIO queue and buffer handling */
  214. /*****************************************************************************/
  215. #define QETH_MAX_QUEUES 4
  216. #define QETH_IN_BUF_SIZE_DEFAULT 65536
  217. #define QETH_IN_BUF_COUNT_DEFAULT 16
  218. #define QETH_IN_BUF_COUNT_MIN 8
  219. #define QETH_IN_BUF_COUNT_MAX 128
  220. #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
  221. #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
  222. ((card)->qdio.in_buf_pool.buf_count / 2)
  223. /* buffers we have to be behind before we get a PCI */
  224. #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
  225. /*enqueued free buffers left before we get a PCI*/
  226. #define QETH_PCI_THRESHOLD_B(card) 0
  227. /*not used unless the microcode gets patched*/
  228. #define QETH_PCI_TIMER_VALUE(card) 3
  229. #define QETH_MIN_INPUT_THRESHOLD 1
  230. #define QETH_MAX_INPUT_THRESHOLD 500
  231. #define QETH_MIN_OUTPUT_THRESHOLD 1
  232. #define QETH_MAX_OUTPUT_THRESHOLD 300
  233. /* priority queing */
  234. #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
  235. #define QETH_DEFAULT_QUEUE 2
  236. #define QETH_NO_PRIO_QUEUEING 0
  237. #define QETH_PRIO_Q_ING_PREC 1
  238. #define QETH_PRIO_Q_ING_TOS 2
  239. #define IP_TOS_LOWDELAY 0x10
  240. #define IP_TOS_HIGHTHROUGHPUT 0x08
  241. #define IP_TOS_HIGHRELIABILITY 0x04
  242. #define IP_TOS_NOTIMPORTANT 0x02
  243. /* Packing */
  244. #define QETH_LOW_WATERMARK_PACK 2
  245. #define QETH_HIGH_WATERMARK_PACK 5
  246. #define QETH_WATERMARK_PACK_FUZZ 1
  247. #define QETH_IP_HEADER_SIZE 40
  248. /* large receive scatter gather copy break */
  249. #define QETH_RX_SG_CB (PAGE_SIZE >> 1)
  250. struct qeth_hdr_layer3 {
  251. __u8 id;
  252. __u8 flags;
  253. __u16 inbound_checksum; /*TSO:__u16 seqno */
  254. __u32 token; /*TSO: __u32 reserved */
  255. __u16 length;
  256. __u8 vlan_prio;
  257. __u8 ext_flags;
  258. __u16 vlan_id;
  259. __u16 frame_offset;
  260. __u8 dest_addr[16];
  261. } __attribute__ ((packed));
  262. struct qeth_hdr_layer2 {
  263. __u8 id;
  264. __u8 flags[3];
  265. __u8 port_no;
  266. __u8 hdr_length;
  267. __u16 pkt_length;
  268. __u16 seq_no;
  269. __u16 vlan_id;
  270. __u32 reserved;
  271. __u8 reserved2[16];
  272. } __attribute__ ((packed));
  273. struct qeth_hdr_osn {
  274. __u8 id;
  275. __u8 reserved;
  276. __u16 seq_no;
  277. __u16 reserved2;
  278. __u16 control_flags;
  279. __u16 pdu_length;
  280. __u8 reserved3[18];
  281. __u32 ccid;
  282. } __attribute__ ((packed));
  283. struct qeth_hdr {
  284. union {
  285. struct qeth_hdr_layer2 l2;
  286. struct qeth_hdr_layer3 l3;
  287. struct qeth_hdr_osn osn;
  288. } hdr;
  289. } __attribute__ ((packed));
  290. /*TCP Segmentation Offload header*/
  291. struct qeth_hdr_ext_tso {
  292. __u16 hdr_tot_len;
  293. __u8 imb_hdr_no;
  294. __u8 reserved;
  295. __u8 hdr_type;
  296. __u8 hdr_version;
  297. __u16 hdr_len;
  298. __u32 payload_len;
  299. __u16 mss;
  300. __u16 dg_hdr_len;
  301. __u8 padding[16];
  302. } __attribute__ ((packed));
  303. struct qeth_hdr_tso {
  304. struct qeth_hdr hdr; /*hdr->hdr.l3.xxx*/
  305. struct qeth_hdr_ext_tso ext;
  306. } __attribute__ ((packed));
  307. /* flags for qeth_hdr.flags */
  308. #define QETH_HDR_PASSTHRU 0x10
  309. #define QETH_HDR_IPV6 0x80
  310. #define QETH_HDR_CAST_MASK 0x07
  311. enum qeth_cast_flags {
  312. QETH_CAST_UNICAST = 0x06,
  313. QETH_CAST_MULTICAST = 0x04,
  314. QETH_CAST_BROADCAST = 0x05,
  315. QETH_CAST_ANYCAST = 0x07,
  316. QETH_CAST_NOCAST = 0x00,
  317. };
  318. enum qeth_layer2_frame_flags {
  319. QETH_LAYER2_FLAG_MULTICAST = 0x01,
  320. QETH_LAYER2_FLAG_BROADCAST = 0x02,
  321. QETH_LAYER2_FLAG_UNICAST = 0x04,
  322. QETH_LAYER2_FLAG_VLAN = 0x10,
  323. };
  324. enum qeth_header_ids {
  325. QETH_HEADER_TYPE_LAYER3 = 0x01,
  326. QETH_HEADER_TYPE_LAYER2 = 0x02,
  327. QETH_HEADER_TYPE_TSO = 0x03,
  328. QETH_HEADER_TYPE_OSN = 0x04,
  329. };
  330. /* flags for qeth_hdr.ext_flags */
  331. #define QETH_HDR_EXT_VLAN_FRAME 0x01
  332. #define QETH_HDR_EXT_TOKEN_ID 0x02
  333. #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
  334. #define QETH_HDR_EXT_SRC_MAC_ADDR 0x08
  335. #define QETH_HDR_EXT_CSUM_HDR_REQ 0x10
  336. #define QETH_HDR_EXT_CSUM_TRANSP_REQ 0x20
  337. #define QETH_HDR_EXT_UDP_TSO 0x40 /*bit off for TCP*/
  338. static inline int qeth_is_last_sbale(struct qdio_buffer_element *sbale)
  339. {
  340. return (sbale->flags & SBAL_FLAGS_LAST_ENTRY);
  341. }
  342. enum qeth_qdio_buffer_states {
  343. /*
  344. * inbound: read out by driver; owned by hardware in order to be filled
  345. * outbound: owned by driver in order to be filled
  346. */
  347. QETH_QDIO_BUF_EMPTY,
  348. /*
  349. * inbound: filled by hardware; owned by driver in order to be read out
  350. * outbound: filled by driver; owned by hardware in order to be sent
  351. */
  352. QETH_QDIO_BUF_PRIMED,
  353. };
  354. enum qeth_qdio_info_states {
  355. QETH_QDIO_UNINITIALIZED,
  356. QETH_QDIO_ALLOCATED,
  357. QETH_QDIO_ESTABLISHED,
  358. QETH_QDIO_CLEANING
  359. };
  360. struct qeth_buffer_pool_entry {
  361. struct list_head list;
  362. struct list_head init_list;
  363. void *elements[QDIO_MAX_ELEMENTS_PER_BUFFER];
  364. };
  365. struct qeth_qdio_buffer_pool {
  366. struct list_head entry_list;
  367. int buf_count;
  368. };
  369. struct qeth_qdio_buffer {
  370. struct qdio_buffer *buffer;
  371. /* the buffer pool entry currently associated to this buffer */
  372. struct qeth_buffer_pool_entry *pool_entry;
  373. };
  374. struct qeth_qdio_q {
  375. struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  376. struct qeth_qdio_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
  377. int next_buf_to_init;
  378. } __attribute__ ((aligned(256)));
  379. /* possible types of qeth large_send support */
  380. enum qeth_large_send_types {
  381. QETH_LARGE_SEND_NO,
  382. QETH_LARGE_SEND_EDDP,
  383. QETH_LARGE_SEND_TSO,
  384. };
  385. struct qeth_qdio_out_buffer {
  386. struct qdio_buffer *buffer;
  387. atomic_t state;
  388. int next_element_to_fill;
  389. struct sk_buff_head skb_list;
  390. struct list_head ctx_list;
  391. };
  392. struct qeth_card;
  393. enum qeth_out_q_states {
  394. QETH_OUT_Q_UNLOCKED,
  395. QETH_OUT_Q_LOCKED,
  396. QETH_OUT_Q_LOCKED_FLUSH,
  397. };
  398. struct qeth_qdio_out_q {
  399. struct qdio_buffer qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  400. struct qeth_qdio_out_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
  401. int queue_no;
  402. struct qeth_card *card;
  403. atomic_t state;
  404. int do_pack;
  405. /*
  406. * index of buffer to be filled by driver; state EMPTY or PACKING
  407. */
  408. int next_buf_to_fill;
  409. /*
  410. * number of buffers that are currently filled (PRIMED)
  411. * -> these buffers are hardware-owned
  412. */
  413. atomic_t used_buffers;
  414. /* indicates whether PCI flag must be set (or if one is outstanding) */
  415. atomic_t set_pci_flags_count;
  416. } __attribute__ ((aligned(256)));
  417. struct qeth_qdio_info {
  418. atomic_t state;
  419. /* input */
  420. struct qeth_qdio_q *in_q;
  421. struct qeth_qdio_buffer_pool in_buf_pool;
  422. struct qeth_qdio_buffer_pool init_pool;
  423. int in_buf_size;
  424. /* output */
  425. int no_out_queues;
  426. struct qeth_qdio_out_q **out_qs;
  427. /* priority queueing */
  428. int do_prio_queueing;
  429. int default_out_queue;
  430. };
  431. enum qeth_send_errors {
  432. QETH_SEND_ERROR_NONE,
  433. QETH_SEND_ERROR_LINK_FAILURE,
  434. QETH_SEND_ERROR_RETRY,
  435. QETH_SEND_ERROR_KICK_IT,
  436. };
  437. #define QETH_ETH_MAC_V4 0x0100 /* like v4 */
  438. #define QETH_ETH_MAC_V6 0x3333 /* like v6 */
  439. /* tr mc mac is longer, but that will be enough to detect mc frames */
  440. #define QETH_TR_MAC_NC 0xc000 /* non-canonical */
  441. #define QETH_TR_MAC_C 0x0300 /* canonical */
  442. #define DEFAULT_ADD_HHLEN 0
  443. #define MAX_ADD_HHLEN 1024
  444. /**
  445. * buffer stuff for read channel
  446. */
  447. #define QETH_CMD_BUFFER_NO 8
  448. /**
  449. * channel state machine
  450. */
  451. enum qeth_channel_states {
  452. CH_STATE_UP,
  453. CH_STATE_DOWN,
  454. CH_STATE_ACTIVATING,
  455. CH_STATE_HALTED,
  456. CH_STATE_STOPPED,
  457. CH_STATE_RCD,
  458. CH_STATE_RCD_DONE,
  459. };
  460. /**
  461. * card state machine
  462. */
  463. enum qeth_card_states {
  464. CARD_STATE_DOWN,
  465. CARD_STATE_HARDSETUP,
  466. CARD_STATE_SOFTSETUP,
  467. CARD_STATE_UP,
  468. CARD_STATE_RECOVER,
  469. };
  470. /**
  471. * Protocol versions
  472. */
  473. enum qeth_prot_versions {
  474. QETH_PROT_IPV4 = 0x0004,
  475. QETH_PROT_IPV6 = 0x0006,
  476. };
  477. enum qeth_ip_types {
  478. QETH_IP_TYPE_NORMAL,
  479. QETH_IP_TYPE_VIPA,
  480. QETH_IP_TYPE_RXIP,
  481. QETH_IP_TYPE_DEL_ALL_MC,
  482. };
  483. enum qeth_cmd_buffer_state {
  484. BUF_STATE_FREE,
  485. BUF_STATE_LOCKED,
  486. BUF_STATE_PROCESSED,
  487. };
  488. struct qeth_ipato {
  489. int enabled;
  490. int invert4;
  491. int invert6;
  492. struct list_head entries;
  493. };
  494. struct qeth_channel;
  495. struct qeth_cmd_buffer {
  496. enum qeth_cmd_buffer_state state;
  497. struct qeth_channel *channel;
  498. unsigned char *data;
  499. int rc;
  500. void (*callback) (struct qeth_channel *, struct qeth_cmd_buffer *);
  501. };
  502. /**
  503. * definition of a qeth channel, used for read and write
  504. */
  505. struct qeth_channel {
  506. enum qeth_channel_states state;
  507. struct ccw1 ccw;
  508. spinlock_t iob_lock;
  509. wait_queue_head_t wait_q;
  510. struct tasklet_struct irq_tasklet;
  511. struct ccw_device *ccwdev;
  512. /*command buffer for control data*/
  513. struct qeth_cmd_buffer iob[QETH_CMD_BUFFER_NO];
  514. atomic_t irq_pending;
  515. int io_buf_no;
  516. int buf_no;
  517. };
  518. /**
  519. * OSA card related definitions
  520. */
  521. struct qeth_token {
  522. __u32 issuer_rm_w;
  523. __u32 issuer_rm_r;
  524. __u32 cm_filter_w;
  525. __u32 cm_filter_r;
  526. __u32 cm_connection_w;
  527. __u32 cm_connection_r;
  528. __u32 ulp_filter_w;
  529. __u32 ulp_filter_r;
  530. __u32 ulp_connection_w;
  531. __u32 ulp_connection_r;
  532. };
  533. struct qeth_seqno {
  534. __u32 trans_hdr;
  535. __u32 pdu_hdr;
  536. __u32 pdu_hdr_ack;
  537. __u16 ipa;
  538. __u32 pkt_seqno;
  539. };
  540. struct qeth_reply {
  541. struct list_head list;
  542. wait_queue_head_t wait_q;
  543. int (*callback)(struct qeth_card *, struct qeth_reply *,
  544. unsigned long);
  545. u32 seqno;
  546. unsigned long offset;
  547. atomic_t received;
  548. int rc;
  549. void *param;
  550. struct qeth_card *card;
  551. atomic_t refcnt;
  552. };
  553. struct qeth_card_blkt {
  554. int time_total;
  555. int inter_packet;
  556. int inter_packet_jumbo;
  557. };
  558. #define QETH_BROADCAST_WITH_ECHO 0x01
  559. #define QETH_BROADCAST_WITHOUT_ECHO 0x02
  560. #define QETH_LAYER2_MAC_READ 0x01
  561. #define QETH_LAYER2_MAC_REGISTERED 0x02
  562. struct qeth_card_info {
  563. unsigned short unit_addr2;
  564. unsigned short cula;
  565. unsigned short chpid;
  566. __u16 func_level;
  567. char mcl_level[QETH_MCL_LENGTH + 1];
  568. int guestlan;
  569. int mac_bits;
  570. int portname_required;
  571. int portno;
  572. char portname[9];
  573. enum qeth_card_types type;
  574. enum qeth_link_types link_type;
  575. int is_multicast_different;
  576. int initial_mtu;
  577. int max_mtu;
  578. int broadcast_capable;
  579. int unique_id;
  580. struct qeth_card_blkt blkt;
  581. __u32 csum_mask;
  582. enum qeth_ipa_promisc_modes promisc_mode;
  583. };
  584. struct qeth_card_options {
  585. struct qeth_routing_info route4;
  586. struct qeth_ipa_info ipa4;
  587. struct qeth_ipa_info adp; /*Adapter parameters*/
  588. struct qeth_routing_info route6;
  589. struct qeth_ipa_info ipa6;
  590. enum qeth_checksum_types checksum_type;
  591. int broadcast_mode;
  592. int macaddr_mode;
  593. int fake_broadcast;
  594. int add_hhlen;
  595. int fake_ll;
  596. int layer2;
  597. enum qeth_large_send_types large_send;
  598. int performance_stats;
  599. int rx_sg_cb;
  600. };
  601. /*
  602. * thread bits for qeth_card thread masks
  603. */
  604. enum qeth_threads {
  605. QETH_RECOVER_THREAD = 1,
  606. };
  607. struct qeth_osn_info {
  608. int (*assist_cb)(struct net_device *dev, void *data);
  609. int (*data_cb)(struct sk_buff *skb);
  610. };
  611. enum qeth_discipline_id {
  612. QETH_DISCIPLINE_LAYER3 = 0,
  613. QETH_DISCIPLINE_LAYER2 = 1,
  614. };
  615. struct qeth_discipline {
  616. qdio_handler_t *input_handler;
  617. qdio_handler_t *output_handler;
  618. int (*recover)(void *ptr);
  619. struct ccwgroup_driver *ccwgdriver;
  620. };
  621. struct qeth_vlan_vid {
  622. struct list_head list;
  623. unsigned short vid;
  624. };
  625. struct qeth_mc_mac {
  626. struct list_head list;
  627. __u8 mc_addr[MAX_ADDR_LEN];
  628. unsigned char mc_addrlen;
  629. };
  630. struct qeth_card {
  631. struct list_head list;
  632. enum qeth_card_states state;
  633. int lan_online;
  634. spinlock_t lock;
  635. struct ccwgroup_device *gdev;
  636. struct qeth_channel read;
  637. struct qeth_channel write;
  638. struct qeth_channel data;
  639. struct net_device *dev;
  640. struct net_device_stats stats;
  641. struct qeth_card_info info;
  642. struct qeth_token token;
  643. struct qeth_seqno seqno;
  644. struct qeth_card_options options;
  645. wait_queue_head_t wait_q;
  646. spinlock_t vlanlock;
  647. spinlock_t mclock;
  648. struct vlan_group *vlangrp;
  649. struct list_head vid_list;
  650. struct list_head mc_list;
  651. struct work_struct kernel_thread_starter;
  652. spinlock_t thread_mask_lock;
  653. unsigned long thread_start_mask;
  654. unsigned long thread_allowed_mask;
  655. unsigned long thread_running_mask;
  656. spinlock_t ip_lock;
  657. struct list_head ip_list;
  658. struct list_head *ip_tbd_list;
  659. struct qeth_ipato ipato;
  660. struct list_head cmd_waiter_list;
  661. /* QDIO buffer handling */
  662. struct qeth_qdio_info qdio;
  663. struct qeth_perf_stats perf_stats;
  664. int use_hard_stop;
  665. struct qeth_osn_info osn_info;
  666. struct qeth_discipline discipline;
  667. atomic_t force_alloc_skb;
  668. };
  669. struct qeth_card_list_struct {
  670. struct list_head list;
  671. rwlock_t rwlock;
  672. };
  673. /*some helper functions*/
  674. #define QETH_CARD_IFNAME(card) (((card)->dev)? (card)->dev->name : "")
  675. static inline struct qeth_card *CARD_FROM_CDEV(struct ccw_device *cdev)
  676. {
  677. struct qeth_card *card = dev_get_drvdata(&((struct ccwgroup_device *)
  678. dev_get_drvdata(&cdev->dev))->dev);
  679. return card;
  680. }
  681. static inline int qeth_get_micros(void)
  682. {
  683. return (int) (get_clock() >> 12);
  684. }
  685. static inline void *qeth_push_skb(struct qeth_card *card, struct sk_buff *skb,
  686. int size)
  687. {
  688. void *hdr;
  689. hdr = (void *) skb_push(skb, size);
  690. /*
  691. * sanity check, the Linux memory allocation scheme should
  692. * never present us cases like this one (the qdio header size plus
  693. * the first 40 bytes of the paket cross a 4k boundary)
  694. */
  695. if ((((unsigned long) hdr) & (~(PAGE_SIZE - 1))) !=
  696. (((unsigned long) hdr + size +
  697. QETH_IP_HEADER_SIZE) & (~(PAGE_SIZE - 1)))) {
  698. PRINT_ERR("Misaligned packet on interface %s. Discarded.",
  699. QETH_CARD_IFNAME(card));
  700. return NULL;
  701. }
  702. return hdr;
  703. }
  704. static inline int qeth_get_ip_version(struct sk_buff *skb)
  705. {
  706. switch (skb->protocol) {
  707. case ETH_P_IPV6:
  708. return 6;
  709. case ETH_P_IP:
  710. return 4;
  711. default:
  712. return 0;
  713. }
  714. }
  715. struct qeth_eddp_context;
  716. extern struct ccwgroup_driver qeth_l2_ccwgroup_driver;
  717. extern struct ccwgroup_driver qeth_l3_ccwgroup_driver;
  718. const char *qeth_get_cardname_short(struct qeth_card *);
  719. int qeth_realloc_buffer_pool(struct qeth_card *, int);
  720. int qeth_core_load_discipline(struct qeth_card *, enum qeth_discipline_id);
  721. void qeth_core_free_discipline(struct qeth_card *);
  722. int qeth_core_create_device_attributes(struct device *);
  723. void qeth_core_remove_device_attributes(struct device *);
  724. int qeth_core_create_osn_attributes(struct device *);
  725. void qeth_core_remove_osn_attributes(struct device *);
  726. /* exports for qeth discipline device drivers */
  727. extern struct qeth_card_list_struct qeth_core_card_list;
  728. extern debug_info_t *qeth_dbf_setup;
  729. extern debug_info_t *qeth_dbf_data;
  730. extern debug_info_t *qeth_dbf_misc;
  731. extern debug_info_t *qeth_dbf_control;
  732. extern debug_info_t *qeth_dbf_trace;
  733. extern debug_info_t *qeth_dbf_sense;
  734. extern debug_info_t *qeth_dbf_qerr;
  735. void qeth_set_allowed_threads(struct qeth_card *, unsigned long , int);
  736. int qeth_threads_running(struct qeth_card *, unsigned long);
  737. int qeth_wait_for_threads(struct qeth_card *, unsigned long);
  738. int qeth_do_run_thread(struct qeth_card *, unsigned long);
  739. void qeth_clear_thread_start_bit(struct qeth_card *, unsigned long);
  740. void qeth_clear_thread_running_bit(struct qeth_card *, unsigned long);
  741. int qeth_core_hardsetup_card(struct qeth_card *);
  742. void qeth_print_status_message(struct qeth_card *);
  743. int qeth_init_qdio_queues(struct qeth_card *);
  744. int qeth_send_startlan(struct qeth_card *);
  745. int qeth_send_stoplan(struct qeth_card *);
  746. int qeth_send_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *,
  747. int (*reply_cb)
  748. (struct qeth_card *, struct qeth_reply *, unsigned long),
  749. void *);
  750. struct qeth_cmd_buffer *qeth_get_ipacmd_buffer(struct qeth_card *,
  751. enum qeth_ipa_cmds, enum qeth_prot_versions);
  752. int qeth_query_setadapterparms(struct qeth_card *);
  753. int qeth_check_qdio_errors(struct qdio_buffer *, unsigned int,
  754. unsigned int, const char *);
  755. void qeth_put_buffer_pool_entry(struct qeth_card *,
  756. struct qeth_buffer_pool_entry *);
  757. void qeth_queue_input_buffer(struct qeth_card *, int);
  758. struct sk_buff *qeth_core_get_next_skb(struct qeth_card *,
  759. struct qdio_buffer *, struct qdio_buffer_element **, int *,
  760. struct qeth_hdr **);
  761. void qeth_schedule_recovery(struct qeth_card *);
  762. void qeth_qdio_output_handler(struct ccw_device *, unsigned int,
  763. unsigned int, unsigned int,
  764. unsigned int, int, int,
  765. unsigned long);
  766. void qeth_clear_ipacmd_list(struct qeth_card *);
  767. int qeth_qdio_clear_card(struct qeth_card *, int);
  768. void qeth_clear_working_pool_list(struct qeth_card *);
  769. void qeth_clear_cmd_buffers(struct qeth_channel *);
  770. void qeth_clear_qdio_buffers(struct qeth_card *);
  771. void qeth_setadp_promisc_mode(struct qeth_card *);
  772. struct net_device_stats *qeth_get_stats(struct net_device *);
  773. int qeth_change_mtu(struct net_device *, int);
  774. int qeth_setadpparms_change_macaddr(struct qeth_card *);
  775. void qeth_tx_timeout(struct net_device *);
  776. void qeth_prepare_control_data(struct qeth_card *, int,
  777. struct qeth_cmd_buffer *);
  778. void qeth_release_buffer(struct qeth_channel *, struct qeth_cmd_buffer *);
  779. void qeth_prepare_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *, char);
  780. struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
  781. int qeth_mdio_read(struct net_device *, int, int);
  782. int qeth_snmp_command(struct qeth_card *, char __user *);
  783. int qeth_set_large_send(struct qeth_card *, enum qeth_large_send_types);
  784. struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *, __u32, __u32);
  785. int qeth_default_setadapterparms_cb(struct qeth_card *, struct qeth_reply *,
  786. unsigned long);
  787. int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
  788. int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
  789. void *reply_param);
  790. int qeth_get_cast_type(struct qeth_card *, struct sk_buff *);
  791. int qeth_get_priority_queue(struct qeth_card *, struct sk_buff *, int, int);
  792. struct sk_buff *qeth_prepare_skb(struct qeth_card *, struct sk_buff *,
  793. struct qeth_hdr **);
  794. int qeth_get_elements_no(struct qeth_card *, void *, struct sk_buff *, int);
  795. int qeth_do_send_packet_fast(struct qeth_card *, struct qeth_qdio_out_q *,
  796. struct sk_buff *, struct qeth_hdr *, int,
  797. struct qeth_eddp_context *);
  798. int qeth_do_send_packet(struct qeth_card *, struct qeth_qdio_out_q *,
  799. struct sk_buff *, struct qeth_hdr *,
  800. int, struct qeth_eddp_context *);
  801. int qeth_core_get_stats_count(struct net_device *);
  802. void qeth_core_get_ethtool_stats(struct net_device *,
  803. struct ethtool_stats *, u64 *);
  804. void qeth_core_get_strings(struct net_device *, u32, u8 *);
  805. void qeth_core_get_drvinfo(struct net_device *, struct ethtool_drvinfo *);
  806. /* exports for OSN */
  807. int qeth_osn_assist(struct net_device *, void *, int);
  808. int qeth_osn_register(unsigned char *read_dev_no, struct net_device **,
  809. int (*assist_cb)(struct net_device *, void *),
  810. int (*data_cb)(struct sk_buff *));
  811. void qeth_osn_deregister(struct net_device *);
  812. #endif /* __QETH_CORE_H__ */