qeth_core.h 23 KB

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