qeth_core.h 26 KB

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