qeth_core.h 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025
  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_HEADER_SIZE 32
  210. #define QETH_MAX_PORTNO 15
  211. /*IPv6 address autoconfiguration stuff*/
  212. #define UNIQUE_ID_IF_CREATE_ADDR_FAILED 0xfffe
  213. #define UNIQUE_ID_NOT_BY_CARD 0x10000
  214. /*****************************************************************************/
  215. /* QDIO queue and buffer handling */
  216. /*****************************************************************************/
  217. #define QETH_MAX_QUEUES 4
  218. #define QETH_IN_BUF_SIZE_DEFAULT 65536
  219. #define QETH_IN_BUF_COUNT_DEFAULT 64
  220. #define QETH_IN_BUF_COUNT_HSDEFAULT 128
  221. #define QETH_IN_BUF_COUNT_MIN 8
  222. #define QETH_IN_BUF_COUNT_MAX 128
  223. #define QETH_MAX_BUFFER_ELEMENTS(card) ((card)->qdio.in_buf_size >> 12)
  224. #define QETH_IN_BUF_REQUEUE_THRESHOLD(card) \
  225. ((card)->qdio.in_buf_pool.buf_count / 2)
  226. /* buffers we have to be behind before we get a PCI */
  227. #define QETH_PCI_THRESHOLD_A(card) ((card)->qdio.in_buf_pool.buf_count+1)
  228. /*enqueued free buffers left before we get a PCI*/
  229. #define QETH_PCI_THRESHOLD_B(card) 0
  230. /*not used unless the microcode gets patched*/
  231. #define QETH_PCI_TIMER_VALUE(card) 3
  232. /* priority queing */
  233. #define QETH_PRIOQ_DEFAULT QETH_NO_PRIO_QUEUEING
  234. #define QETH_DEFAULT_QUEUE 2
  235. #define QETH_NO_PRIO_QUEUEING 0
  236. #define QETH_PRIO_Q_ING_PREC 1
  237. #define QETH_PRIO_Q_ING_TOS 2
  238. #define QETH_PRIO_Q_ING_SKB 3
  239. #define QETH_PRIO_Q_ING_VLAN 4
  240. /* Packing */
  241. #define QETH_LOW_WATERMARK_PACK 2
  242. #define QETH_HIGH_WATERMARK_PACK 5
  243. #define QETH_WATERMARK_PACK_FUZZ 1
  244. #define QETH_IP_HEADER_SIZE 40
  245. /* large receive scatter gather copy break */
  246. #define QETH_RX_SG_CB (PAGE_SIZE >> 1)
  247. #define QETH_RX_PULL_LEN 256
  248. struct qeth_hdr_layer3 {
  249. __u8 id;
  250. __u8 flags;
  251. __u16 inbound_checksum; /*TSO:__u16 seqno */
  252. __u32 token; /*TSO: __u32 reserved */
  253. __u16 length;
  254. __u8 vlan_prio;
  255. __u8 ext_flags;
  256. __u16 vlan_id;
  257. __u16 frame_offset;
  258. __u8 dest_addr[16];
  259. } __attribute__ ((packed));
  260. struct qeth_hdr_layer2 {
  261. __u8 id;
  262. __u8 flags[3];
  263. __u8 port_no;
  264. __u8 hdr_length;
  265. __u16 pkt_length;
  266. __u16 seq_no;
  267. __u16 vlan_id;
  268. __u32 reserved;
  269. __u8 reserved2[16];
  270. } __attribute__ ((packed));
  271. struct qeth_hdr_osn {
  272. __u8 id;
  273. __u8 reserved;
  274. __u16 seq_no;
  275. __u16 reserved2;
  276. __u16 control_flags;
  277. __u16 pdu_length;
  278. __u8 reserved3[18];
  279. __u32 ccid;
  280. } __attribute__ ((packed));
  281. struct qeth_hdr {
  282. union {
  283. struct qeth_hdr_layer2 l2;
  284. struct qeth_hdr_layer3 l3;
  285. struct qeth_hdr_osn osn;
  286. } hdr;
  287. } __attribute__ ((packed));
  288. /*TCP Segmentation Offload header*/
  289. struct qeth_hdr_ext_tso {
  290. __u16 hdr_tot_len;
  291. __u8 imb_hdr_no;
  292. __u8 reserved;
  293. __u8 hdr_type;
  294. __u8 hdr_version;
  295. __u16 hdr_len;
  296. __u32 payload_len;
  297. __u16 mss;
  298. __u16 dg_hdr_len;
  299. __u8 padding[16];
  300. } __attribute__ ((packed));
  301. struct qeth_hdr_tso {
  302. struct qeth_hdr hdr; /*hdr->hdr.l3.xxx*/
  303. struct qeth_hdr_ext_tso ext;
  304. } __attribute__ ((packed));
  305. /* flags for qeth_hdr.flags */
  306. #define QETH_HDR_PASSTHRU 0x10
  307. #define QETH_HDR_IPV6 0x80
  308. #define QETH_HDR_CAST_MASK 0x07
  309. enum qeth_cast_flags {
  310. QETH_CAST_UNICAST = 0x06,
  311. QETH_CAST_MULTICAST = 0x04,
  312. QETH_CAST_BROADCAST = 0x05,
  313. QETH_CAST_ANYCAST = 0x07,
  314. QETH_CAST_NOCAST = 0x00,
  315. };
  316. enum qeth_layer2_frame_flags {
  317. QETH_LAYER2_FLAG_MULTICAST = 0x01,
  318. QETH_LAYER2_FLAG_BROADCAST = 0x02,
  319. QETH_LAYER2_FLAG_UNICAST = 0x04,
  320. QETH_LAYER2_FLAG_VLAN = 0x10,
  321. };
  322. enum qeth_header_ids {
  323. QETH_HEADER_TYPE_LAYER3 = 0x01,
  324. QETH_HEADER_TYPE_LAYER2 = 0x02,
  325. QETH_HEADER_TYPE_TSO = 0x03,
  326. QETH_HEADER_TYPE_OSN = 0x04,
  327. };
  328. /* flags for qeth_hdr.ext_flags */
  329. #define QETH_HDR_EXT_VLAN_FRAME 0x01
  330. #define QETH_HDR_EXT_TOKEN_ID 0x02
  331. #define QETH_HDR_EXT_INCLUDE_VLAN_TAG 0x04
  332. #define QETH_HDR_EXT_SRC_MAC_ADDR 0x08
  333. #define QETH_HDR_EXT_CSUM_HDR_REQ 0x10
  334. #define QETH_HDR_EXT_CSUM_TRANSP_REQ 0x20
  335. #define QETH_HDR_EXT_UDP 0x40 /*bit off for TCP*/
  336. enum qeth_qdio_buffer_states {
  337. /*
  338. * inbound: read out by driver; owned by hardware in order to be filled
  339. * outbound: owned by driver in order to be filled
  340. */
  341. QETH_QDIO_BUF_EMPTY,
  342. /*
  343. * inbound: filled by hardware; owned by driver in order to be read out
  344. * outbound: filled by driver; owned by hardware in order to be sent
  345. */
  346. QETH_QDIO_BUF_PRIMED,
  347. /*
  348. * inbound: not applicable
  349. * outbound: identified to be pending in TPQ
  350. */
  351. QETH_QDIO_BUF_PENDING,
  352. /*
  353. * inbound: not applicable
  354. * outbound: found in completion queue
  355. */
  356. QETH_QDIO_BUF_IN_CQ,
  357. /*
  358. * inbound: not applicable
  359. * outbound: handled via transfer pending / completion queue
  360. */
  361. QETH_QDIO_BUF_HANDLED_DELAYED,
  362. };
  363. enum qeth_qdio_info_states {
  364. QETH_QDIO_UNINITIALIZED,
  365. QETH_QDIO_ALLOCATED,
  366. QETH_QDIO_ESTABLISHED,
  367. QETH_QDIO_CLEANING
  368. };
  369. struct qeth_buffer_pool_entry {
  370. struct list_head list;
  371. struct list_head init_list;
  372. void *elements[QDIO_MAX_ELEMENTS_PER_BUFFER];
  373. };
  374. struct qeth_qdio_buffer_pool {
  375. struct list_head entry_list;
  376. int buf_count;
  377. };
  378. struct qeth_qdio_buffer {
  379. struct qdio_buffer *buffer;
  380. /* the buffer pool entry currently associated to this buffer */
  381. struct qeth_buffer_pool_entry *pool_entry;
  382. struct sk_buff *rx_skb;
  383. };
  384. struct qeth_qdio_q {
  385. struct qdio_buffer *qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  386. struct qeth_qdio_buffer bufs[QDIO_MAX_BUFFERS_PER_Q];
  387. int next_buf_to_init;
  388. };
  389. struct qeth_qdio_out_buffer {
  390. struct qdio_buffer *buffer;
  391. atomic_t state;
  392. int next_element_to_fill;
  393. struct sk_buff_head skb_list;
  394. int is_header[16];
  395. struct qaob *aob;
  396. struct qeth_qdio_out_q *q;
  397. struct qeth_qdio_out_buffer *next_pending;
  398. };
  399. struct qeth_card;
  400. enum qeth_out_q_states {
  401. QETH_OUT_Q_UNLOCKED,
  402. QETH_OUT_Q_LOCKED,
  403. QETH_OUT_Q_LOCKED_FLUSH,
  404. };
  405. struct qeth_qdio_out_q {
  406. struct qdio_buffer *qdio_bufs[QDIO_MAX_BUFFERS_PER_Q];
  407. struct qeth_qdio_out_buffer *bufs[QDIO_MAX_BUFFERS_PER_Q];
  408. struct qdio_outbuf_state *bufstates; /* convenience pointer */
  409. int queue_no;
  410. struct qeth_card *card;
  411. atomic_t state;
  412. int do_pack;
  413. /*
  414. * index of buffer to be filled by driver; state EMPTY or PACKING
  415. */
  416. int next_buf_to_fill;
  417. /*
  418. * number of buffers that are currently filled (PRIMED)
  419. * -> these buffers are hardware-owned
  420. */
  421. atomic_t used_buffers;
  422. /* indicates whether PCI flag must be set (or if one is outstanding) */
  423. atomic_t set_pci_flags_count;
  424. };
  425. struct qeth_qdio_info {
  426. atomic_t state;
  427. /* input */
  428. int no_in_queues;
  429. struct qeth_qdio_q *in_q;
  430. struct qeth_qdio_q *c_q;
  431. struct qeth_qdio_buffer_pool in_buf_pool;
  432. struct qeth_qdio_buffer_pool init_pool;
  433. int in_buf_size;
  434. /* output */
  435. int no_out_queues;
  436. struct qeth_qdio_out_q **out_qs;
  437. struct qdio_outbuf_state *out_bufstates;
  438. /* priority queueing */
  439. int do_prio_queueing;
  440. int default_out_queue;
  441. };
  442. enum qeth_send_errors {
  443. QETH_SEND_ERROR_NONE,
  444. QETH_SEND_ERROR_LINK_FAILURE,
  445. QETH_SEND_ERROR_RETRY,
  446. QETH_SEND_ERROR_KICK_IT,
  447. };
  448. #define QETH_ETH_MAC_V4 0x0100 /* like v4 */
  449. #define QETH_ETH_MAC_V6 0x3333 /* like v6 */
  450. /* tr mc mac is longer, but that will be enough to detect mc frames */
  451. #define QETH_TR_MAC_NC 0xc000 /* non-canonical */
  452. #define QETH_TR_MAC_C 0x0300 /* canonical */
  453. #define DEFAULT_ADD_HHLEN 0
  454. #define MAX_ADD_HHLEN 1024
  455. /**
  456. * buffer stuff for read channel
  457. */
  458. #define QETH_CMD_BUFFER_NO 8
  459. /**
  460. * channel state machine
  461. */
  462. enum qeth_channel_states {
  463. CH_STATE_UP,
  464. CH_STATE_DOWN,
  465. CH_STATE_ACTIVATING,
  466. CH_STATE_HALTED,
  467. CH_STATE_STOPPED,
  468. CH_STATE_RCD,
  469. CH_STATE_RCD_DONE,
  470. };
  471. /**
  472. * card state machine
  473. */
  474. enum qeth_card_states {
  475. CARD_STATE_DOWN,
  476. CARD_STATE_HARDSETUP,
  477. CARD_STATE_SOFTSETUP,
  478. CARD_STATE_UP,
  479. CARD_STATE_RECOVER,
  480. };
  481. /**
  482. * Protocol versions
  483. */
  484. enum qeth_prot_versions {
  485. QETH_PROT_IPV4 = 0x0004,
  486. QETH_PROT_IPV6 = 0x0006,
  487. };
  488. enum qeth_ip_types {
  489. QETH_IP_TYPE_NORMAL,
  490. QETH_IP_TYPE_VIPA,
  491. QETH_IP_TYPE_RXIP,
  492. };
  493. enum qeth_cmd_buffer_state {
  494. BUF_STATE_FREE,
  495. BUF_STATE_LOCKED,
  496. BUF_STATE_PROCESSED,
  497. };
  498. enum qeth_cq {
  499. QETH_CQ_DISABLED = 0,
  500. QETH_CQ_ENABLED = 1,
  501. QETH_CQ_NOTAVAILABLE = 2,
  502. };
  503. struct qeth_ipato {
  504. bool enabled;
  505. bool invert4;
  506. bool invert6;
  507. struct list_head entries;
  508. };
  509. struct qeth_channel;
  510. struct qeth_cmd_buffer {
  511. enum qeth_cmd_buffer_state state;
  512. struct qeth_channel *channel;
  513. unsigned char *data;
  514. int rc;
  515. void (*callback) (struct qeth_channel *, struct qeth_cmd_buffer *);
  516. };
  517. static inline struct qeth_ipa_cmd *__ipa_cmd(struct qeth_cmd_buffer *iob)
  518. {
  519. return (struct qeth_ipa_cmd *)(iob->data + IPA_PDU_HEADER_SIZE);
  520. }
  521. /**
  522. * definition of a qeth channel, used for read and write
  523. */
  524. struct qeth_channel {
  525. enum qeth_channel_states state;
  526. struct ccw1 ccw;
  527. spinlock_t iob_lock;
  528. wait_queue_head_t wait_q;
  529. struct ccw_device *ccwdev;
  530. /*command buffer for control data*/
  531. struct qeth_cmd_buffer iob[QETH_CMD_BUFFER_NO];
  532. atomic_t irq_pending;
  533. int io_buf_no;
  534. int buf_no;
  535. };
  536. /**
  537. * OSA card related definitions
  538. */
  539. struct qeth_token {
  540. __u32 issuer_rm_w;
  541. __u32 issuer_rm_r;
  542. __u32 cm_filter_w;
  543. __u32 cm_filter_r;
  544. __u32 cm_connection_w;
  545. __u32 cm_connection_r;
  546. __u32 ulp_filter_w;
  547. __u32 ulp_filter_r;
  548. __u32 ulp_connection_w;
  549. __u32 ulp_connection_r;
  550. };
  551. struct qeth_seqno {
  552. __u32 trans_hdr;
  553. __u32 pdu_hdr;
  554. __u32 pdu_hdr_ack;
  555. __u16 ipa;
  556. __u32 pkt_seqno;
  557. };
  558. struct qeth_reply {
  559. struct list_head list;
  560. wait_queue_head_t wait_q;
  561. int (*callback)(struct qeth_card *, struct qeth_reply *,
  562. unsigned long);
  563. u32 seqno;
  564. unsigned long offset;
  565. atomic_t received;
  566. int rc;
  567. void *param;
  568. struct qeth_card *card;
  569. atomic_t refcnt;
  570. };
  571. struct qeth_card_blkt {
  572. int time_total;
  573. int inter_packet;
  574. int inter_packet_jumbo;
  575. };
  576. #define QETH_BROADCAST_WITH_ECHO 0x01
  577. #define QETH_BROADCAST_WITHOUT_ECHO 0x02
  578. #define QETH_LAYER2_MAC_READ 0x01
  579. #define QETH_LAYER2_MAC_REGISTERED 0x02
  580. struct qeth_card_info {
  581. unsigned short unit_addr2;
  582. unsigned short cula;
  583. unsigned short chpid;
  584. __u16 func_level;
  585. char mcl_level[QETH_MCL_LENGTH + 1];
  586. int guestlan;
  587. int mac_bits;
  588. int portno;
  589. enum qeth_card_types type;
  590. enum qeth_link_types link_type;
  591. int is_multicast_different;
  592. int initial_mtu;
  593. int max_mtu;
  594. int broadcast_capable;
  595. int unique_id;
  596. struct qeth_card_blkt blkt;
  597. __u32 csum_mask;
  598. __u32 tx_csum_mask;
  599. enum qeth_ipa_promisc_modes promisc_mode;
  600. __u32 diagass_support;
  601. __u32 hwtrap;
  602. };
  603. struct qeth_card_options {
  604. struct qeth_routing_info route4;
  605. struct qeth_ipa_info ipa4;
  606. struct qeth_ipa_info adp; /*Adapter parameters*/
  607. struct qeth_routing_info route6;
  608. struct qeth_ipa_info ipa6;
  609. struct qeth_sbp_info sbp; /* SETBRIDGEPORT options */
  610. int fake_broadcast;
  611. int add_hhlen;
  612. int layer2;
  613. int performance_stats;
  614. int rx_sg_cb;
  615. enum qeth_ipa_isolation_modes isolation;
  616. enum qeth_ipa_isolation_modes prev_isolation;
  617. int sniffer;
  618. enum qeth_cq cq;
  619. char hsuid[9];
  620. };
  621. /*
  622. * thread bits for qeth_card thread masks
  623. */
  624. enum qeth_threads {
  625. QETH_RECOVER_THREAD = 1,
  626. };
  627. struct qeth_osn_info {
  628. int (*assist_cb)(struct net_device *dev, void *data);
  629. int (*data_cb)(struct sk_buff *skb);
  630. };
  631. enum qeth_discipline_id {
  632. QETH_DISCIPLINE_LAYER3 = 0,
  633. QETH_DISCIPLINE_LAYER2 = 1,
  634. };
  635. struct qeth_discipline {
  636. const struct device_type *devtype;
  637. void (*start_poll)(struct ccw_device *, int, unsigned long);
  638. qdio_handler_t *input_handler;
  639. qdio_handler_t *output_handler;
  640. int (*recover)(void *ptr);
  641. int (*setup) (struct ccwgroup_device *);
  642. void (*remove) (struct ccwgroup_device *);
  643. int (*set_online) (struct ccwgroup_device *);
  644. int (*set_offline) (struct ccwgroup_device *);
  645. void (*shutdown)(struct ccwgroup_device *);
  646. int (*prepare) (struct ccwgroup_device *);
  647. void (*complete) (struct ccwgroup_device *);
  648. int (*freeze)(struct ccwgroup_device *);
  649. int (*thaw) (struct ccwgroup_device *);
  650. int (*restore)(struct ccwgroup_device *);
  651. int (*control_event_handler)(struct qeth_card *card,
  652. struct qeth_ipa_cmd *cmd);
  653. };
  654. struct qeth_vlan_vid {
  655. struct list_head list;
  656. unsigned short vid;
  657. };
  658. enum qeth_addr_disposition {
  659. QETH_DISP_ADDR_DELETE = 0,
  660. QETH_DISP_ADDR_DO_NOTHING = 1,
  661. QETH_DISP_ADDR_ADD = 2,
  662. };
  663. struct qeth_rx {
  664. int b_count;
  665. int b_index;
  666. struct qdio_buffer_element *b_element;
  667. int e_offset;
  668. int qdio_err;
  669. };
  670. struct carrier_info {
  671. __u8 card_type;
  672. __u16 port_mode;
  673. __u32 port_speed;
  674. };
  675. struct qeth_switch_info {
  676. __u32 capabilities;
  677. __u32 settings;
  678. };
  679. #define QETH_NAPI_WEIGHT NAPI_POLL_WEIGHT
  680. struct qeth_card {
  681. struct list_head list;
  682. enum qeth_card_states state;
  683. int lan_online;
  684. spinlock_t lock;
  685. struct ccwgroup_device *gdev;
  686. struct qeth_channel read;
  687. struct qeth_channel write;
  688. struct qeth_channel data;
  689. struct net_device *dev;
  690. struct net_device_stats stats;
  691. struct qeth_card_info info;
  692. struct qeth_token token;
  693. struct qeth_seqno seqno;
  694. struct qeth_card_options options;
  695. wait_queue_head_t wait_q;
  696. spinlock_t vlanlock;
  697. spinlock_t mclock;
  698. unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
  699. struct list_head vid_list;
  700. DECLARE_HASHTABLE(mac_htable, 4);
  701. DECLARE_HASHTABLE(ip_htable, 4);
  702. DECLARE_HASHTABLE(ip_mc_htable, 4);
  703. struct work_struct kernel_thread_starter;
  704. spinlock_t thread_mask_lock;
  705. unsigned long thread_start_mask;
  706. unsigned long thread_allowed_mask;
  707. unsigned long thread_running_mask;
  708. struct task_struct *recovery_task;
  709. spinlock_t ip_lock;
  710. struct qeth_ipato ipato;
  711. struct list_head cmd_waiter_list;
  712. /* QDIO buffer handling */
  713. struct qeth_qdio_info qdio;
  714. struct qeth_perf_stats perf_stats;
  715. int read_or_write_problem;
  716. struct qeth_osn_info osn_info;
  717. struct qeth_discipline *discipline;
  718. atomic_t force_alloc_skb;
  719. struct service_level qeth_service_level;
  720. struct qdio_ssqd_desc ssqd;
  721. debug_info_t *debug;
  722. struct mutex conf_mutex;
  723. struct mutex discipline_mutex;
  724. struct napi_struct napi;
  725. struct qeth_rx rx;
  726. struct delayed_work buffer_reclaim_work;
  727. int reclaim_index;
  728. struct work_struct close_dev_work;
  729. };
  730. struct qeth_card_list_struct {
  731. struct list_head list;
  732. rwlock_t rwlock;
  733. };
  734. struct qeth_trap_id {
  735. __u16 lparnr;
  736. char vmname[8];
  737. __u8 chpid;
  738. __u8 ssid;
  739. __u16 devno;
  740. } __packed;
  741. /*some helper functions*/
  742. #define QETH_CARD_IFNAME(card) (((card)->dev)? (card)->dev->name : "")
  743. /**
  744. * qeth_get_elements_for_range() - find number of SBALEs to cover range.
  745. * @start: Start of the address range.
  746. * @end: Address after the end of the range.
  747. *
  748. * Returns the number of pages, and thus QDIO buffer elements, needed to cover
  749. * the specified address range.
  750. */
  751. static inline int qeth_get_elements_for_range(addr_t start, addr_t end)
  752. {
  753. return PFN_UP(end) - PFN_DOWN(start);
  754. }
  755. static inline int qeth_get_micros(void)
  756. {
  757. return (int) (get_tod_clock() >> 12);
  758. }
  759. static inline int qeth_get_ip_version(struct sk_buff *skb)
  760. {
  761. __be16 *p = &((struct ethhdr *)skb->data)->h_proto;
  762. if (*p == ETH_P_8021Q)
  763. p += 2;
  764. switch (*p) {
  765. case ETH_P_IPV6:
  766. return 6;
  767. case ETH_P_IP:
  768. return 4;
  769. default:
  770. return 0;
  771. }
  772. }
  773. static inline int qeth_get_ip_protocol(struct sk_buff *skb)
  774. {
  775. return ip_hdr(skb)->protocol;
  776. }
  777. static inline void qeth_put_buffer_pool_entry(struct qeth_card *card,
  778. struct qeth_buffer_pool_entry *entry)
  779. {
  780. list_add_tail(&entry->list, &card->qdio.in_buf_pool.entry_list);
  781. }
  782. static inline int qeth_is_diagass_supported(struct qeth_card *card,
  783. enum qeth_diags_cmds cmd)
  784. {
  785. return card->info.diagass_support & (__u32)cmd;
  786. }
  787. extern struct qeth_discipline qeth_l2_discipline;
  788. extern struct qeth_discipline qeth_l3_discipline;
  789. extern const struct attribute_group *qeth_generic_attr_groups[];
  790. extern const struct attribute_group *qeth_osn_attr_groups[];
  791. extern const struct attribute_group qeth_device_attr_group;
  792. extern const struct attribute_group qeth_device_blkt_group;
  793. extern const struct device_type qeth_generic_devtype;
  794. extern struct workqueue_struct *qeth_wq;
  795. int qeth_card_hw_is_reachable(struct qeth_card *);
  796. const char *qeth_get_cardname_short(struct qeth_card *);
  797. int qeth_realloc_buffer_pool(struct qeth_card *, int);
  798. int qeth_core_load_discipline(struct qeth_card *, enum qeth_discipline_id);
  799. void qeth_core_free_discipline(struct qeth_card *);
  800. /* exports for qeth discipline device drivers */
  801. extern struct qeth_card_list_struct qeth_core_card_list;
  802. extern struct kmem_cache *qeth_core_header_cache;
  803. extern struct qeth_dbf_info qeth_dbf[QETH_DBF_INFOS];
  804. void qeth_set_recovery_task(struct qeth_card *);
  805. void qeth_clear_recovery_task(struct qeth_card *);
  806. void qeth_set_allowed_threads(struct qeth_card *, unsigned long , int);
  807. int qeth_threads_running(struct qeth_card *, unsigned long);
  808. int qeth_wait_for_threads(struct qeth_card *, unsigned long);
  809. int qeth_do_run_thread(struct qeth_card *, unsigned long);
  810. void qeth_clear_thread_start_bit(struct qeth_card *, unsigned long);
  811. void qeth_clear_thread_running_bit(struct qeth_card *, unsigned long);
  812. int qeth_core_hardsetup_card(struct qeth_card *);
  813. void qeth_print_status_message(struct qeth_card *);
  814. int qeth_init_qdio_queues(struct qeth_card *);
  815. int qeth_send_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *,
  816. int (*reply_cb)
  817. (struct qeth_card *, struct qeth_reply *, unsigned long),
  818. void *);
  819. struct qeth_cmd_buffer *qeth_get_ipacmd_buffer(struct qeth_card *,
  820. enum qeth_ipa_cmds, enum qeth_prot_versions);
  821. int qeth_query_setadapterparms(struct qeth_card *);
  822. int qeth_check_qdio_errors(struct qeth_card *, struct qdio_buffer *,
  823. unsigned int, const char *);
  824. void qeth_queue_input_buffer(struct qeth_card *, int);
  825. struct sk_buff *qeth_core_get_next_skb(struct qeth_card *,
  826. struct qeth_qdio_buffer *, struct qdio_buffer_element **, int *,
  827. struct qeth_hdr **);
  828. void qeth_schedule_recovery(struct qeth_card *);
  829. void qeth_qdio_start_poll(struct ccw_device *, int, unsigned long);
  830. void qeth_qdio_input_handler(struct ccw_device *,
  831. unsigned int, unsigned int, int,
  832. int, unsigned long);
  833. void qeth_qdio_output_handler(struct ccw_device *, unsigned int,
  834. int, int, int, unsigned long);
  835. void qeth_clear_ipacmd_list(struct qeth_card *);
  836. int qeth_qdio_clear_card(struct qeth_card *, int);
  837. void qeth_clear_working_pool_list(struct qeth_card *);
  838. void qeth_clear_cmd_buffers(struct qeth_channel *);
  839. void qeth_clear_qdio_buffers(struct qeth_card *);
  840. void qeth_setadp_promisc_mode(struct qeth_card *);
  841. struct net_device_stats *qeth_get_stats(struct net_device *);
  842. int qeth_change_mtu(struct net_device *, int);
  843. int qeth_setadpparms_change_macaddr(struct qeth_card *);
  844. void qeth_tx_timeout(struct net_device *);
  845. void qeth_prepare_control_data(struct qeth_card *, int,
  846. struct qeth_cmd_buffer *);
  847. void qeth_release_buffer(struct qeth_channel *, struct qeth_cmd_buffer *);
  848. void qeth_prepare_ipa_cmd(struct qeth_card *, struct qeth_cmd_buffer *, char);
  849. struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
  850. int qeth_mdio_read(struct net_device *, int, int);
  851. int qeth_snmp_command(struct qeth_card *, char __user *);
  852. int qeth_query_oat_command(struct qeth_card *, char __user *);
  853. int qeth_query_switch_attributes(struct qeth_card *card,
  854. struct qeth_switch_info *sw_info);
  855. int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
  856. int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
  857. void *reply_param);
  858. int qeth_bridgeport_query_ports(struct qeth_card *card,
  859. enum qeth_sbp_roles *role, enum qeth_sbp_states *state);
  860. int qeth_bridgeport_setrole(struct qeth_card *card, enum qeth_sbp_roles role);
  861. int qeth_bridgeport_an_set(struct qeth_card *card, int enable);
  862. int qeth_get_priority_queue(struct qeth_card *, struct sk_buff *, int, int);
  863. int qeth_get_elements_no(struct qeth_card *card, struct sk_buff *skb,
  864. int extra_elems, int data_offset);
  865. int qeth_get_elements_for_frags(struct sk_buff *);
  866. int qeth_do_send_packet_fast(struct qeth_card *, struct qeth_qdio_out_q *,
  867. struct sk_buff *, struct qeth_hdr *, int, int, int);
  868. int qeth_do_send_packet(struct qeth_card *, struct qeth_qdio_out_q *,
  869. struct sk_buff *, struct qeth_hdr *, int);
  870. int qeth_core_get_sset_count(struct net_device *, int);
  871. void qeth_core_get_ethtool_stats(struct net_device *,
  872. struct ethtool_stats *, u64 *);
  873. void qeth_core_get_strings(struct net_device *, u32, u8 *);
  874. void qeth_core_get_drvinfo(struct net_device *, struct ethtool_drvinfo *);
  875. void qeth_dbf_longtext(debug_info_t *id, int level, char *text, ...);
  876. int qeth_core_ethtool_get_settings(struct net_device *, struct ethtool_cmd *);
  877. int qeth_set_access_ctrl_online(struct qeth_card *card, int fallback);
  878. int qeth_hdr_chk_and_bounce(struct sk_buff *, struct qeth_hdr **, int);
  879. int qeth_configure_cq(struct qeth_card *, enum qeth_cq);
  880. int qeth_hw_trap(struct qeth_card *, enum qeth_diags_trap_action);
  881. int qeth_query_ipassists(struct qeth_card *, enum qeth_prot_versions prot);
  882. void qeth_trace_features(struct qeth_card *);
  883. void qeth_close_dev(struct qeth_card *);
  884. int qeth_send_simple_setassparms(struct qeth_card *, enum qeth_ipa_funcs,
  885. __u16, long);
  886. int qeth_send_setassparms(struct qeth_card *, struct qeth_cmd_buffer *, __u16,
  887. long,
  888. int (*reply_cb)(struct qeth_card *,
  889. struct qeth_reply *, unsigned long),
  890. void *);
  891. int qeth_setassparms_cb(struct qeth_card *, struct qeth_reply *, unsigned long);
  892. struct qeth_cmd_buffer *qeth_get_setassparms_cmd(struct qeth_card *,
  893. enum qeth_ipa_funcs,
  894. __u16, __u16,
  895. enum qeth_prot_versions);
  896. int qeth_set_features(struct net_device *, netdev_features_t);
  897. int qeth_recover_features(struct net_device *);
  898. netdev_features_t qeth_fix_features(struct net_device *, netdev_features_t);
  899. netdev_features_t qeth_features_check(struct sk_buff *skb,
  900. struct net_device *dev,
  901. netdev_features_t features);
  902. /* exports for OSN */
  903. int qeth_osn_assist(struct net_device *, void *, int);
  904. int qeth_osn_register(unsigned char *read_dev_no, struct net_device **,
  905. int (*assist_cb)(struct net_device *, void *),
  906. int (*data_cb)(struct sk_buff *));
  907. void qeth_osn_deregister(struct net_device *);
  908. #endif /* __QETH_CORE_H__ */