qeth_core.h 27 KB

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