vxge-config.h 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259
  1. /******************************************************************************
  2. * This software may be used and distributed according to the terms of
  3. * the GNU General Public License (GPL), incorporated herein by reference.
  4. * Drivers based on or derived from this code fall under the GPL and must
  5. * retain the authorship, copyright and license notice. This file is not
  6. * a complete program and may only be used when the entire operating
  7. * system is licensed under the GPL.
  8. * See the file COPYING in this distribution for more information.
  9. *
  10. * vxge-config.h: Driver for Neterion Inc's X3100 Series 10GbE PCIe I/O
  11. * Virtualized Server Adapter.
  12. * Copyright(c) 2002-2009 Neterion Inc.
  13. ******************************************************************************/
  14. #ifndef VXGE_CONFIG_H
  15. #define VXGE_CONFIG_H
  16. #include <linux/list.h>
  17. #ifndef VXGE_CACHE_LINE_SIZE
  18. #define VXGE_CACHE_LINE_SIZE 128
  19. #endif
  20. #define vxge_os_vaprintf(level, mask, fmt, ...) { \
  21. char buff[255]; \
  22. snprintf(buff, 255, fmt, __VA_ARGS__); \
  23. printk(buff); \
  24. printk("\n"); \
  25. }
  26. #ifndef VXGE_ALIGN
  27. #define VXGE_ALIGN(adrs, size) \
  28. (((size) - (((u64)adrs) & ((size)-1))) & ((size)-1))
  29. #endif
  30. #define VXGE_HW_MIN_MTU 68
  31. #define VXGE_HW_MAX_MTU 9600
  32. #define VXGE_HW_DEFAULT_MTU 1500
  33. #ifdef VXGE_DEBUG_ASSERT
  34. /**
  35. * vxge_assert
  36. * @test: C-condition to check
  37. * @fmt: printf like format string
  38. *
  39. * This function implements traditional assert. By default assertions
  40. * are enabled. It can be disabled by undefining VXGE_DEBUG_ASSERT macro in
  41. * compilation
  42. * time.
  43. */
  44. #define vxge_assert(test) { \
  45. if (!(test)) \
  46. vxge_os_bug("bad cond: "#test" at %s:%d\n", \
  47. __FILE__, __LINE__); }
  48. #else
  49. #define vxge_assert(test)
  50. #endif /* end of VXGE_DEBUG_ASSERT */
  51. /**
  52. * enum enum vxge_debug_level
  53. * @VXGE_NONE: debug disabled
  54. * @VXGE_ERR: all errors going to be logged out
  55. * @VXGE_TRACE: all errors plus all kind of verbose tracing print outs
  56. * going to be logged out. Very noisy.
  57. *
  58. * This enumeration going to be used to switch between different
  59. * debug levels during runtime if DEBUG macro defined during
  60. * compilation. If DEBUG macro not defined than code will be
  61. * compiled out.
  62. */
  63. enum vxge_debug_level {
  64. VXGE_NONE = 0,
  65. VXGE_TRACE = 1,
  66. VXGE_ERR = 2
  67. };
  68. #define NULL_VPID 0xFFFFFFFF
  69. #ifdef CONFIG_VXGE_DEBUG_TRACE_ALL
  70. #define VXGE_DEBUG_MODULE_MASK 0xffffffff
  71. #define VXGE_DEBUG_TRACE_MASK 0xffffffff
  72. #define VXGE_DEBUG_ERR_MASK 0xffffffff
  73. #define VXGE_DEBUG_MASK 0x000001ff
  74. #else
  75. #define VXGE_DEBUG_MODULE_MASK 0x20000000
  76. #define VXGE_DEBUG_TRACE_MASK 0x20000000
  77. #define VXGE_DEBUG_ERR_MASK 0x20000000
  78. #define VXGE_DEBUG_MASK 0x00000001
  79. #endif
  80. /*
  81. * @VXGE_COMPONENT_LL: do debug for vxge link layer module
  82. * @VXGE_COMPONENT_ALL: activate debug for all modules with no exceptions
  83. *
  84. * This enumeration going to be used to distinguish modules
  85. * or libraries during compilation and runtime. Makefile must declare
  86. * VXGE_DEBUG_MODULE_MASK macro and set it to proper value.
  87. */
  88. #define VXGE_COMPONENT_LL 0x20000000
  89. #define VXGE_COMPONENT_ALL 0xffffffff
  90. #define VXGE_HW_BASE_INF 100
  91. #define VXGE_HW_BASE_ERR 200
  92. #define VXGE_HW_BASE_BADCFG 300
  93. enum vxge_hw_status {
  94. VXGE_HW_OK = 0,
  95. VXGE_HW_FAIL = 1,
  96. VXGE_HW_PENDING = 2,
  97. VXGE_HW_COMPLETIONS_REMAIN = 3,
  98. VXGE_HW_INF_NO_MORE_COMPLETED_DESCRIPTORS = VXGE_HW_BASE_INF + 1,
  99. VXGE_HW_INF_OUT_OF_DESCRIPTORS = VXGE_HW_BASE_INF + 2,
  100. VXGE_HW_ERR_INVALID_HANDLE = VXGE_HW_BASE_ERR + 1,
  101. VXGE_HW_ERR_OUT_OF_MEMORY = VXGE_HW_BASE_ERR + 2,
  102. VXGE_HW_ERR_VPATH_NOT_AVAILABLE = VXGE_HW_BASE_ERR + 3,
  103. VXGE_HW_ERR_VPATH_NOT_OPEN = VXGE_HW_BASE_ERR + 4,
  104. VXGE_HW_ERR_WRONG_IRQ = VXGE_HW_BASE_ERR + 5,
  105. VXGE_HW_ERR_SWAPPER_CTRL = VXGE_HW_BASE_ERR + 6,
  106. VXGE_HW_ERR_INVALID_MTU_SIZE = VXGE_HW_BASE_ERR + 7,
  107. VXGE_HW_ERR_INVALID_INDEX = VXGE_HW_BASE_ERR + 8,
  108. VXGE_HW_ERR_INVALID_TYPE = VXGE_HW_BASE_ERR + 9,
  109. VXGE_HW_ERR_INVALID_OFFSET = VXGE_HW_BASE_ERR + 10,
  110. VXGE_HW_ERR_INVALID_DEVICE = VXGE_HW_BASE_ERR + 11,
  111. VXGE_HW_ERR_VERSION_CONFLICT = VXGE_HW_BASE_ERR + 12,
  112. VXGE_HW_ERR_INVALID_PCI_INFO = VXGE_HW_BASE_ERR + 13,
  113. VXGE_HW_ERR_INVALID_TCODE = VXGE_HW_BASE_ERR + 14,
  114. VXGE_HW_ERR_INVALID_BLOCK_SIZE = VXGE_HW_BASE_ERR + 15,
  115. VXGE_HW_ERR_INVALID_STATE = VXGE_HW_BASE_ERR + 16,
  116. VXGE_HW_ERR_PRIVILAGED_OPEARATION = VXGE_HW_BASE_ERR + 17,
  117. VXGE_HW_ERR_INVALID_PORT = VXGE_HW_BASE_ERR + 18,
  118. VXGE_HW_ERR_FIFO = VXGE_HW_BASE_ERR + 19,
  119. VXGE_HW_ERR_VPATH = VXGE_HW_BASE_ERR + 20,
  120. VXGE_HW_ERR_CRITICAL = VXGE_HW_BASE_ERR + 21,
  121. VXGE_HW_ERR_SLOT_FREEZE = VXGE_HW_BASE_ERR + 22,
  122. VXGE_HW_BADCFG_RING_INDICATE_MAX_PKTS = VXGE_HW_BASE_BADCFG + 1,
  123. VXGE_HW_BADCFG_FIFO_BLOCKS = VXGE_HW_BASE_BADCFG + 2,
  124. VXGE_HW_BADCFG_VPATH_MTU = VXGE_HW_BASE_BADCFG + 3,
  125. VXGE_HW_BADCFG_VPATH_RPA_STRIP_VLAN_TAG = VXGE_HW_BASE_BADCFG + 4,
  126. VXGE_HW_BADCFG_VPATH_MIN_BANDWIDTH = VXGE_HW_BASE_BADCFG + 5,
  127. VXGE_HW_BADCFG_INTR_MODE = VXGE_HW_BASE_BADCFG + 6,
  128. VXGE_HW_BADCFG_RTS_MAC_EN = VXGE_HW_BASE_BADCFG + 7,
  129. VXGE_HW_EOF_TRACE_BUF = -1
  130. };
  131. /**
  132. * enum enum vxge_hw_device_link_state - Link state enumeration.
  133. * @VXGE_HW_LINK_NONE: Invalid link state.
  134. * @VXGE_HW_LINK_DOWN: Link is down.
  135. * @VXGE_HW_LINK_UP: Link is up.
  136. *
  137. */
  138. enum vxge_hw_device_link_state {
  139. VXGE_HW_LINK_NONE,
  140. VXGE_HW_LINK_DOWN,
  141. VXGE_HW_LINK_UP
  142. };
  143. /**
  144. * struct vxge_hw_device_date - Date Format
  145. * @day: Day
  146. * @month: Month
  147. * @year: Year
  148. * @date: Date in string format
  149. *
  150. * Structure for returning date
  151. */
  152. #define VXGE_HW_FW_STRLEN 32
  153. struct vxge_hw_device_date {
  154. u32 day;
  155. u32 month;
  156. u32 year;
  157. char date[VXGE_HW_FW_STRLEN];
  158. };
  159. struct vxge_hw_device_version {
  160. u32 major;
  161. u32 minor;
  162. u32 build;
  163. char version[VXGE_HW_FW_STRLEN];
  164. };
  165. u64
  166. __vxge_hw_vpath_pci_func_mode_get(
  167. u32 vp_id,
  168. struct vxge_hw_vpath_reg __iomem *vpath_reg);
  169. /**
  170. * struct vxge_hw_fifo_config - Configuration of fifo.
  171. * @enable: Is this fifo to be commissioned
  172. * @fifo_blocks: Numbers of TxDL (that is, lists of Tx descriptors)
  173. * blocks per queue.
  174. * @max_frags: Max number of Tx buffers per TxDL (that is, per single
  175. * transmit operation).
  176. * No more than 256 transmit buffers can be specified.
  177. * @memblock_size: Fifo descriptors are allocated in blocks of @mem_block_size
  178. * bytes. Setting @memblock_size to page size ensures
  179. * by-page allocation of descriptors. 128K bytes is the
  180. * maximum supported block size.
  181. * @alignment_size: per Tx fragment DMA-able memory used to align transmit data
  182. * (e.g., to align on a cache line).
  183. * @intr: Boolean. Use 1 to generate interrupt for each completed TxDL.
  184. * Use 0 otherwise.
  185. * @no_snoop_bits: If non-zero, specifies no-snoop PCI operation,
  186. * which generally improves latency of the host bridge operation
  187. * (see PCI specification). For valid values please refer
  188. * to struct vxge_hw_fifo_config{} in the driver sources.
  189. * Configuration of all Titan fifos.
  190. * Note: Valid (min, max) range for each attribute is specified in the body of
  191. * the struct vxge_hw_fifo_config{} structure.
  192. */
  193. struct vxge_hw_fifo_config {
  194. u32 enable;
  195. #define VXGE_HW_FIFO_ENABLE 1
  196. #define VXGE_HW_FIFO_DISABLE 0
  197. u32 fifo_blocks;
  198. #define VXGE_HW_MIN_FIFO_BLOCKS 2
  199. #define VXGE_HW_MAX_FIFO_BLOCKS 128
  200. u32 max_frags;
  201. #define VXGE_HW_MIN_FIFO_FRAGS 1
  202. #define VXGE_HW_MAX_FIFO_FRAGS 256
  203. u32 memblock_size;
  204. #define VXGE_HW_MIN_FIFO_MEMBLOCK_SIZE VXGE_HW_BLOCK_SIZE
  205. #define VXGE_HW_MAX_FIFO_MEMBLOCK_SIZE 131072
  206. #define VXGE_HW_DEF_FIFO_MEMBLOCK_SIZE 8096
  207. u32 alignment_size;
  208. #define VXGE_HW_MIN_FIFO_ALIGNMENT_SIZE 0
  209. #define VXGE_HW_MAX_FIFO_ALIGNMENT_SIZE 65536
  210. #define VXGE_HW_DEF_FIFO_ALIGNMENT_SIZE VXGE_CACHE_LINE_SIZE
  211. u32 intr;
  212. #define VXGE_HW_FIFO_QUEUE_INTR_ENABLE 1
  213. #define VXGE_HW_FIFO_QUEUE_INTR_DISABLE 0
  214. #define VXGE_HW_FIFO_QUEUE_INTR_DEFAULT 0
  215. u32 no_snoop_bits;
  216. #define VXGE_HW_FIFO_NO_SNOOP_DISABLED 0
  217. #define VXGE_HW_FIFO_NO_SNOOP_TXD 1
  218. #define VXGE_HW_FIFO_NO_SNOOP_FRM 2
  219. #define VXGE_HW_FIFO_NO_SNOOP_ALL 3
  220. #define VXGE_HW_FIFO_NO_SNOOP_DEFAULT 0
  221. };
  222. /**
  223. * struct vxge_hw_ring_config - Ring configurations.
  224. * @enable: Is this ring to be commissioned
  225. * @ring_blocks: Numbers of RxD blocks in the ring
  226. * @buffer_mode: Receive buffer mode (1, 2, 3, or 5); for details please refer
  227. * to Titan User Guide.
  228. * @scatter_mode: Titan supports two receive scatter modes: A and B.
  229. * For details please refer to Titan User Guide.
  230. * @rx_timer_val: The number of 32ns periods that would be counted between two
  231. * timer interrupts.
  232. * @greedy_return: If Set it forces the device to return absolutely all RxD
  233. * that are consumed and still on board when a timer interrupt
  234. * triggers. If Clear, then if the device has already returned
  235. * RxD before current timer interrupt trigerred and after the
  236. * previous timer interrupt triggered, then the device is not
  237. * forced to returned the rest of the consumed RxD that it has
  238. * on board which account for a byte count less than the one
  239. * programmed into PRC_CFG6.RXD_CRXDT field
  240. * @rx_timer_ci: TBD
  241. * @backoff_interval_us: Time (in microseconds), after which Titan
  242. * tries to download RxDs posted by the host.
  243. * Note that the "backoff" does not happen if host posts receive
  244. * descriptors in the timely fashion.
  245. * Ring configuration.
  246. */
  247. struct vxge_hw_ring_config {
  248. u32 enable;
  249. #define VXGE_HW_RING_ENABLE 1
  250. #define VXGE_HW_RING_DISABLE 0
  251. #define VXGE_HW_RING_DEFAULT 1
  252. u32 ring_blocks;
  253. #define VXGE_HW_MIN_RING_BLOCKS 1
  254. #define VXGE_HW_MAX_RING_BLOCKS 128
  255. #define VXGE_HW_DEF_RING_BLOCKS 2
  256. u32 buffer_mode;
  257. #define VXGE_HW_RING_RXD_BUFFER_MODE_1 1
  258. #define VXGE_HW_RING_RXD_BUFFER_MODE_3 3
  259. #define VXGE_HW_RING_RXD_BUFFER_MODE_5 5
  260. #define VXGE_HW_RING_RXD_BUFFER_MODE_DEFAULT 1
  261. u32 scatter_mode;
  262. #define VXGE_HW_RING_SCATTER_MODE_A 0
  263. #define VXGE_HW_RING_SCATTER_MODE_B 1
  264. #define VXGE_HW_RING_SCATTER_MODE_C 2
  265. #define VXGE_HW_RING_SCATTER_MODE_USE_FLASH_DEFAULT 0xffffffff
  266. u64 rxds_limit;
  267. #define VXGE_HW_DEF_RING_RXDS_LIMIT 44
  268. };
  269. /**
  270. * struct vxge_hw_vp_config - Configuration of virtual path
  271. * @vp_id: Virtual Path Id
  272. * @min_bandwidth: Minimum Guaranteed bandwidth
  273. * @ring: See struct vxge_hw_ring_config{}.
  274. * @fifo: See struct vxge_hw_fifo_config{}.
  275. * @tti: Configuration of interrupt associated with Transmit.
  276. * see struct vxge_hw_tim_intr_config();
  277. * @rti: Configuration of interrupt associated with Receive.
  278. * see struct vxge_hw_tim_intr_config();
  279. * @mtu: mtu size used on this port.
  280. * @rpa_strip_vlan_tag: Strip VLAN Tag enable/disable. Instructs the device to
  281. * remove the VLAN tag from all received tagged frames that are not
  282. * replicated at the internal L2 switch.
  283. * 0 - Do not strip the VLAN tag.
  284. * 1 - Strip the VLAN tag. Regardless of this setting, VLAN tags are
  285. * always placed into the RxDMA descriptor.
  286. *
  287. * This structure is used by the driver to pass the configuration parameters to
  288. * configure Virtual Path.
  289. */
  290. struct vxge_hw_vp_config {
  291. u32 vp_id;
  292. #define VXGE_HW_VPATH_PRIORITY_MIN 0
  293. #define VXGE_HW_VPATH_PRIORITY_MAX 16
  294. #define VXGE_HW_VPATH_PRIORITY_DEFAULT 0
  295. u32 min_bandwidth;
  296. #define VXGE_HW_VPATH_BANDWIDTH_MIN 0
  297. #define VXGE_HW_VPATH_BANDWIDTH_MAX 100
  298. #define VXGE_HW_VPATH_BANDWIDTH_DEFAULT 0
  299. struct vxge_hw_ring_config ring;
  300. struct vxge_hw_fifo_config fifo;
  301. struct vxge_hw_tim_intr_config tti;
  302. struct vxge_hw_tim_intr_config rti;
  303. u32 mtu;
  304. #define VXGE_HW_VPATH_MIN_INITIAL_MTU VXGE_HW_MIN_MTU
  305. #define VXGE_HW_VPATH_MAX_INITIAL_MTU VXGE_HW_MAX_MTU
  306. #define VXGE_HW_VPATH_USE_FLASH_DEFAULT_INITIAL_MTU 0xffffffff
  307. u32 rpa_strip_vlan_tag;
  308. #define VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_ENABLE 1
  309. #define VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_DISABLE 0
  310. #define VXGE_HW_VPATH_RPA_STRIP_VLAN_TAG_USE_FLASH_DEFAULT 0xffffffff
  311. };
  312. /**
  313. * struct vxge_hw_device_config - Device configuration.
  314. * @dma_blockpool_initial: Initial size of DMA Pool
  315. * @dma_blockpool_max: Maximum blocks in DMA pool
  316. * @intr_mode: Line, or MSI-X interrupt.
  317. *
  318. * @rth_en: Enable Receive Traffic Hashing(RTH) using IT(Indirection Table).
  319. * @rth_it_type: RTH IT table programming type
  320. * @rts_mac_en: Enable Receive Traffic Steering using MAC destination address
  321. * @vp_config: Configuration for virtual paths
  322. * @device_poll_millis: Specify the interval (in mulliseconds)
  323. * to wait for register reads
  324. *
  325. * Titan configuration.
  326. * Contains per-device configuration parameters, including:
  327. * - stats sampling interval, etc.
  328. *
  329. * In addition, struct vxge_hw_device_config{} includes "subordinate"
  330. * configurations, including:
  331. * - fifos and rings;
  332. * - MAC (done at firmware level).
  333. *
  334. * See Titan User Guide for more details.
  335. * Note: Valid (min, max) range for each attribute is specified in the body of
  336. * the struct vxge_hw_device_config{} structure. Please refer to the
  337. * corresponding include file.
  338. * See also: struct vxge_hw_tim_intr_config{}.
  339. */
  340. struct vxge_hw_device_config {
  341. u32 dma_blockpool_initial;
  342. u32 dma_blockpool_max;
  343. #define VXGE_HW_MIN_DMA_BLOCK_POOL_SIZE 0
  344. #define VXGE_HW_INITIAL_DMA_BLOCK_POOL_SIZE 0
  345. #define VXGE_HW_INCR_DMA_BLOCK_POOL_SIZE 4
  346. #define VXGE_HW_MAX_DMA_BLOCK_POOL_SIZE 4096
  347. #define VXGE_HW_MAX_PAYLOAD_SIZE_512 2
  348. u32 intr_mode;
  349. #define VXGE_HW_INTR_MODE_IRQLINE 0
  350. #define VXGE_HW_INTR_MODE_MSIX 1
  351. #define VXGE_HW_INTR_MODE_MSIX_ONE_SHOT 2
  352. #define VXGE_HW_INTR_MODE_DEF 0
  353. u32 rth_en;
  354. #define VXGE_HW_RTH_DISABLE 0
  355. #define VXGE_HW_RTH_ENABLE 1
  356. #define VXGE_HW_RTH_DEFAULT 0
  357. u32 rth_it_type;
  358. #define VXGE_HW_RTH_IT_TYPE_SOLO_IT 0
  359. #define VXGE_HW_RTH_IT_TYPE_MULTI_IT 1
  360. #define VXGE_HW_RTH_IT_TYPE_DEFAULT 0
  361. u32 rts_mac_en;
  362. #define VXGE_HW_RTS_MAC_DISABLE 0
  363. #define VXGE_HW_RTS_MAC_ENABLE 1
  364. #define VXGE_HW_RTS_MAC_DEFAULT 0
  365. struct vxge_hw_vp_config vp_config[VXGE_HW_MAX_VIRTUAL_PATHS];
  366. u32 device_poll_millis;
  367. #define VXGE_HW_MIN_DEVICE_POLL_MILLIS 1
  368. #define VXGE_HW_MAX_DEVICE_POLL_MILLIS 100000
  369. #define VXGE_HW_DEF_DEVICE_POLL_MILLIS 1000
  370. };
  371. /**
  372. * function vxge_uld_link_up_f - Link-Up callback provided by driver.
  373. * @devh: HW device handle.
  374. * Link-up notification callback provided by the driver.
  375. * This is one of the per-driver callbacks, see struct vxge_hw_uld_cbs{}.
  376. *
  377. * See also: struct vxge_hw_uld_cbs{}, vxge_uld_link_down_f{},
  378. * vxge_hw_driver_initialize().
  379. */
  380. /**
  381. * function vxge_uld_link_down_f - Link-Down callback provided by
  382. * driver.
  383. * @devh: HW device handle.
  384. *
  385. * Link-Down notification callback provided by the driver.
  386. * This is one of the per-driver callbacks, see struct vxge_hw_uld_cbs{}.
  387. *
  388. * See also: struct vxge_hw_uld_cbs{}, vxge_uld_link_up_f{},
  389. * vxge_hw_driver_initialize().
  390. */
  391. /**
  392. * function vxge_uld_crit_err_f - Critical Error notification callback.
  393. * @devh: HW device handle.
  394. * (typically - at HW device iinitialization time).
  395. * @type: Enumerated hw error, e.g.: double ECC.
  396. * @serr_data: Titan status.
  397. * @ext_data: Extended data. The contents depends on the @type.
  398. *
  399. * Link-Down notification callback provided by the driver.
  400. * This is one of the per-driver callbacks, see struct vxge_hw_uld_cbs{}.
  401. *
  402. * See also: struct vxge_hw_uld_cbs{}, enum vxge_hw_event{},
  403. * vxge_hw_driver_initialize().
  404. */
  405. /**
  406. * struct vxge_hw_uld_cbs - driver "slow-path" callbacks.
  407. * @link_up: See vxge_uld_link_up_f{}.
  408. * @link_down: See vxge_uld_link_down_f{}.
  409. * @crit_err: See vxge_uld_crit_err_f{}.
  410. *
  411. * Driver slow-path (per-driver) callbacks.
  412. * Implemented by driver and provided to HW via
  413. * vxge_hw_driver_initialize().
  414. * Note that these callbacks are not mandatory: HW will not invoke
  415. * a callback if NULL is specified.
  416. *
  417. * See also: vxge_hw_driver_initialize().
  418. */
  419. struct vxge_hw_uld_cbs {
  420. void (*link_up)(struct __vxge_hw_device *devh);
  421. void (*link_down)(struct __vxge_hw_device *devh);
  422. void (*crit_err)(struct __vxge_hw_device *devh,
  423. enum vxge_hw_event type, u64 ext_data);
  424. };
  425. /*
  426. * struct __vxge_hw_blockpool_entry - Block private data structure
  427. * @item: List header used to link.
  428. * @length: Length of the block
  429. * @memblock: Virtual address block
  430. * @dma_addr: DMA Address of the block.
  431. * @dma_handle: DMA handle of the block.
  432. * @acc_handle: DMA acc handle
  433. *
  434. * Block is allocated with a header to put the blocks into list.
  435. *
  436. */
  437. struct __vxge_hw_blockpool_entry {
  438. struct list_head item;
  439. u32 length;
  440. void *memblock;
  441. dma_addr_t dma_addr;
  442. struct pci_dev *dma_handle;
  443. struct pci_dev *acc_handle;
  444. };
  445. /*
  446. * struct __vxge_hw_blockpool - Block Pool
  447. * @hldev: HW device
  448. * @block_size: size of each block.
  449. * @Pool_size: Number of blocks in the pool
  450. * @pool_max: Maximum number of blocks above which to free additional blocks
  451. * @req_out: Number of block requests with OS out standing
  452. * @free_block_list: List of free blocks
  453. *
  454. * Block pool contains the DMA blocks preallocated.
  455. *
  456. */
  457. struct __vxge_hw_blockpool {
  458. struct __vxge_hw_device *hldev;
  459. u32 block_size;
  460. u32 pool_size;
  461. u32 pool_max;
  462. u32 req_out;
  463. struct list_head free_block_list;
  464. struct list_head free_entry_list;
  465. };
  466. /*
  467. * enum enum __vxge_hw_channel_type - Enumerated channel types.
  468. * @VXGE_HW_CHANNEL_TYPE_UNKNOWN: Unknown channel.
  469. * @VXGE_HW_CHANNEL_TYPE_FIFO: fifo.
  470. * @VXGE_HW_CHANNEL_TYPE_RING: ring.
  471. * @VXGE_HW_CHANNEL_TYPE_MAX: Maximum number of HW-supported
  472. * (and recognized) channel types. Currently: 2.
  473. *
  474. * Enumerated channel types. Currently there are only two link-layer
  475. * channels - Titan fifo and Titan ring. In the future the list will grow.
  476. */
  477. enum __vxge_hw_channel_type {
  478. VXGE_HW_CHANNEL_TYPE_UNKNOWN = 0,
  479. VXGE_HW_CHANNEL_TYPE_FIFO = 1,
  480. VXGE_HW_CHANNEL_TYPE_RING = 2,
  481. VXGE_HW_CHANNEL_TYPE_MAX = 3
  482. };
  483. /*
  484. * struct __vxge_hw_channel
  485. * @item: List item; used to maintain a list of open channels.
  486. * @type: Channel type. See enum vxge_hw_channel_type{}.
  487. * @devh: Device handle. HW device object that contains _this_ channel.
  488. * @vph: Virtual path handle. Virtual Path Object that contains _this_ channel.
  489. * @length: Channel length. Currently allocated number of descriptors.
  490. * The channel length "grows" when more descriptors get allocated.
  491. * See _hw_mempool_grow.
  492. * @reserve_arr: Reserve array. Contains descriptors that can be reserved
  493. * by driver for the subsequent send or receive operation.
  494. * See vxge_hw_fifo_txdl_reserve(),
  495. * vxge_hw_ring_rxd_reserve().
  496. * @reserve_ptr: Current pointer in the resrve array
  497. * @reserve_top: Reserve top gives the maximum number of dtrs available in
  498. * reserve array.
  499. * @work_arr: Work array. Contains descriptors posted to the channel.
  500. * Note that at any point in time @work_arr contains 3 types of
  501. * descriptors:
  502. * 1) posted but not yet consumed by Titan device;
  503. * 2) consumed but not yet completed;
  504. * 3) completed but not yet freed
  505. * (via vxge_hw_fifo_txdl_free() or vxge_hw_ring_rxd_free())
  506. * @post_index: Post index. At any point in time points on the
  507. * position in the channel, which'll contain next to-be-posted
  508. * descriptor.
  509. * @compl_index: Completion index. At any point in time points on the
  510. * position in the channel, which will contain next
  511. * to-be-completed descriptor.
  512. * @free_arr: Free array. Contains completed descriptors that were freed
  513. * (i.e., handed over back to HW) by driver.
  514. * See vxge_hw_fifo_txdl_free(), vxge_hw_ring_rxd_free().
  515. * @free_ptr: current pointer in free array
  516. * @per_dtr_space: Per-descriptor space (in bytes) that channel user can utilize
  517. * to store per-operation control information.
  518. * @stats: Pointer to common statistics
  519. * @userdata: Per-channel opaque (void*) user-defined context, which may be
  520. * driver object, ULP connection, etc.
  521. * Once channel is open, @userdata is passed back to user via
  522. * vxge_hw_channel_callback_f.
  523. *
  524. * HW channel object.
  525. *
  526. * See also: enum vxge_hw_channel_type{}, enum vxge_hw_channel_flag
  527. */
  528. struct __vxge_hw_channel {
  529. struct list_head item;
  530. enum __vxge_hw_channel_type type;
  531. struct __vxge_hw_device *devh;
  532. struct __vxge_hw_vpath_handle *vph;
  533. u32 length;
  534. u32 vp_id;
  535. void **reserve_arr;
  536. u32 reserve_ptr;
  537. u32 reserve_top;
  538. void **work_arr;
  539. u32 post_index ____cacheline_aligned;
  540. u32 compl_index ____cacheline_aligned;
  541. void **free_arr;
  542. u32 free_ptr;
  543. void **orig_arr;
  544. u32 per_dtr_space;
  545. void *userdata;
  546. struct vxge_hw_common_reg __iomem *common_reg;
  547. u32 first_vp_id;
  548. struct vxge_hw_vpath_stats_sw_common_info *stats;
  549. } ____cacheline_aligned;
  550. /*
  551. * struct __vxge_hw_virtualpath - Virtual Path
  552. *
  553. * @vp_id: Virtual path id
  554. * @vp_open: This flag specifies if vxge_hw_vp_open is called from LL Driver
  555. * @hldev: Hal device
  556. * @vp_config: Virtual Path Config
  557. * @vp_reg: VPATH Register map address in BAR0
  558. * @vpmgmt_reg: VPATH_MGMT register map address
  559. * @max_mtu: Max mtu that can be supported
  560. * @vsport_number: vsport attached to this vpath
  561. * @max_kdfc_db: Maximum kernel mode doorbells
  562. * @max_nofl_db: Maximum non offload doorbells
  563. * @tx_intr_num: Interrupt Number associated with the TX
  564. * @ringh: Ring Queue
  565. * @fifoh: FIFO Queue
  566. * @vpath_handles: Virtual Path handles list
  567. * @stats_block: Memory for DMAing stats
  568. * @stats: Vpath statistics
  569. *
  570. * Virtual path structure to encapsulate the data related to a virtual path.
  571. * Virtual paths are allocated by the HW upon getting configuration from the
  572. * driver and inserted into the list of virtual paths.
  573. */
  574. struct __vxge_hw_virtualpath {
  575. u32 vp_id;
  576. u32 vp_open;
  577. #define VXGE_HW_VP_NOT_OPEN 0
  578. #define VXGE_HW_VP_OPEN 1
  579. struct __vxge_hw_device *hldev;
  580. struct vxge_hw_vp_config *vp_config;
  581. struct vxge_hw_vpath_reg __iomem *vp_reg;
  582. struct vxge_hw_vpmgmt_reg __iomem *vpmgmt_reg;
  583. struct __vxge_hw_non_offload_db_wrapper __iomem *nofl_db;
  584. u32 max_mtu;
  585. u32 vsport_number;
  586. u32 max_kdfc_db;
  587. u32 max_nofl_db;
  588. struct __vxge_hw_ring *____cacheline_aligned ringh;
  589. struct __vxge_hw_fifo *____cacheline_aligned fifoh;
  590. struct list_head vpath_handles;
  591. struct __vxge_hw_blockpool_entry *stats_block;
  592. struct vxge_hw_vpath_stats_hw_info *hw_stats;
  593. struct vxge_hw_vpath_stats_hw_info *hw_stats_sav;
  594. struct vxge_hw_vpath_stats_sw_info *sw_stats;
  595. };
  596. /*
  597. * struct __vxge_hw_vpath_handle - List item to store callback information
  598. * @item: List head to keep the item in linked list
  599. * @vpath: Virtual path to which this item belongs
  600. *
  601. * This structure is used to store the callback information.
  602. */
  603. struct __vxge_hw_vpath_handle{
  604. struct list_head item;
  605. struct __vxge_hw_virtualpath *vpath;
  606. };
  607. /*
  608. * struct __vxge_hw_device
  609. *
  610. * HW device object.
  611. */
  612. /**
  613. * struct __vxge_hw_device - Hal device object
  614. * @magic: Magic Number
  615. * @device_id: PCI Device Id of the adapter
  616. * @major_revision: PCI Device major revision
  617. * @minor_revision: PCI Device minor revision
  618. * @bar0: BAR0 virtual address.
  619. * @bar1: BAR1 virtual address.
  620. * @bar2: BAR2 virtual address.
  621. * @pdev: Physical device handle
  622. * @config: Confguration passed by the LL driver at initialization
  623. * @link_state: Link state
  624. *
  625. * HW device object. Represents Titan adapter
  626. */
  627. struct __vxge_hw_device {
  628. u32 magic;
  629. #define VXGE_HW_DEVICE_MAGIC 0x12345678
  630. #define VXGE_HW_DEVICE_DEAD 0xDEADDEAD
  631. u16 device_id;
  632. u8 major_revision;
  633. u8 minor_revision;
  634. void __iomem *bar0;
  635. void __iomem *bar1;
  636. void __iomem *bar2;
  637. struct pci_dev *pdev;
  638. struct net_device *ndev;
  639. struct vxge_hw_device_config config;
  640. enum vxge_hw_device_link_state link_state;
  641. struct vxge_hw_uld_cbs uld_callbacks;
  642. u32 host_type;
  643. u32 func_id;
  644. u32 access_rights;
  645. #define VXGE_HW_DEVICE_ACCESS_RIGHT_VPATH 0x1
  646. #define VXGE_HW_DEVICE_ACCESS_RIGHT_SRPCIM 0x2
  647. #define VXGE_HW_DEVICE_ACCESS_RIGHT_MRPCIM 0x4
  648. struct vxge_hw_legacy_reg __iomem *legacy_reg;
  649. struct vxge_hw_toc_reg __iomem *toc_reg;
  650. struct vxge_hw_common_reg __iomem *common_reg;
  651. struct vxge_hw_mrpcim_reg __iomem *mrpcim_reg;
  652. struct vxge_hw_srpcim_reg __iomem *srpcim_reg \
  653. [VXGE_HW_TITAN_SRPCIM_REG_SPACES];
  654. struct vxge_hw_vpmgmt_reg __iomem *vpmgmt_reg \
  655. [VXGE_HW_TITAN_VPMGMT_REG_SPACES];
  656. struct vxge_hw_vpath_reg __iomem *vpath_reg \
  657. [VXGE_HW_TITAN_VPATH_REG_SPACES];
  658. u8 __iomem *kdfc;
  659. u8 __iomem *usdc;
  660. struct __vxge_hw_virtualpath virtual_paths \
  661. [VXGE_HW_MAX_VIRTUAL_PATHS];
  662. u64 vpath_assignments;
  663. u64 vpaths_deployed;
  664. u32 first_vp_id;
  665. u64 tim_int_mask0[4];
  666. u32 tim_int_mask1[4];
  667. struct __vxge_hw_blockpool block_pool;
  668. struct vxge_hw_device_stats stats;
  669. u32 debug_module_mask;
  670. u32 debug_level;
  671. u32 level_err;
  672. u32 level_trace;
  673. };
  674. #define VXGE_HW_INFO_LEN 64
  675. /**
  676. * struct vxge_hw_device_hw_info - Device information
  677. * @host_type: Host Type
  678. * @func_id: Function Id
  679. * @vpath_mask: vpath bit mask
  680. * @fw_version: Firmware version
  681. * @fw_date: Firmware Date
  682. * @flash_version: Firmware version
  683. * @flash_date: Firmware Date
  684. * @mac_addrs: Mac addresses for each vpath
  685. * @mac_addr_masks: Mac address masks for each vpath
  686. *
  687. * Returns the vpath mask that has the bits set for each vpath allocated
  688. * for the driver and the first mac address for each vpath
  689. */
  690. struct vxge_hw_device_hw_info {
  691. u32 host_type;
  692. #define VXGE_HW_NO_MR_NO_SR_NORMAL_FUNCTION 0
  693. #define VXGE_HW_MR_NO_SR_VH0_BASE_FUNCTION 1
  694. #define VXGE_HW_NO_MR_SR_VH0_FUNCTION0 2
  695. #define VXGE_HW_NO_MR_SR_VH0_VIRTUAL_FUNCTION 3
  696. #define VXGE_HW_MR_SR_VH0_INVALID_CONFIG 4
  697. #define VXGE_HW_SR_VH_FUNCTION0 5
  698. #define VXGE_HW_SR_VH_VIRTUAL_FUNCTION 6
  699. #define VXGE_HW_VH_NORMAL_FUNCTION 7
  700. u64 function_mode;
  701. #define VXGE_HW_FUNCTION_MODE_MULTI_FUNCTION 0
  702. #define VXGE_HW_FUNCTION_MODE_SINGLE_FUNCTION 1
  703. #define VXGE_HW_FUNCTION_MODE_SRIOV 2
  704. #define VXGE_HW_FUNCTION_MODE_MRIOV 3
  705. u32 func_id;
  706. u64 vpath_mask;
  707. struct vxge_hw_device_version fw_version;
  708. struct vxge_hw_device_date fw_date;
  709. struct vxge_hw_device_version flash_version;
  710. struct vxge_hw_device_date flash_date;
  711. u8 serial_number[VXGE_HW_INFO_LEN];
  712. u8 part_number[VXGE_HW_INFO_LEN];
  713. u8 product_desc[VXGE_HW_INFO_LEN];
  714. u8 (mac_addrs)[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN];
  715. u8 (mac_addr_masks)[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN];
  716. };
  717. /**
  718. * struct vxge_hw_device_attr - Device memory spaces.
  719. * @bar0: BAR0 virtual address.
  720. * @bar1: BAR1 virtual address.
  721. * @bar2: BAR2 virtual address.
  722. * @pdev: PCI device object.
  723. *
  724. * Device memory spaces. Includes configuration, BAR0, BAR1, etc. per device
  725. * mapped memories. Also, includes a pointer to OS-specific PCI device object.
  726. */
  727. struct vxge_hw_device_attr {
  728. void __iomem *bar0;
  729. void __iomem *bar1;
  730. void __iomem *bar2;
  731. struct pci_dev *pdev;
  732. struct vxge_hw_uld_cbs uld_callbacks;
  733. };
  734. #define VXGE_HW_DEVICE_LINK_STATE_SET(hldev, ls) (hldev->link_state = ls)
  735. #define VXGE_HW_DEVICE_TIM_INT_MASK_SET(m0, m1, i) { \
  736. if (i < 16) { \
  737. m0[0] |= vxge_vBIT(0x8, (i*4), 4); \
  738. m0[1] |= vxge_vBIT(0x4, (i*4), 4); \
  739. } \
  740. else { \
  741. m1[0] = 0x80000000; \
  742. m1[1] = 0x40000000; \
  743. } \
  744. }
  745. #define VXGE_HW_DEVICE_TIM_INT_MASK_RESET(m0, m1, i) { \
  746. if (i < 16) { \
  747. m0[0] &= ~vxge_vBIT(0x8, (i*4), 4); \
  748. m0[1] &= ~vxge_vBIT(0x4, (i*4), 4); \
  749. } \
  750. else { \
  751. m1[0] = 0; \
  752. m1[1] = 0; \
  753. } \
  754. }
  755. #define VXGE_HW_DEVICE_STATS_PIO_READ(loc, offset) { \
  756. status = vxge_hw_mrpcim_stats_access(hldev, \
  757. VXGE_HW_STATS_OP_READ, \
  758. loc, \
  759. offset, \
  760. &val64); \
  761. \
  762. if (status != VXGE_HW_OK) \
  763. return status; \
  764. }
  765. #define VXGE_HW_VPATH_STATS_PIO_READ(offset) { \
  766. status = __vxge_hw_vpath_stats_access(vpath, \
  767. VXGE_HW_STATS_OP_READ, \
  768. offset, \
  769. &val64); \
  770. if (status != VXGE_HW_OK) \
  771. return status; \
  772. }
  773. /*
  774. * struct __vxge_hw_ring - Ring channel.
  775. * @channel: Channel "base" of this ring, the common part of all HW
  776. * channels.
  777. * @mempool: Memory pool, the pool from which descriptors get allocated.
  778. * (See vxge_hw_mm.h).
  779. * @config: Ring configuration, part of device configuration
  780. * (see struct vxge_hw_device_config{}).
  781. * @ring_length: Length of the ring
  782. * @buffer_mode: 1, 3, or 5. The value specifies a receive buffer mode,
  783. * as per Titan User Guide.
  784. * @rxd_size: RxD sizes for 1-, 3- or 5- buffer modes. As per Titan spec,
  785. * 1-buffer mode descriptor is 32 byte long, etc.
  786. * @rxd_priv_size: Per RxD size reserved (by HW) for driver to keep
  787. * per-descriptor data (e.g., DMA handle for Solaris)
  788. * @per_rxd_space: Per rxd space requested by driver
  789. * @rxds_per_block: Number of descriptors per hardware-defined RxD
  790. * block. Depends on the (1-, 3-, 5-) buffer mode.
  791. * @rxdblock_priv_size: Reserved at the end of each RxD block. HW internal
  792. * usage. Not to confuse with @rxd_priv_size.
  793. * @cmpl_cnt: Completion counter. Is reset to zero upon entering the ISR.
  794. * @callback: Channel completion callback. HW invokes the callback when there
  795. * are new completions on that channel. In many implementations
  796. * the @callback executes in the hw interrupt context.
  797. * @rxd_init: Channel's descriptor-initialize callback.
  798. * See vxge_hw_ring_rxd_init_f{}.
  799. * If not NULL, HW invokes the callback when opening
  800. * the ring.
  801. * @rxd_term: Channel's descriptor-terminate callback. If not NULL,
  802. * HW invokes the callback when closing the corresponding channel.
  803. * See also vxge_hw_channel_rxd_term_f{}.
  804. * @stats: Statistics for ring
  805. * Ring channel.
  806. *
  807. * Note: The structure is cache line aligned to better utilize
  808. * CPU cache performance.
  809. */
  810. struct __vxge_hw_ring {
  811. struct __vxge_hw_channel channel;
  812. struct vxge_hw_mempool *mempool;
  813. struct vxge_hw_vpath_reg __iomem *vp_reg;
  814. struct vxge_hw_common_reg __iomem *common_reg;
  815. u32 ring_length;
  816. u32 buffer_mode;
  817. u32 rxd_size;
  818. u32 rxd_priv_size;
  819. u32 per_rxd_space;
  820. u32 rxds_per_block;
  821. u32 rxdblock_priv_size;
  822. u32 cmpl_cnt;
  823. u32 vp_id;
  824. u32 doorbell_cnt;
  825. u32 total_db_cnt;
  826. u64 rxds_limit;
  827. enum vxge_hw_status (*callback)(
  828. struct __vxge_hw_ring *ringh,
  829. void *rxdh,
  830. u8 t_code,
  831. void *userdata);
  832. enum vxge_hw_status (*rxd_init)(
  833. void *rxdh,
  834. void *userdata);
  835. void (*rxd_term)(
  836. void *rxdh,
  837. enum vxge_hw_rxd_state state,
  838. void *userdata);
  839. struct vxge_hw_vpath_stats_sw_ring_info *stats ____cacheline_aligned;
  840. struct vxge_hw_ring_config *config;
  841. } ____cacheline_aligned;
  842. /**
  843. * enum enum vxge_hw_txdl_state - Descriptor (TXDL) state.
  844. * @VXGE_HW_TXDL_STATE_NONE: Invalid state.
  845. * @VXGE_HW_TXDL_STATE_AVAIL: Descriptor is available for reservation.
  846. * @VXGE_HW_TXDL_STATE_POSTED: Descriptor is posted for processing by the
  847. * device.
  848. * @VXGE_HW_TXDL_STATE_FREED: Descriptor is free and can be reused for
  849. * filling-in and posting later.
  850. *
  851. * Titan/HW descriptor states.
  852. *
  853. */
  854. enum vxge_hw_txdl_state {
  855. VXGE_HW_TXDL_STATE_NONE = 0,
  856. VXGE_HW_TXDL_STATE_AVAIL = 1,
  857. VXGE_HW_TXDL_STATE_POSTED = 2,
  858. VXGE_HW_TXDL_STATE_FREED = 3
  859. };
  860. /*
  861. * struct __vxge_hw_fifo - Fifo.
  862. * @channel: Channel "base" of this fifo, the common part of all HW
  863. * channels.
  864. * @mempool: Memory pool, from which descriptors get allocated.
  865. * @config: Fifo configuration, part of device configuration
  866. * (see struct vxge_hw_device_config{}).
  867. * @interrupt_type: Interrupt type to be used
  868. * @no_snoop_bits: See struct vxge_hw_fifo_config{}.
  869. * @txdl_per_memblock: Number of TxDLs (TxD lists) per memblock.
  870. * on TxDL please refer to Titan UG.
  871. * @txdl_size: Configured TxDL size (i.e., number of TxDs in a list), plus
  872. * per-TxDL HW private space (struct __vxge_hw_fifo_txdl_priv).
  873. * @priv_size: Per-Tx descriptor space reserved for driver
  874. * usage.
  875. * @per_txdl_space: Per txdl private space for the driver
  876. * @callback: Fifo completion callback. HW invokes the callback when there
  877. * are new completions on that fifo. In many implementations
  878. * the @callback executes in the hw interrupt context.
  879. * @txdl_term: Fifo's descriptor-terminate callback. If not NULL,
  880. * HW invokes the callback when closing the corresponding fifo.
  881. * See also vxge_hw_fifo_txdl_term_f{}.
  882. * @stats: Statistics of this fifo
  883. *
  884. * Fifo channel.
  885. * Note: The structure is cache line aligned.
  886. */
  887. struct __vxge_hw_fifo {
  888. struct __vxge_hw_channel channel;
  889. struct vxge_hw_mempool *mempool;
  890. struct vxge_hw_fifo_config *config;
  891. struct vxge_hw_vpath_reg __iomem *vp_reg;
  892. struct __vxge_hw_non_offload_db_wrapper __iomem *nofl_db;
  893. u64 interrupt_type;
  894. u32 no_snoop_bits;
  895. u32 txdl_per_memblock;
  896. u32 txdl_size;
  897. u32 priv_size;
  898. u32 per_txdl_space;
  899. u32 vp_id;
  900. u32 tx_intr_num;
  901. enum vxge_hw_status (*callback)(
  902. struct __vxge_hw_fifo *fifo_handle,
  903. void *txdlh,
  904. enum vxge_hw_fifo_tcode t_code,
  905. void *userdata,
  906. void **skb_ptr);
  907. void (*txdl_term)(
  908. void *txdlh,
  909. enum vxge_hw_txdl_state state,
  910. void *userdata);
  911. struct vxge_hw_vpath_stats_sw_fifo_info *stats ____cacheline_aligned;
  912. } ____cacheline_aligned;
  913. /*
  914. * struct __vxge_hw_fifo_txdl_priv - Transmit descriptor HW-private data.
  915. * @dma_addr: DMA (mapped) address of _this_ descriptor.
  916. * @dma_handle: DMA handle used to map the descriptor onto device.
  917. * @dma_offset: Descriptor's offset in the memory block. HW allocates
  918. * descriptors in memory blocks (see struct vxge_hw_fifo_config{})
  919. * Each memblock is a contiguous block of DMA-able memory.
  920. * @frags: Total number of fragments (that is, contiguous data buffers)
  921. * carried by this TxDL.
  922. * @align_vaddr_start: Aligned virtual address start
  923. * @align_vaddr: Virtual address of the per-TxDL area in memory used for
  924. * alignement. Used to place one or more mis-aligned fragments
  925. * @align_dma_addr: DMA address translated from the @align_vaddr.
  926. * @align_dma_handle: DMA handle that corresponds to @align_dma_addr.
  927. * @align_dma_acch: DMA access handle corresponds to @align_dma_addr.
  928. * @align_dma_offset: The current offset into the @align_vaddr area.
  929. * Grows while filling the descriptor, gets reset.
  930. * @align_used_frags: Number of fragments used.
  931. * @alloc_frags: Total number of fragments allocated.
  932. * @unused: TODO
  933. * @next_txdl_priv: (TODO).
  934. * @first_txdp: (TODO).
  935. * @linked_txdl_priv: Pointer to any linked TxDL for creating contiguous
  936. * TxDL list.
  937. * @txdlh: Corresponding txdlh to this TxDL.
  938. * @memblock: Pointer to the TxDL memory block or memory page.
  939. * on the next send operation.
  940. * @dma_object: DMA address and handle of the memory block that contains
  941. * the descriptor. This member is used only in the "checked"
  942. * version of the HW (to enforce certain assertions);
  943. * otherwise it gets compiled out.
  944. * @allocated: True if the descriptor is reserved, 0 otherwise. Internal usage.
  945. *
  946. * Per-transmit decsriptor HW-private data. HW uses the space to keep DMA
  947. * information associated with the descriptor. Note that driver can ask HW
  948. * to allocate additional per-descriptor space for its own (driver-specific)
  949. * purposes.
  950. *
  951. * See also: struct vxge_hw_ring_rxd_priv{}.
  952. */
  953. struct __vxge_hw_fifo_txdl_priv {
  954. dma_addr_t dma_addr;
  955. struct pci_dev *dma_handle;
  956. ptrdiff_t dma_offset;
  957. u32 frags;
  958. u8 *align_vaddr_start;
  959. u8 *align_vaddr;
  960. dma_addr_t align_dma_addr;
  961. struct pci_dev *align_dma_handle;
  962. struct pci_dev *align_dma_acch;
  963. ptrdiff_t align_dma_offset;
  964. u32 align_used_frags;
  965. u32 alloc_frags;
  966. u32 unused;
  967. struct __vxge_hw_fifo_txdl_priv *next_txdl_priv;
  968. struct vxge_hw_fifo_txd *first_txdp;
  969. void *memblock;
  970. };
  971. /*
  972. * struct __vxge_hw_non_offload_db_wrapper - Non-offload Doorbell Wrapper
  973. * @control_0: Bits 0 to 7 - Doorbell type.
  974. * Bits 8 to 31 - Reserved.
  975. * Bits 32 to 39 - The highest TxD in this TxDL.
  976. * Bits 40 to 47 - Reserved.
  977. * Bits 48 to 55 - Reserved.
  978. * Bits 56 to 63 - No snoop flags.
  979. * @txdl_ptr: The starting location of the TxDL in host memory.
  980. *
  981. * Created by the host and written to the adapter via PIO to a Kernel Doorbell
  982. * FIFO. All non-offload doorbell wrapper fields must be written by the host as
  983. * part of a doorbell write. Consumed by the adapter but is not written by the
  984. * adapter.
  985. */
  986. struct __vxge_hw_non_offload_db_wrapper {
  987. u64 control_0;
  988. #define VXGE_HW_NODBW_GET_TYPE(ctrl0) vxge_bVALn(ctrl0, 0, 8)
  989. #define VXGE_HW_NODBW_TYPE(val) vxge_vBIT(val, 0, 8)
  990. #define VXGE_HW_NODBW_TYPE_NODBW 0
  991. #define VXGE_HW_NODBW_GET_LAST_TXD_NUMBER(ctrl0) vxge_bVALn(ctrl0, 32, 8)
  992. #define VXGE_HW_NODBW_LAST_TXD_NUMBER(val) vxge_vBIT(val, 32, 8)
  993. #define VXGE_HW_NODBW_GET_NO_SNOOP(ctrl0) vxge_bVALn(ctrl0, 56, 8)
  994. #define VXGE_HW_NODBW_LIST_NO_SNOOP(val) vxge_vBIT(val, 56, 8)
  995. #define VXGE_HW_NODBW_LIST_NO_SNOOP_TXD_READ_TXD0_WRITE 0x2
  996. #define VXGE_HW_NODBW_LIST_NO_SNOOP_TX_FRAME_DATA_READ 0x1
  997. u64 txdl_ptr;
  998. };
  999. /*
  1000. * TX Descriptor
  1001. */
  1002. /**
  1003. * struct vxge_hw_fifo_txd - Transmit Descriptor
  1004. * @control_0: Bits 0 to 6 - Reserved.
  1005. * Bit 7 - List Ownership. This field should be initialized
  1006. * to '1' by the driver before the transmit list pointer is
  1007. * written to the adapter. This field will be set to '0' by the
  1008. * adapter once it has completed transmitting the frame or frames in
  1009. * the list. Note - This field is only valid in TxD0. Additionally,
  1010. * for multi-list sequences, the driver should not release any
  1011. * buffers until the ownership of the last list in the multi-list
  1012. * sequence has been returned to the host.
  1013. * Bits 8 to 11 - Reserved
  1014. * Bits 12 to 15 - Transfer_Code. This field is only valid in
  1015. * TxD0. It is used to describe the status of the transmit data
  1016. * buffer transfer. This field is always overwritten by the
  1017. * adapter, so this field may be initialized to any value.
  1018. * Bits 16 to 17 - Host steering. This field allows the host to
  1019. * override the selection of the physical transmit port.
  1020. * Attention:
  1021. * Normal sounds as if learned from the switch rather than from
  1022. * the aggregation algorythms.
  1023. * 00: Normal. Use Destination/MAC Address
  1024. * lookup to determine the transmit port.
  1025. * 01: Send on physical Port1.
  1026. * 10: Send on physical Port0.
  1027. * 11: Send on both ports.
  1028. * Bits 18 to 21 - Reserved
  1029. * Bits 22 to 23 - Gather_Code. This field is set by the host and
  1030. * is used to describe how individual buffers comprise a frame.
  1031. * 10: First descriptor of a frame.
  1032. * 00: Middle of a multi-descriptor frame.
  1033. * 01: Last descriptor of a frame.
  1034. * 11: First and last descriptor of a frame (the entire frame
  1035. * resides in a single buffer).
  1036. * For multi-descriptor frames, the only valid gather code sequence
  1037. * is {10, [00], 01}. In other words, the descriptors must be placed
  1038. * in the list in the correct order.
  1039. * Bits 24 to 27 - Reserved
  1040. * Bits 28 to 29 - LSO_Frm_Encap. LSO Frame Encapsulation
  1041. * definition. Only valid in TxD0. This field allows the host to
  1042. * indicate the Ethernet encapsulation of an outbound LSO packet.
  1043. * 00 - classic mode (best guess)
  1044. * 01 - LLC
  1045. * 10 - SNAP
  1046. * 11 - DIX
  1047. * If "classic mode" is selected, the adapter will attempt to
  1048. * decode the frame's Ethernet encapsulation by examining the L/T
  1049. * field as follows:
  1050. * <= 0x05DC LLC/SNAP encoding; must examine DSAP/SSAP to determine
  1051. * if packet is IPv4 or IPv6.
  1052. * 0x8870 Jumbo-SNAP encoding.
  1053. * 0x0800 IPv4 DIX encoding
  1054. * 0x86DD IPv6 DIX encoding
  1055. * others illegal encapsulation
  1056. * Bits 30 - LSO_ Flag. Large Send Offload (LSO) flag.
  1057. * Set to 1 to perform segmentation offload for TCP/UDP.
  1058. * This field is valid only in TxD0.
  1059. * Bits 31 to 33 - Reserved.
  1060. * Bits 34 to 47 - LSO_MSS. TCP/UDP LSO Maximum Segment Size
  1061. * This field is meaningful only when LSO_Control is non-zero.
  1062. * When LSO_Control is set to TCP_LSO, the single (possibly large)
  1063. * TCP segment described by this TxDL will be sent as a series of
  1064. * TCP segments each of which contains no more than LSO_MSS
  1065. * payload bytes.
  1066. * When LSO_Control is set to UDP_LSO, the single (possibly large)
  1067. * UDP datagram described by this TxDL will be sent as a series of
  1068. * UDP datagrams each of which contains no more than LSO_MSS
  1069. * payload bytes.
  1070. * All outgoing frames from this TxDL will have LSO_MSS bytes of UDP
  1071. * or TCP payload, with the exception of the last, which will have
  1072. * <= LSO_MSS bytes of payload.
  1073. * Bits 48 to 63 - Buffer_Size. Number of valid bytes in the
  1074. * buffer to be read by the adapter. This field is written by the
  1075. * host. A value of 0 is illegal.
  1076. * Bits 32 to 63 - This value is written by the adapter upon
  1077. * completion of a UDP or TCP LSO operation and indicates the number
  1078. * of UDP or TCP payload bytes that were transmitted. 0x0000 will be
  1079. * returned for any non-LSO operation.
  1080. * @control_1: Bits 0 to 4 - Reserved.
  1081. * Bit 5 - Tx_CKO_IPv4 Set to a '1' to enable IPv4 header checksum
  1082. * offload. This field is only valid in the first TxD of a frame.
  1083. * Bit 6 - Tx_CKO_TCP Set to a '1' to enable TCP checksum offload.
  1084. * This field is only valid in the first TxD of a frame (the TxD's
  1085. * gather code must be 10 or 11). The driver should only set this
  1086. * bit if it can guarantee that TCP is present.
  1087. * Bit 7 - Tx_CKO_UDP Set to a '1' to enable UDP checksum offload.
  1088. * This field is only valid in the first TxD of a frame (the TxD's
  1089. * gather code must be 10 or 11). The driver should only set this
  1090. * bit if it can guarantee that UDP is present.
  1091. * Bits 8 to 14 - Reserved.
  1092. * Bit 15 - Tx_VLAN_Enable VLAN tag insertion flag. Set to a '1' to
  1093. * instruct the adapter to insert the VLAN tag specified by the
  1094. * Tx_VLAN_Tag field. This field is only valid in the first TxD of
  1095. * a frame.
  1096. * Bits 16 to 31 - Tx_VLAN_Tag. Variable portion of the VLAN tag
  1097. * to be inserted into the frame by the adapter (the first two bytes
  1098. * of a VLAN tag are always 0x8100). This field is only valid if the
  1099. * Tx_VLAN_Enable field is set to '1'.
  1100. * Bits 32 to 33 - Reserved.
  1101. * Bits 34 to 39 - Tx_Int_Number. Indicates which Tx interrupt
  1102. * number the frame associated with. This field is written by the
  1103. * host. It is only valid in the first TxD of a frame.
  1104. * Bits 40 to 42 - Reserved.
  1105. * Bit 43 - Set to 1 to exclude the frame from bandwidth metering
  1106. * functions. This field is valid only in the first TxD
  1107. * of a frame.
  1108. * Bits 44 to 45 - Reserved.
  1109. * Bit 46 - Tx_Int_Per_List Set to a '1' to instruct the adapter to
  1110. * generate an interrupt as soon as all of the frames in the list
  1111. * have been transmitted. In order to have per-frame interrupts,
  1112. * the driver should place a maximum of one frame per list. This
  1113. * field is only valid in the first TxD of a frame.
  1114. * Bit 47 - Tx_Int_Utilization Set to a '1' to instruct the adapter
  1115. * to count the frame toward the utilization interrupt specified in
  1116. * the Tx_Int_Number field. This field is only valid in the first
  1117. * TxD of a frame.
  1118. * Bits 48 to 63 - Reserved.
  1119. * @buffer_pointer: Buffer start address.
  1120. * @host_control: Host_Control.Opaque 64bit data stored by driver inside the
  1121. * Titan descriptor prior to posting the latter on the fifo
  1122. * via vxge_hw_fifo_txdl_post().The %host_control is returned as is
  1123. * to the driver with each completed descriptor.
  1124. *
  1125. * Transmit descriptor (TxD).Fifo descriptor contains configured number
  1126. * (list) of TxDs. * For more details please refer to Titan User Guide,
  1127. * Section 5.4.2 "Transmit Descriptor (TxD) Format".
  1128. */
  1129. struct vxge_hw_fifo_txd {
  1130. u64 control_0;
  1131. #define VXGE_HW_FIFO_TXD_LIST_OWN_ADAPTER vxge_mBIT(7)
  1132. #define VXGE_HW_FIFO_TXD_T_CODE_GET(ctrl0) vxge_bVALn(ctrl0, 12, 4)
  1133. #define VXGE_HW_FIFO_TXD_T_CODE(val) vxge_vBIT(val, 12, 4)
  1134. #define VXGE_HW_FIFO_TXD_T_CODE_UNUSED VXGE_HW_FIFO_T_CODE_UNUSED
  1135. #define VXGE_HW_FIFO_TXD_GATHER_CODE(val) vxge_vBIT(val, 22, 2)
  1136. #define VXGE_HW_FIFO_TXD_GATHER_CODE_FIRST VXGE_HW_FIFO_GATHER_CODE_FIRST
  1137. #define VXGE_HW_FIFO_TXD_GATHER_CODE_LAST VXGE_HW_FIFO_GATHER_CODE_LAST
  1138. #define VXGE_HW_FIFO_TXD_LSO_EN vxge_mBIT(30)
  1139. #define VXGE_HW_FIFO_TXD_LSO_MSS(val) vxge_vBIT(val, 34, 14)
  1140. #define VXGE_HW_FIFO_TXD_BUFFER_SIZE(val) vxge_vBIT(val, 48, 16)
  1141. u64 control_1;
  1142. #define VXGE_HW_FIFO_TXD_TX_CKO_IPV4_EN vxge_mBIT(5)
  1143. #define VXGE_HW_FIFO_TXD_TX_CKO_TCP_EN vxge_mBIT(6)
  1144. #define VXGE_HW_FIFO_TXD_TX_CKO_UDP_EN vxge_mBIT(7)
  1145. #define VXGE_HW_FIFO_TXD_VLAN_ENABLE vxge_mBIT(15)
  1146. #define VXGE_HW_FIFO_TXD_VLAN_TAG(val) vxge_vBIT(val, 16, 16)
  1147. #define VXGE_HW_FIFO_TXD_INT_NUMBER(val) vxge_vBIT(val, 34, 6)
  1148. #define VXGE_HW_FIFO_TXD_INT_TYPE_PER_LIST vxge_mBIT(46)
  1149. #define VXGE_HW_FIFO_TXD_INT_TYPE_UTILZ vxge_mBIT(47)
  1150. u64 buffer_pointer;
  1151. u64 host_control;
  1152. };
  1153. /**
  1154. * struct vxge_hw_ring_rxd_1 - One buffer mode RxD for ring
  1155. * @host_control: This field is exclusively for host use and is "readonly"
  1156. * from the adapter's perspective.
  1157. * @control_0:Bits 0 to 6 - RTH_Bucket get
  1158. * Bit 7 - Own Descriptor ownership bit. This bit is set to 1
  1159. * by the host, and is set to 0 by the adapter.
  1160. * 0 - Host owns RxD and buffer.
  1161. * 1 - The adapter owns RxD and buffer.
  1162. * Bit 8 - Fast_Path_Eligible When set, indicates that the
  1163. * received frame meets all of the criteria for fast path processing.
  1164. * The required criteria are as follows:
  1165. * !SYN &
  1166. * (Transfer_Code == "Transfer OK") &
  1167. * (!Is_IP_Fragment) &
  1168. * ((Is_IPv4 & computed_L3_checksum == 0xFFFF) |
  1169. * (Is_IPv6)) &
  1170. * ((Is_TCP & computed_L4_checksum == 0xFFFF) |
  1171. * (Is_UDP & (computed_L4_checksum == 0xFFFF |
  1172. * computed _L4_checksum == 0x0000)))
  1173. * (same meaning for all RxD buffer modes)
  1174. * Bit 9 - L3 Checksum Correct
  1175. * Bit 10 - L4 Checksum Correct
  1176. * Bit 11 - Reserved
  1177. * Bit 12 to 15 - This field is written by the adapter. It is
  1178. * used to report the status of the frame transfer to the host.
  1179. * 0x0 - Transfer OK
  1180. * 0x4 - RDA Failure During Transfer
  1181. * 0x5 - Unparseable Packet, such as unknown IPv6 header.
  1182. * 0x6 - Frame integrity error (FCS or ECC).
  1183. * 0x7 - Buffer Size Error. The provided buffer(s) were not
  1184. * appropriately sized and data loss occurred.
  1185. * 0x8 - Internal ECC Error. RxD corrupted.
  1186. * 0x9 - IPv4 Checksum error
  1187. * 0xA - TCP/UDP Checksum error
  1188. * 0xF - Unknown Error or Multiple Error. Indicates an
  1189. * unknown problem or that more than one of transfer codes is set.
  1190. * Bit 16 - SYN The adapter sets this field to indicate that
  1191. * the incoming frame contained a TCP segment with its SYN bit
  1192. * set and its ACK bit NOT set. (same meaning for all RxD buffer
  1193. * modes)
  1194. * Bit 17 - Is ICMP
  1195. * Bit 18 - RTH_SPDM_HIT Set to 1 if there was a match in the
  1196. * Socket Pair Direct Match Table and the frame was steered based
  1197. * on SPDM.
  1198. * Bit 19 - RTH_IT_HIT Set to 1 if there was a match in the
  1199. * Indirection Table and the frame was steered based on hash
  1200. * indirection.
  1201. * Bit 20 to 23 - RTH_HASH_TYPE Indicates the function (hash
  1202. * type) that was used to calculate the hash.
  1203. * Bit 19 - IS_VLAN Set to '1' if the frame was/is VLAN
  1204. * tagged.
  1205. * Bit 25 to 26 - ETHER_ENCAP Reflects the Ethernet encapsulation
  1206. * of the received frame.
  1207. * 0x0 - Ethernet DIX
  1208. * 0x1 - LLC
  1209. * 0x2 - SNAP (includes Jumbo-SNAP)
  1210. * 0x3 - IPX
  1211. * Bit 27 - IS_IPV4 Set to '1' if the frame contains an IPv4 packet.
  1212. * Bit 28 - IS_IPV6 Set to '1' if the frame contains an IPv6 packet.
  1213. * Bit 29 - IS_IP_FRAG Set to '1' if the frame contains a fragmented
  1214. * IP packet.
  1215. * Bit 30 - IS_TCP Set to '1' if the frame contains a TCP segment.
  1216. * Bit 31 - IS_UDP Set to '1' if the frame contains a UDP message.
  1217. * Bit 32 to 47 - L3_Checksum[0:15] The IPv4 checksum value that
  1218. * arrived with the frame. If the resulting computed IPv4 header
  1219. * checksum for the frame did not produce the expected 0xFFFF value,
  1220. * then the transfer code would be set to 0x9.
  1221. * Bit 48 to 63 - L4_Checksum[0:15] The TCP/UDP checksum value that
  1222. * arrived with the frame. If the resulting computed TCP/UDP checksum
  1223. * for the frame did not produce the expected 0xFFFF value, then the
  1224. * transfer code would be set to 0xA.
  1225. * @control_1:Bits 0 to 1 - Reserved
  1226. * Bits 2 to 15 - Buffer0_Size.This field is set by the host and
  1227. * eventually overwritten by the adapter. The host writes the
  1228. * available buffer size in bytes when it passes the descriptor to
  1229. * the adapter. When a frame is delivered the host, the adapter
  1230. * populates this field with the number of bytes written into the
  1231. * buffer. The largest supported buffer is 16, 383 bytes.
  1232. * Bit 16 to 47 - RTH Hash Value 32-bit RTH hash value. Only valid if
  1233. * RTH_HASH_TYPE (Control_0, bits 20:23) is nonzero.
  1234. * Bit 48 to 63 - VLAN_Tag[0:15] The contents of the variable portion
  1235. * of the VLAN tag, if one was detected by the adapter. This field is
  1236. * populated even if VLAN-tag stripping is enabled.
  1237. * @buffer0_ptr: Pointer to buffer. This field is populated by the driver.
  1238. *
  1239. * One buffer mode RxD for ring structure
  1240. */
  1241. struct vxge_hw_ring_rxd_1 {
  1242. u64 host_control;
  1243. u64 control_0;
  1244. #define VXGE_HW_RING_RXD_RTH_BUCKET_GET(ctrl0) vxge_bVALn(ctrl0, 0, 7)
  1245. #define VXGE_HW_RING_RXD_LIST_OWN_ADAPTER vxge_mBIT(7)
  1246. #define VXGE_HW_RING_RXD_FAST_PATH_ELIGIBLE_GET(ctrl0) vxge_bVALn(ctrl0, 8, 1)
  1247. #define VXGE_HW_RING_RXD_L3_CKSUM_CORRECT_GET(ctrl0) vxge_bVALn(ctrl0, 9, 1)
  1248. #define VXGE_HW_RING_RXD_L4_CKSUM_CORRECT_GET(ctrl0) vxge_bVALn(ctrl0, 10, 1)
  1249. #define VXGE_HW_RING_RXD_T_CODE_GET(ctrl0) vxge_bVALn(ctrl0, 12, 4)
  1250. #define VXGE_HW_RING_RXD_T_CODE(val) vxge_vBIT(val, 12, 4)
  1251. #define VXGE_HW_RING_RXD_T_CODE_UNUSED VXGE_HW_RING_T_CODE_UNUSED
  1252. #define VXGE_HW_RING_RXD_SYN_GET(ctrl0) vxge_bVALn(ctrl0, 16, 1)
  1253. #define VXGE_HW_RING_RXD_IS_ICMP_GET(ctrl0) vxge_bVALn(ctrl0, 17, 1)
  1254. #define VXGE_HW_RING_RXD_RTH_SPDM_HIT_GET(ctrl0) vxge_bVALn(ctrl0, 18, 1)
  1255. #define VXGE_HW_RING_RXD_RTH_IT_HIT_GET(ctrl0) vxge_bVALn(ctrl0, 19, 1)
  1256. #define VXGE_HW_RING_RXD_RTH_HASH_TYPE_GET(ctrl0) vxge_bVALn(ctrl0, 20, 4)
  1257. #define VXGE_HW_RING_RXD_IS_VLAN_GET(ctrl0) vxge_bVALn(ctrl0, 24, 1)
  1258. #define VXGE_HW_RING_RXD_ETHER_ENCAP_GET(ctrl0) vxge_bVALn(ctrl0, 25, 2)
  1259. #define VXGE_HW_RING_RXD_FRAME_PROTO_GET(ctrl0) vxge_bVALn(ctrl0, 27, 5)
  1260. #define VXGE_HW_RING_RXD_L3_CKSUM_GET(ctrl0) vxge_bVALn(ctrl0, 32, 16)
  1261. #define VXGE_HW_RING_RXD_L4_CKSUM_GET(ctrl0) vxge_bVALn(ctrl0, 48, 16)
  1262. u64 control_1;
  1263. #define VXGE_HW_RING_RXD_1_BUFFER0_SIZE_GET(ctrl1) vxge_bVALn(ctrl1, 2, 14)
  1264. #define VXGE_HW_RING_RXD_1_BUFFER0_SIZE(val) vxge_vBIT(val, 2, 14)
  1265. #define VXGE_HW_RING_RXD_1_BUFFER0_SIZE_MASK vxge_vBIT(0x3FFF, 2, 14)
  1266. #define VXGE_HW_RING_RXD_1_RTH_HASH_VAL_GET(ctrl1) vxge_bVALn(ctrl1, 16, 32)
  1267. #define VXGE_HW_RING_RXD_VLAN_TAG_GET(ctrl1) vxge_bVALn(ctrl1, 48, 16)
  1268. u64 buffer0_ptr;
  1269. };
  1270. enum vxge_hw_rth_algoritms {
  1271. RTH_ALG_JENKINS = 0,
  1272. RTH_ALG_MS_RSS = 1,
  1273. RTH_ALG_CRC32C = 2
  1274. };
  1275. /**
  1276. * struct vxge_hw_rth_hash_types - RTH hash types.
  1277. * @hash_type_tcpipv4_en: Enables RTH field type HashTypeTcpIPv4
  1278. * @hash_type_ipv4_en: Enables RTH field type HashTypeIPv4
  1279. * @hash_type_tcpipv6_en: Enables RTH field type HashTypeTcpIPv6
  1280. * @hash_type_ipv6_en: Enables RTH field type HashTypeIPv6
  1281. * @hash_type_tcpipv6ex_en: Enables RTH field type HashTypeTcpIPv6Ex
  1282. * @hash_type_ipv6ex_en: Enables RTH field type HashTypeIPv6Ex
  1283. *
  1284. * Used to pass RTH hash types to rts_rts_set.
  1285. *
  1286. * See also: vxge_hw_vpath_rts_rth_set(), vxge_hw_vpath_rts_rth_get().
  1287. */
  1288. struct vxge_hw_rth_hash_types {
  1289. u8 hash_type_tcpipv4_en;
  1290. u8 hash_type_ipv4_en;
  1291. u8 hash_type_tcpipv6_en;
  1292. u8 hash_type_ipv6_en;
  1293. u8 hash_type_tcpipv6ex_en;
  1294. u8 hash_type_ipv6ex_en;
  1295. };
  1296. u32
  1297. vxge_hw_device_debug_mask_get(struct __vxge_hw_device *devh);
  1298. void vxge_hw_device_debug_set(
  1299. struct __vxge_hw_device *devh,
  1300. enum vxge_debug_level level,
  1301. u32 mask);
  1302. u32
  1303. vxge_hw_device_error_level_get(struct __vxge_hw_device *devh);
  1304. u32
  1305. vxge_hw_device_trace_level_get(struct __vxge_hw_device *devh);
  1306. u32
  1307. vxge_hw_device_debug_mask_get(struct __vxge_hw_device *devh);
  1308. /**
  1309. * vxge_hw_ring_rxd_size_get - Get the size of ring descriptor.
  1310. * @buf_mode: Buffer mode (1, 3 or 5)
  1311. *
  1312. * This function returns the size of RxD for given buffer mode
  1313. */
  1314. static inline u32 vxge_hw_ring_rxd_size_get(u32 buf_mode)
  1315. {
  1316. return sizeof(struct vxge_hw_ring_rxd_1);
  1317. }
  1318. /**
  1319. * vxge_hw_ring_rxds_per_block_get - Get the number of rxds per block.
  1320. * @buf_mode: Buffer mode (1 buffer mode only)
  1321. *
  1322. * This function returns the number of RxD for RxD block for given buffer mode
  1323. */
  1324. static inline u32 vxge_hw_ring_rxds_per_block_get(u32 buf_mode)
  1325. {
  1326. return (u32)((VXGE_HW_BLOCK_SIZE-16) /
  1327. sizeof(struct vxge_hw_ring_rxd_1));
  1328. }
  1329. /**
  1330. * vxge_hw_ring_rxd_1b_set - Prepare 1-buffer-mode descriptor.
  1331. * @rxdh: Descriptor handle.
  1332. * @dma_pointer: DMA address of a single receive buffer this descriptor
  1333. * should carry. Note that by the time vxge_hw_ring_rxd_1b_set is called,
  1334. * the receive buffer should be already mapped to the device
  1335. * @size: Size of the receive @dma_pointer buffer.
  1336. *
  1337. * Prepare 1-buffer-mode Rx descriptor for posting
  1338. * (via vxge_hw_ring_rxd_post()).
  1339. *
  1340. * This inline helper-function does not return any parameters and always
  1341. * succeeds.
  1342. *
  1343. */
  1344. static inline
  1345. void vxge_hw_ring_rxd_1b_set(
  1346. void *rxdh,
  1347. dma_addr_t dma_pointer,
  1348. u32 size)
  1349. {
  1350. struct vxge_hw_ring_rxd_1 *rxdp = (struct vxge_hw_ring_rxd_1 *)rxdh;
  1351. rxdp->buffer0_ptr = dma_pointer;
  1352. rxdp->control_1 &= ~VXGE_HW_RING_RXD_1_BUFFER0_SIZE_MASK;
  1353. rxdp->control_1 |= VXGE_HW_RING_RXD_1_BUFFER0_SIZE(size);
  1354. }
  1355. /**
  1356. * vxge_hw_ring_rxd_1b_get - Get data from the completed 1-buf
  1357. * descriptor.
  1358. * @vpath_handle: Virtual Path handle.
  1359. * @rxdh: Descriptor handle.
  1360. * @dma_pointer: DMA address of a single receive buffer this descriptor
  1361. * carries. Returned by HW.
  1362. * @pkt_length: Length (in bytes) of the data in the buffer pointed by
  1363. *
  1364. * Retrieve protocol data from the completed 1-buffer-mode Rx descriptor.
  1365. * This inline helper-function uses completed descriptor to populate receive
  1366. * buffer pointer and other "out" parameters. The function always succeeds.
  1367. *
  1368. */
  1369. static inline
  1370. void vxge_hw_ring_rxd_1b_get(
  1371. struct __vxge_hw_ring *ring_handle,
  1372. void *rxdh,
  1373. u32 *pkt_length)
  1374. {
  1375. struct vxge_hw_ring_rxd_1 *rxdp = (struct vxge_hw_ring_rxd_1 *)rxdh;
  1376. *pkt_length =
  1377. (u32)VXGE_HW_RING_RXD_1_BUFFER0_SIZE_GET(rxdp->control_1);
  1378. }
  1379. /**
  1380. * vxge_hw_ring_rxd_1b_info_get - Get extended information associated with
  1381. * a completed receive descriptor for 1b mode.
  1382. * @vpath_handle: Virtual Path handle.
  1383. * @rxdh: Descriptor handle.
  1384. * @rxd_info: Descriptor information
  1385. *
  1386. * Retrieve extended information associated with a completed receive descriptor.
  1387. *
  1388. */
  1389. static inline
  1390. void vxge_hw_ring_rxd_1b_info_get(
  1391. struct __vxge_hw_ring *ring_handle,
  1392. void *rxdh,
  1393. struct vxge_hw_ring_rxd_info *rxd_info)
  1394. {
  1395. struct vxge_hw_ring_rxd_1 *rxdp = (struct vxge_hw_ring_rxd_1 *)rxdh;
  1396. rxd_info->syn_flag =
  1397. (u32)VXGE_HW_RING_RXD_SYN_GET(rxdp->control_0);
  1398. rxd_info->is_icmp =
  1399. (u32)VXGE_HW_RING_RXD_IS_ICMP_GET(rxdp->control_0);
  1400. rxd_info->fast_path_eligible =
  1401. (u32)VXGE_HW_RING_RXD_FAST_PATH_ELIGIBLE_GET(rxdp->control_0);
  1402. rxd_info->l3_cksum_valid =
  1403. (u32)VXGE_HW_RING_RXD_L3_CKSUM_CORRECT_GET(rxdp->control_0);
  1404. rxd_info->l3_cksum =
  1405. (u32)VXGE_HW_RING_RXD_L3_CKSUM_GET(rxdp->control_0);
  1406. rxd_info->l4_cksum_valid =
  1407. (u32)VXGE_HW_RING_RXD_L4_CKSUM_CORRECT_GET(rxdp->control_0);
  1408. rxd_info->l4_cksum =
  1409. (u32)VXGE_HW_RING_RXD_L4_CKSUM_GET(rxdp->control_0);;
  1410. rxd_info->frame =
  1411. (u32)VXGE_HW_RING_RXD_ETHER_ENCAP_GET(rxdp->control_0);
  1412. rxd_info->proto =
  1413. (u32)VXGE_HW_RING_RXD_FRAME_PROTO_GET(rxdp->control_0);
  1414. rxd_info->is_vlan =
  1415. (u32)VXGE_HW_RING_RXD_IS_VLAN_GET(rxdp->control_0);
  1416. rxd_info->vlan =
  1417. (u32)VXGE_HW_RING_RXD_VLAN_TAG_GET(rxdp->control_1);
  1418. rxd_info->rth_bucket =
  1419. (u32)VXGE_HW_RING_RXD_RTH_BUCKET_GET(rxdp->control_0);
  1420. rxd_info->rth_it_hit =
  1421. (u32)VXGE_HW_RING_RXD_RTH_IT_HIT_GET(rxdp->control_0);
  1422. rxd_info->rth_spdm_hit =
  1423. (u32)VXGE_HW_RING_RXD_RTH_SPDM_HIT_GET(rxdp->control_0);
  1424. rxd_info->rth_hash_type =
  1425. (u32)VXGE_HW_RING_RXD_RTH_HASH_TYPE_GET(rxdp->control_0);
  1426. rxd_info->rth_value =
  1427. (u32)VXGE_HW_RING_RXD_1_RTH_HASH_VAL_GET(rxdp->control_1);
  1428. }
  1429. /**
  1430. * vxge_hw_ring_rxd_private_get - Get driver private per-descriptor data
  1431. * of 1b mode 3b mode ring.
  1432. * @rxdh: Descriptor handle.
  1433. *
  1434. * Returns: private driver info associated with the descriptor.
  1435. * driver requests per-descriptor space via vxge_hw_ring_attr.
  1436. *
  1437. */
  1438. static inline void *vxge_hw_ring_rxd_private_get(void *rxdh)
  1439. {
  1440. struct vxge_hw_ring_rxd_1 *rxdp = (struct vxge_hw_ring_rxd_1 *)rxdh;
  1441. return (void *)(size_t)rxdp->host_control;
  1442. }
  1443. /**
  1444. * vxge_hw_fifo_txdl_cksum_set_bits - Offload checksum.
  1445. * @txdlh: Descriptor handle.
  1446. * @cksum_bits: Specifies which checksums are to be offloaded: IPv4,
  1447. * and/or TCP and/or UDP.
  1448. *
  1449. * Ask Titan to calculate IPv4 & transport checksums for _this_ transmit
  1450. * descriptor.
  1451. * This API is part of the preparation of the transmit descriptor for posting
  1452. * (via vxge_hw_fifo_txdl_post()). The related "preparation" APIs include
  1453. * vxge_hw_fifo_txdl_mss_set(), vxge_hw_fifo_txdl_buffer_set_aligned(),
  1454. * and vxge_hw_fifo_txdl_buffer_set().
  1455. * All these APIs fill in the fields of the fifo descriptor,
  1456. * in accordance with the Titan specification.
  1457. *
  1458. */
  1459. static inline void vxge_hw_fifo_txdl_cksum_set_bits(void *txdlh, u64 cksum_bits)
  1460. {
  1461. struct vxge_hw_fifo_txd *txdp = (struct vxge_hw_fifo_txd *)txdlh;
  1462. txdp->control_1 |= cksum_bits;
  1463. }
  1464. /**
  1465. * vxge_hw_fifo_txdl_mss_set - Set MSS.
  1466. * @txdlh: Descriptor handle.
  1467. * @mss: MSS size for _this_ TCP connection. Passed by TCP stack down to the
  1468. * driver, which in turn inserts the MSS into the @txdlh.
  1469. *
  1470. * This API is part of the preparation of the transmit descriptor for posting
  1471. * (via vxge_hw_fifo_txdl_post()). The related "preparation" APIs include
  1472. * vxge_hw_fifo_txdl_buffer_set(), vxge_hw_fifo_txdl_buffer_set_aligned(),
  1473. * and vxge_hw_fifo_txdl_cksum_set_bits().
  1474. * All these APIs fill in the fields of the fifo descriptor,
  1475. * in accordance with the Titan specification.
  1476. *
  1477. */
  1478. static inline void vxge_hw_fifo_txdl_mss_set(void *txdlh, int mss)
  1479. {
  1480. struct vxge_hw_fifo_txd *txdp = (struct vxge_hw_fifo_txd *)txdlh;
  1481. txdp->control_0 |= VXGE_HW_FIFO_TXD_LSO_EN;
  1482. txdp->control_0 |= VXGE_HW_FIFO_TXD_LSO_MSS(mss);
  1483. }
  1484. /**
  1485. * vxge_hw_fifo_txdl_vlan_set - Set VLAN tag.
  1486. * @txdlh: Descriptor handle.
  1487. * @vlan_tag: 16bit VLAN tag.
  1488. *
  1489. * Insert VLAN tag into specified transmit descriptor.
  1490. * The actual insertion of the tag into outgoing frame is done by the hardware.
  1491. */
  1492. static inline void vxge_hw_fifo_txdl_vlan_set(void *txdlh, u16 vlan_tag)
  1493. {
  1494. struct vxge_hw_fifo_txd *txdp = (struct vxge_hw_fifo_txd *)txdlh;
  1495. txdp->control_1 |= VXGE_HW_FIFO_TXD_VLAN_ENABLE;
  1496. txdp->control_1 |= VXGE_HW_FIFO_TXD_VLAN_TAG(vlan_tag);
  1497. }
  1498. /**
  1499. * vxge_hw_fifo_txdl_private_get - Retrieve per-descriptor private data.
  1500. * @txdlh: Descriptor handle.
  1501. *
  1502. * Retrieve per-descriptor private data.
  1503. * Note that driver requests per-descriptor space via
  1504. * struct vxge_hw_fifo_attr passed to
  1505. * vxge_hw_vpath_open().
  1506. *
  1507. * Returns: private driver data associated with the descriptor.
  1508. */
  1509. static inline void *vxge_hw_fifo_txdl_private_get(void *txdlh)
  1510. {
  1511. struct vxge_hw_fifo_txd *txdp = (struct vxge_hw_fifo_txd *)txdlh;
  1512. return (void *)(size_t)txdp->host_control;
  1513. }
  1514. /**
  1515. * struct vxge_hw_ring_attr - Ring open "template".
  1516. * @callback: Ring completion callback. HW invokes the callback when there
  1517. * are new completions on that ring. In many implementations
  1518. * the @callback executes in the hw interrupt context.
  1519. * @rxd_init: Ring's descriptor-initialize callback.
  1520. * See vxge_hw_ring_rxd_init_f{}.
  1521. * If not NULL, HW invokes the callback when opening
  1522. * the ring.
  1523. * @rxd_term: Ring's descriptor-terminate callback. If not NULL,
  1524. * HW invokes the callback when closing the corresponding ring.
  1525. * See also vxge_hw_ring_rxd_term_f{}.
  1526. * @userdata: User-defined "context" of _that_ ring. Passed back to the
  1527. * user as one of the @callback, @rxd_init, and @rxd_term arguments.
  1528. * @per_rxd_space: If specified (i.e., greater than zero): extra space
  1529. * reserved by HW per each receive descriptor.
  1530. * Can be used to store
  1531. * and retrieve on completion, information specific
  1532. * to the driver.
  1533. *
  1534. * Ring open "template". User fills the structure with ring
  1535. * attributes and passes it to vxge_hw_vpath_open().
  1536. */
  1537. struct vxge_hw_ring_attr {
  1538. enum vxge_hw_status (*callback)(
  1539. struct __vxge_hw_ring *ringh,
  1540. void *rxdh,
  1541. u8 t_code,
  1542. void *userdata);
  1543. enum vxge_hw_status (*rxd_init)(
  1544. void *rxdh,
  1545. void *userdata);
  1546. void (*rxd_term)(
  1547. void *rxdh,
  1548. enum vxge_hw_rxd_state state,
  1549. void *userdata);
  1550. void *userdata;
  1551. u32 per_rxd_space;
  1552. };
  1553. /**
  1554. * function vxge_hw_fifo_callback_f - FIFO callback.
  1555. * @vpath_handle: Virtual path whose Fifo "containing" 1 or more completed
  1556. * descriptors.
  1557. * @txdlh: First completed descriptor.
  1558. * @txdl_priv: Pointer to per txdl space allocated
  1559. * @t_code: Transfer code, as per Titan User Guide.
  1560. * Returned by HW.
  1561. * @host_control: Opaque 64bit data stored by driver inside the Titan
  1562. * descriptor prior to posting the latter on the fifo
  1563. * via vxge_hw_fifo_txdl_post(). The @host_control is returned
  1564. * as is to the driver with each completed descriptor.
  1565. * @userdata: Opaque per-fifo data specified at fifo open
  1566. * time, via vxge_hw_vpath_open().
  1567. *
  1568. * Fifo completion callback (type declaration). A single per-fifo
  1569. * callback is specified at fifo open time, via
  1570. * vxge_hw_vpath_open(). Typically gets called as part of the processing
  1571. * of the Interrupt Service Routine.
  1572. *
  1573. * Fifo callback gets called by HW if, and only if, there is at least
  1574. * one new completion on a given fifo. Upon processing the first @txdlh driver
  1575. * is _supposed_ to continue consuming completions using:
  1576. * - vxge_hw_fifo_txdl_next_completed()
  1577. *
  1578. * Note that failure to process new completions in a timely fashion
  1579. * leads to VXGE_HW_INF_OUT_OF_DESCRIPTORS condition.
  1580. *
  1581. * Non-zero @t_code means failure to process transmit descriptor.
  1582. *
  1583. * In the "transmit" case the failure could happen, for instance, when the
  1584. * link is down, in which case Titan completes the descriptor because it
  1585. * is not able to send the data out.
  1586. *
  1587. * For details please refer to Titan User Guide.
  1588. *
  1589. * See also: vxge_hw_fifo_txdl_next_completed(), vxge_hw_fifo_txdl_term_f{}.
  1590. */
  1591. /**
  1592. * function vxge_hw_fifo_txdl_term_f - Terminate descriptor callback.
  1593. * @txdlh: First completed descriptor.
  1594. * @txdl_priv: Pointer to per txdl space allocated
  1595. * @state: One of the enum vxge_hw_txdl_state{} enumerated states.
  1596. * @userdata: Per-fifo user data (a.k.a. context) specified at
  1597. * fifo open time, via vxge_hw_vpath_open().
  1598. *
  1599. * Terminate descriptor callback. Unless NULL is specified in the
  1600. * struct vxge_hw_fifo_attr{} structure passed to vxge_hw_vpath_open()),
  1601. * HW invokes the callback as part of closing fifo, prior to
  1602. * de-allocating the ring and associated data structures
  1603. * (including descriptors).
  1604. * driver should utilize the callback to (for instance) unmap
  1605. * and free DMA data buffers associated with the posted (state =
  1606. * VXGE_HW_TXDL_STATE_POSTED) descriptors,
  1607. * as well as other relevant cleanup functions.
  1608. *
  1609. * See also: struct vxge_hw_fifo_attr{}
  1610. */
  1611. /**
  1612. * struct vxge_hw_fifo_attr - Fifo open "template".
  1613. * @callback: Fifo completion callback. HW invokes the callback when there
  1614. * are new completions on that fifo. In many implementations
  1615. * the @callback executes in the hw interrupt context.
  1616. * @txdl_term: Fifo's descriptor-terminate callback. If not NULL,
  1617. * HW invokes the callback when closing the corresponding fifo.
  1618. * See also vxge_hw_fifo_txdl_term_f{}.
  1619. * @userdata: User-defined "context" of _that_ fifo. Passed back to the
  1620. * user as one of the @callback, and @txdl_term arguments.
  1621. * @per_txdl_space: If specified (i.e., greater than zero): extra space
  1622. * reserved by HW per each transmit descriptor. Can be used to
  1623. * store, and retrieve on completion, information specific
  1624. * to the driver.
  1625. *
  1626. * Fifo open "template". User fills the structure with fifo
  1627. * attributes and passes it to vxge_hw_vpath_open().
  1628. */
  1629. struct vxge_hw_fifo_attr {
  1630. enum vxge_hw_status (*callback)(
  1631. struct __vxge_hw_fifo *fifo_handle,
  1632. void *txdlh,
  1633. enum vxge_hw_fifo_tcode t_code,
  1634. void *userdata,
  1635. void **skb_ptr);
  1636. void (*txdl_term)(
  1637. void *txdlh,
  1638. enum vxge_hw_txdl_state state,
  1639. void *userdata);
  1640. void *userdata;
  1641. u32 per_txdl_space;
  1642. };
  1643. /**
  1644. * struct vxge_hw_vpath_attr - Attributes of virtual path
  1645. * @vp_id: Identifier of Virtual Path
  1646. * @ring_attr: Attributes of ring for non-offload receive
  1647. * @fifo_attr: Attributes of fifo for non-offload transmit
  1648. *
  1649. * Attributes of virtual path. This structure is passed as parameter
  1650. * to the vxge_hw_vpath_open() routine to set the attributes of ring and fifo.
  1651. */
  1652. struct vxge_hw_vpath_attr {
  1653. u32 vp_id;
  1654. struct vxge_hw_ring_attr ring_attr;
  1655. struct vxge_hw_fifo_attr fifo_attr;
  1656. };
  1657. enum vxge_hw_status
  1658. __vxge_hw_blockpool_create(struct __vxge_hw_device *hldev,
  1659. struct __vxge_hw_blockpool *blockpool,
  1660. u32 pool_size,
  1661. u32 pool_max);
  1662. void
  1663. __vxge_hw_blockpool_destroy(struct __vxge_hw_blockpool *blockpool);
  1664. struct __vxge_hw_blockpool_entry *
  1665. __vxge_hw_blockpool_block_allocate(struct __vxge_hw_device *hldev,
  1666. u32 size);
  1667. void
  1668. __vxge_hw_blockpool_block_free(struct __vxge_hw_device *hldev,
  1669. struct __vxge_hw_blockpool_entry *entry);
  1670. void *
  1671. __vxge_hw_blockpool_malloc(struct __vxge_hw_device *hldev,
  1672. u32 size,
  1673. struct vxge_hw_mempool_dma *dma_object);
  1674. void
  1675. __vxge_hw_blockpool_free(struct __vxge_hw_device *hldev,
  1676. void *memblock,
  1677. u32 size,
  1678. struct vxge_hw_mempool_dma *dma_object);
  1679. enum vxge_hw_status
  1680. __vxge_hw_device_fifo_config_check(struct vxge_hw_fifo_config *fifo_config);
  1681. enum vxge_hw_status
  1682. __vxge_hw_device_config_check(struct vxge_hw_device_config *new_config);
  1683. enum vxge_hw_status
  1684. vxge_hw_mgmt_device_config(struct __vxge_hw_device *devh,
  1685. struct vxge_hw_device_config *dev_config, int size);
  1686. enum vxge_hw_status __devinit vxge_hw_device_hw_info_get(
  1687. void __iomem *bar0,
  1688. struct vxge_hw_device_hw_info *hw_info);
  1689. enum vxge_hw_status
  1690. __vxge_hw_vpath_fw_ver_get(
  1691. u32 vp_id,
  1692. struct vxge_hw_vpath_reg __iomem *vpath_reg,
  1693. struct vxge_hw_device_hw_info *hw_info);
  1694. enum vxge_hw_status
  1695. __vxge_hw_vpath_card_info_get(
  1696. u32 vp_id,
  1697. struct vxge_hw_vpath_reg __iomem *vpath_reg,
  1698. struct vxge_hw_device_hw_info *hw_info);
  1699. enum vxge_hw_status __devinit vxge_hw_device_config_default_get(
  1700. struct vxge_hw_device_config *device_config);
  1701. /**
  1702. * vxge_hw_device_link_state_get - Get link state.
  1703. * @devh: HW device handle.
  1704. *
  1705. * Get link state.
  1706. * Returns: link state.
  1707. */
  1708. static inline
  1709. enum vxge_hw_device_link_state vxge_hw_device_link_state_get(
  1710. struct __vxge_hw_device *devh)
  1711. {
  1712. return devh->link_state;
  1713. }
  1714. void vxge_hw_device_terminate(struct __vxge_hw_device *devh);
  1715. const u8 *
  1716. vxge_hw_device_serial_number_get(struct __vxge_hw_device *devh);
  1717. u16 vxge_hw_device_link_width_get(struct __vxge_hw_device *devh);
  1718. const u8 *
  1719. vxge_hw_device_product_name_get(struct __vxge_hw_device *devh);
  1720. enum vxge_hw_status __devinit vxge_hw_device_initialize(
  1721. struct __vxge_hw_device **devh,
  1722. struct vxge_hw_device_attr *attr,
  1723. struct vxge_hw_device_config *device_config);
  1724. enum vxge_hw_status vxge_hw_device_getpause_data(
  1725. struct __vxge_hw_device *devh,
  1726. u32 port,
  1727. u32 *tx,
  1728. u32 *rx);
  1729. enum vxge_hw_status vxge_hw_device_setpause_data(
  1730. struct __vxge_hw_device *devh,
  1731. u32 port,
  1732. u32 tx,
  1733. u32 rx);
  1734. static inline void *vxge_os_dma_malloc(struct pci_dev *pdev,
  1735. unsigned long size,
  1736. struct pci_dev **p_dmah,
  1737. struct pci_dev **p_dma_acch)
  1738. {
  1739. gfp_t flags;
  1740. void *vaddr;
  1741. unsigned long misaligned = 0;
  1742. *p_dma_acch = *p_dmah = NULL;
  1743. if (in_interrupt())
  1744. flags = GFP_ATOMIC | GFP_DMA;
  1745. else
  1746. flags = GFP_KERNEL | GFP_DMA;
  1747. size += VXGE_CACHE_LINE_SIZE;
  1748. vaddr = kmalloc((size), flags);
  1749. if (vaddr == NULL)
  1750. return vaddr;
  1751. misaligned = (unsigned long)VXGE_ALIGN(*((u64 *)&vaddr),
  1752. VXGE_CACHE_LINE_SIZE);
  1753. *(unsigned long *)p_dma_acch = misaligned;
  1754. vaddr = (void *)((u8 *)vaddr + misaligned);
  1755. return vaddr;
  1756. }
  1757. extern void vxge_hw_blockpool_block_add(
  1758. struct __vxge_hw_device *devh,
  1759. void *block_addr,
  1760. u32 length,
  1761. struct pci_dev *dma_h,
  1762. struct pci_dev *acc_handle);
  1763. static inline void vxge_os_dma_malloc_async(struct pci_dev *pdev, void *devh,
  1764. unsigned long size)
  1765. {
  1766. gfp_t flags;
  1767. void *vaddr;
  1768. if (in_interrupt())
  1769. flags = GFP_ATOMIC | GFP_DMA;
  1770. else
  1771. flags = GFP_KERNEL | GFP_DMA;
  1772. vaddr = kmalloc((size), flags);
  1773. vxge_hw_blockpool_block_add(devh, vaddr, size, pdev, pdev);
  1774. }
  1775. static inline void vxge_os_dma_free(struct pci_dev *pdev, const void *vaddr,
  1776. struct pci_dev **p_dma_acch)
  1777. {
  1778. unsigned long misaligned = *(unsigned long *)p_dma_acch;
  1779. u8 *tmp = (u8 *)vaddr;
  1780. tmp -= misaligned;
  1781. kfree((void *)tmp);
  1782. }
  1783. /*
  1784. * __vxge_hw_mempool_item_priv - will return pointer on per item private space
  1785. */
  1786. static inline void*
  1787. __vxge_hw_mempool_item_priv(
  1788. struct vxge_hw_mempool *mempool,
  1789. u32 memblock_idx,
  1790. void *item,
  1791. u32 *memblock_item_idx)
  1792. {
  1793. ptrdiff_t offset;
  1794. void *memblock = mempool->memblocks_arr[memblock_idx];
  1795. offset = (u32)((u8 *)item - (u8 *)memblock);
  1796. vxge_assert(offset >= 0 && (u32)offset < mempool->memblock_size);
  1797. (*memblock_item_idx) = (u32) offset / mempool->item_size;
  1798. vxge_assert((*memblock_item_idx) < mempool->items_per_memblock);
  1799. return (u8 *)mempool->memblocks_priv_arr[memblock_idx] +
  1800. (*memblock_item_idx) * mempool->items_priv_size;
  1801. }
  1802. enum vxge_hw_status
  1803. __vxge_hw_mempool_grow(
  1804. struct vxge_hw_mempool *mempool,
  1805. u32 num_allocate,
  1806. u32 *num_allocated);
  1807. struct vxge_hw_mempool*
  1808. __vxge_hw_mempool_create(
  1809. struct __vxge_hw_device *devh,
  1810. u32 memblock_size,
  1811. u32 item_size,
  1812. u32 private_size,
  1813. u32 items_initial,
  1814. u32 items_max,
  1815. struct vxge_hw_mempool_cbs *mp_callback,
  1816. void *userdata);
  1817. struct __vxge_hw_channel*
  1818. __vxge_hw_channel_allocate(struct __vxge_hw_vpath_handle *vph,
  1819. enum __vxge_hw_channel_type type, u32 length,
  1820. u32 per_dtr_space, void *userdata);
  1821. void
  1822. __vxge_hw_channel_free(
  1823. struct __vxge_hw_channel *channel);
  1824. enum vxge_hw_status
  1825. __vxge_hw_channel_initialize(
  1826. struct __vxge_hw_channel *channel);
  1827. enum vxge_hw_status
  1828. __vxge_hw_channel_reset(
  1829. struct __vxge_hw_channel *channel);
  1830. /*
  1831. * __vxge_hw_fifo_txdl_priv - Return the max fragments allocated
  1832. * for the fifo.
  1833. * @fifo: Fifo
  1834. * @txdp: Poniter to a TxD
  1835. */
  1836. static inline struct __vxge_hw_fifo_txdl_priv *
  1837. __vxge_hw_fifo_txdl_priv(
  1838. struct __vxge_hw_fifo *fifo,
  1839. struct vxge_hw_fifo_txd *txdp)
  1840. {
  1841. return (struct __vxge_hw_fifo_txdl_priv *)
  1842. (((char *)((ulong)txdp->host_control)) +
  1843. fifo->per_txdl_space);
  1844. }
  1845. enum vxge_hw_status vxge_hw_vpath_open(
  1846. struct __vxge_hw_device *devh,
  1847. struct vxge_hw_vpath_attr *attr,
  1848. struct __vxge_hw_vpath_handle **vpath_handle);
  1849. enum vxge_hw_status
  1850. __vxge_hw_device_vpath_reset_in_prog_check(u64 __iomem *vpath_rst_in_prog);
  1851. enum vxge_hw_status vxge_hw_vpath_close(
  1852. struct __vxge_hw_vpath_handle *vpath_handle);
  1853. enum vxge_hw_status
  1854. vxge_hw_vpath_reset(
  1855. struct __vxge_hw_vpath_handle *vpath_handle);
  1856. enum vxge_hw_status
  1857. vxge_hw_vpath_recover_from_reset(
  1858. struct __vxge_hw_vpath_handle *vpath_handle);
  1859. void
  1860. vxge_hw_vpath_enable(struct __vxge_hw_vpath_handle *vp);
  1861. enum vxge_hw_status
  1862. vxge_hw_vpath_check_leak(struct __vxge_hw_ring *ringh);
  1863. enum vxge_hw_status vxge_hw_vpath_mtu_set(
  1864. struct __vxge_hw_vpath_handle *vpath_handle,
  1865. u32 new_mtu);
  1866. enum vxge_hw_status vxge_hw_vpath_stats_enable(
  1867. struct __vxge_hw_vpath_handle *vpath_handle);
  1868. enum vxge_hw_status
  1869. __vxge_hw_vpath_stats_access(
  1870. struct __vxge_hw_virtualpath *vpath,
  1871. u32 operation,
  1872. u32 offset,
  1873. u64 *stat);
  1874. enum vxge_hw_status
  1875. __vxge_hw_vpath_xmac_tx_stats_get(
  1876. struct __vxge_hw_virtualpath *vpath,
  1877. struct vxge_hw_xmac_vpath_tx_stats *vpath_tx_stats);
  1878. enum vxge_hw_status
  1879. __vxge_hw_vpath_xmac_rx_stats_get(
  1880. struct __vxge_hw_virtualpath *vpath,
  1881. struct vxge_hw_xmac_vpath_rx_stats *vpath_rx_stats);
  1882. enum vxge_hw_status
  1883. __vxge_hw_vpath_stats_get(
  1884. struct __vxge_hw_virtualpath *vpath,
  1885. struct vxge_hw_vpath_stats_hw_info *hw_stats);
  1886. void
  1887. vxge_hw_vpath_rx_doorbell_init(struct __vxge_hw_vpath_handle *vp);
  1888. enum vxge_hw_status
  1889. __vxge_hw_device_vpath_config_check(struct vxge_hw_vp_config *vp_config);
  1890. void
  1891. __vxge_hw_device_pci_e_init(struct __vxge_hw_device *hldev);
  1892. enum vxge_hw_status
  1893. __vxge_hw_legacy_swapper_set(struct vxge_hw_legacy_reg __iomem *legacy_reg);
  1894. enum vxge_hw_status
  1895. __vxge_hw_vpath_swapper_set(struct vxge_hw_vpath_reg __iomem *vpath_reg);
  1896. enum vxge_hw_status
  1897. __vxge_hw_kdfc_swapper_set(struct vxge_hw_legacy_reg __iomem *legacy_reg,
  1898. struct vxge_hw_vpath_reg __iomem *vpath_reg);
  1899. enum vxge_hw_status
  1900. __vxge_hw_device_register_poll(
  1901. void __iomem *reg,
  1902. u64 mask, u32 max_millis);
  1903. #ifndef readq
  1904. static inline u64 readq(void __iomem *addr)
  1905. {
  1906. u64 ret = 0;
  1907. ret = readl(addr + 4);
  1908. ret <<= 32;
  1909. ret |= readl(addr);
  1910. return ret;
  1911. }
  1912. #endif
  1913. #ifndef writeq
  1914. static inline void writeq(u64 val, void __iomem *addr)
  1915. {
  1916. writel((u32) (val), addr);
  1917. writel((u32) (val >> 32), (addr + 4));
  1918. }
  1919. #endif
  1920. static inline void __vxge_hw_pio_mem_write32_upper(u32 val, void __iomem *addr)
  1921. {
  1922. writel(val, addr + 4);
  1923. }
  1924. static inline void __vxge_hw_pio_mem_write32_lower(u32 val, void __iomem *addr)
  1925. {
  1926. writel(val, addr);
  1927. }
  1928. static inline enum vxge_hw_status
  1929. __vxge_hw_pio_mem_write64(u64 val64, void __iomem *addr,
  1930. u64 mask, u32 max_millis)
  1931. {
  1932. enum vxge_hw_status status = VXGE_HW_OK;
  1933. __vxge_hw_pio_mem_write32_lower((u32)vxge_bVALn(val64, 32, 32), addr);
  1934. wmb();
  1935. __vxge_hw_pio_mem_write32_upper((u32)vxge_bVALn(val64, 0, 32), addr);
  1936. wmb();
  1937. status = __vxge_hw_device_register_poll(addr, mask, max_millis);
  1938. return status;
  1939. }
  1940. struct vxge_hw_toc_reg __iomem *
  1941. __vxge_hw_device_toc_get(void __iomem *bar0);
  1942. enum vxge_hw_status
  1943. __vxge_hw_device_reg_addr_get(struct __vxge_hw_device *hldev);
  1944. void
  1945. __vxge_hw_device_id_get(struct __vxge_hw_device *hldev);
  1946. void
  1947. __vxge_hw_device_host_info_get(struct __vxge_hw_device *hldev);
  1948. enum vxge_hw_status
  1949. vxge_hw_device_flick_link_led(struct __vxge_hw_device *devh, u64 on_off);
  1950. enum vxge_hw_status
  1951. __vxge_hw_device_initialize(struct __vxge_hw_device *hldev);
  1952. enum vxge_hw_status
  1953. __vxge_hw_vpath_pci_read(
  1954. struct __vxge_hw_virtualpath *vpath,
  1955. u32 phy_func_0,
  1956. u32 offset,
  1957. u32 *val);
  1958. enum vxge_hw_status
  1959. __vxge_hw_vpath_addr_get(
  1960. u32 vp_id,
  1961. struct vxge_hw_vpath_reg __iomem *vpath_reg,
  1962. u8 (macaddr)[ETH_ALEN],
  1963. u8 (macaddr_mask)[ETH_ALEN]);
  1964. u32
  1965. __vxge_hw_vpath_func_id_get(
  1966. u32 vp_id, struct vxge_hw_vpmgmt_reg __iomem *vpmgmt_reg);
  1967. enum vxge_hw_status
  1968. __vxge_hw_vpath_reset_check(struct __vxge_hw_virtualpath *vpath);
  1969. /**
  1970. * vxge_debug
  1971. * @level: level of debug verbosity.
  1972. * @mask: mask for the debug
  1973. * @buf: Circular buffer for tracing
  1974. * @fmt: printf like format string
  1975. *
  1976. * Provides logging facilities. Can be customized on per-module
  1977. * basis or/and with debug levels. Input parameters, except
  1978. * module and level, are the same as posix printf. This function
  1979. * may be compiled out if DEBUG macro was never defined.
  1980. * See also: enum vxge_debug_level{}.
  1981. */
  1982. #define vxge_trace_aux(level, mask, fmt, ...) \
  1983. {\
  1984. vxge_os_vaprintf(level, mask, fmt, __VA_ARGS__);\
  1985. }
  1986. #define vxge_debug(module, level, mask, fmt, ...) { \
  1987. if ((level >= VXGE_TRACE && ((module & VXGE_DEBUG_TRACE_MASK) == module)) || \
  1988. (level >= VXGE_ERR && ((module & VXGE_DEBUG_ERR_MASK) == module))) {\
  1989. if ((mask & VXGE_DEBUG_MASK) == mask)\
  1990. vxge_trace_aux(level, mask, fmt, __VA_ARGS__); \
  1991. } \
  1992. }
  1993. #if (VXGE_COMPONENT_LL & VXGE_DEBUG_MODULE_MASK)
  1994. #define vxge_debug_ll(level, mask, fmt, ...) \
  1995. {\
  1996. vxge_debug(VXGE_COMPONENT_LL, level, mask, fmt, __VA_ARGS__);\
  1997. }
  1998. #else
  1999. #define vxge_debug_ll(level, mask, fmt, ...)
  2000. #endif
  2001. enum vxge_hw_status vxge_hw_vpath_rts_rth_itable_set(
  2002. struct __vxge_hw_vpath_handle **vpath_handles,
  2003. u32 vpath_count,
  2004. u8 *mtable,
  2005. u8 *itable,
  2006. u32 itable_size);
  2007. enum vxge_hw_status vxge_hw_vpath_rts_rth_set(
  2008. struct __vxge_hw_vpath_handle *vpath_handle,
  2009. enum vxge_hw_rth_algoritms algorithm,
  2010. struct vxge_hw_rth_hash_types *hash_type,
  2011. u16 bucket_size);
  2012. #endif