qdf_nbuf.h 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304
  1. /*
  2. * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. /**
  27. * DOC: qdf_nbuf_public network buffer API
  28. * This file defines the network buffer abstraction.
  29. */
  30. #ifndef _QDF_NBUF_H
  31. #define _QDF_NBUF_H
  32. #include <qdf_util.h>
  33. #include <qdf_types.h>
  34. #include <qdf_lock.h>
  35. #include <i_qdf_nbuf.h>
  36. #include <i_qdf_trace.h>
  37. #include <qdf_net_types.h>
  38. #define IPA_NBUF_OWNER_ID 0xaa55aa55
  39. #define QDF_NBUF_PKT_TRAC_TYPE_EAPOL 0x02
  40. #define QDF_NBUF_PKT_TRAC_TYPE_DHCP 0x04
  41. #define QDF_NBUF_PKT_TRAC_TYPE_MGMT_ACTION 0x08
  42. #define QDF_NBUF_PKT_TRAC_MAX_STRING 12
  43. #define QDF_NBUF_PKT_TRAC_PROTO_STRING 4
  44. #define QDF_NBUF_PKT_ERROR 1
  45. /* Tracked Packet types */
  46. #define QDF_NBUF_TX_PKT_INVALID 0
  47. #define QDF_NBUF_TX_PKT_DATA_TRACK 1
  48. #define QDF_NBUF_TX_PKT_MGMT_TRACK 2
  49. /* Different Packet states */
  50. #define QDF_NBUF_TX_PKT_HDD 1
  51. #define QDF_NBUF_TX_PKT_TXRX_ENQUEUE 2
  52. #define QDF_NBUF_TX_PKT_TXRX_DEQUEUE 3
  53. #define QDF_NBUF_TX_PKT_TXRX 4
  54. #define QDF_NBUF_TX_PKT_HTT 5
  55. #define QDF_NBUF_TX_PKT_HTC 6
  56. #define QDF_NBUF_TX_PKT_HIF 7
  57. #define QDF_NBUF_TX_PKT_CE 8
  58. #define QDF_NBUF_TX_PKT_FREE 9
  59. #define QDF_NBUF_TX_PKT_STATE_MAX 10
  60. #define QDF_NBUF_IPA_CHECK_MASK 0x80000000
  61. /**
  62. * @qdf_nbuf_t - Platform indepedent packet abstraction
  63. */
  64. typedef __qdf_nbuf_t qdf_nbuf_t;
  65. /**
  66. * @qdf_dma_map_cb_t - Dma map callback prototype
  67. */
  68. typedef void (*qdf_dma_map_cb_t)(void *arg, qdf_nbuf_t buf,
  69. qdf_dma_map_t dmap);
  70. /**
  71. * @qdf_nbuf_queue_t - Platform independent packet queue abstraction
  72. */
  73. typedef __qdf_nbuf_queue_t qdf_nbuf_queue_t;
  74. /* BUS/DMA mapping routines */
  75. static inline QDF_STATUS
  76. qdf_nbuf_dmamap_create(qdf_device_t osdev, qdf_dma_map_t *dmap)
  77. {
  78. return __qdf_nbuf_dmamap_create(osdev, dmap);
  79. }
  80. static inline void
  81. qdf_nbuf_dmamap_destroy(qdf_device_t osdev, qdf_dma_map_t dmap)
  82. {
  83. __qdf_nbuf_dmamap_destroy(osdev, dmap);
  84. }
  85. static inline void
  86. qdf_nbuf_dmamap_set_cb(qdf_dma_map_t dmap, qdf_dma_map_cb_t cb, void *arg)
  87. {
  88. __qdf_nbuf_dmamap_set_cb(dmap, cb, arg);
  89. }
  90. static inline void
  91. qdf_nbuf_set_send_complete_flag(qdf_nbuf_t buf, bool flag)
  92. {
  93. __qdf_nbuf_set_send_complete_flag(buf, flag);
  94. }
  95. static inline QDF_STATUS
  96. qdf_nbuf_map(qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir)
  97. {
  98. return __qdf_nbuf_map(osdev, buf, dir);
  99. }
  100. static inline void
  101. qdf_nbuf_unmap(qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir)
  102. {
  103. __qdf_nbuf_unmap(osdev, buf, dir);
  104. }
  105. static inline QDF_STATUS
  106. qdf_nbuf_map_nbytes(qdf_device_t osdev, qdf_nbuf_t buf,
  107. qdf_dma_dir_t dir, int nbytes)
  108. {
  109. return __qdf_nbuf_map_nbytes(osdev, buf, dir, nbytes);
  110. }
  111. static inline void
  112. qdf_nbuf_unmap_nbytes(qdf_device_t osdev,
  113. qdf_nbuf_t buf, qdf_dma_dir_t dir, int nbytes)
  114. {
  115. __qdf_nbuf_unmap_nbytes(osdev, buf, dir, nbytes);
  116. }
  117. #ifndef REMOVE_INIT_DEBUG_CODE
  118. static inline void
  119. qdf_nbuf_sync_for_cpu(qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir)
  120. {
  121. __qdf_nbuf_sync_for_cpu(osdev, buf, dir);
  122. }
  123. #endif
  124. static inline QDF_STATUS
  125. qdf_nbuf_map_single(qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir)
  126. {
  127. return __qdf_nbuf_map_single(osdev, buf, dir);
  128. }
  129. static inline QDF_STATUS
  130. qdf_nbuf_map_nbytes_single(
  131. qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir, int nbytes)
  132. {
  133. return __qdf_nbuf_map_nbytes_single(osdev, buf, dir, nbytes);
  134. }
  135. static inline void
  136. qdf_nbuf_unmap_single(qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir)
  137. {
  138. __qdf_nbuf_unmap_single(osdev, buf, dir);
  139. }
  140. static inline void
  141. qdf_nbuf_unmap_nbytes_single(
  142. qdf_device_t osdev, qdf_nbuf_t buf, qdf_dma_dir_t dir, int nbytes)
  143. {
  144. return __qdf_nbuf_unmap_nbytes_single(osdev, buf, dir, nbytes);
  145. }
  146. static inline int qdf_nbuf_get_num_frags(qdf_nbuf_t buf)
  147. {
  148. return __qdf_nbuf_get_num_frags(buf);
  149. }
  150. /**
  151. * qdf_nbuf_get_frag_len() - get fragment length
  152. * @buf: Network buffer
  153. * @frag_num: Fragment number
  154. *
  155. * Return: Fragment length
  156. */
  157. static inline int qdf_nbuf_get_frag_len(qdf_nbuf_t buf, int frag_num)
  158. {
  159. QDF_BUG(!(frag_num >= QDF_NBUF_CB_TX_MAX_EXTRA_FRAGS));
  160. return __qdf_nbuf_get_frag_len(buf, frag_num);
  161. }
  162. /**
  163. * qdf_nbuf_get_frag_vaddr() - get fragment virtual address
  164. * @buf: Network buffer
  165. * @frag_num: Fragment number
  166. *
  167. * Return: Fragment virtual address
  168. */
  169. static inline unsigned char *qdf_nbuf_get_frag_vaddr(qdf_nbuf_t buf,
  170. int frag_num)
  171. {
  172. QDF_BUG(!(frag_num >= QDF_NBUF_CB_TX_MAX_EXTRA_FRAGS));
  173. return __qdf_nbuf_get_frag_vaddr(buf, frag_num);
  174. }
  175. /**
  176. * qdf_nbuf_get_frag_vaddr_always() - get fragment virtual address
  177. * @buf: Network buffer
  178. *
  179. * Return: Fragment virtual address
  180. */
  181. static inline unsigned char *
  182. qdf_nbuf_get_frag_vaddr_always(qdf_nbuf_t buf)
  183. {
  184. return __qdf_nbuf_get_frag_vaddr_always(buf);
  185. }
  186. /**
  187. * qdf_nbuf_get_frag_paddr() - get fragment physical address
  188. * @buf: Network buffer
  189. * @frag_num: Fragment number
  190. *
  191. * Return: Fragment physical address
  192. */
  193. static inline qdf_dma_addr_t qdf_nbuf_get_frag_paddr(qdf_nbuf_t buf,
  194. unsigned int frag_num)
  195. {
  196. QDF_BUG(!(frag_num >= QDF_NBUF_CB_TX_MAX_EXTRA_FRAGS));
  197. return __qdf_nbuf_get_frag_paddr(buf, frag_num);
  198. }
  199. /**
  200. * qdf_nbuf_get_frag_is_wordstream() - is fragment wordstream
  201. * @buf: Network buffer
  202. * @frag_num: Fragment number
  203. *
  204. * Return: Fragment wordstream or not
  205. */
  206. static inline int qdf_nbuf_get_frag_is_wordstream(qdf_nbuf_t buf, int frag_num)
  207. {
  208. QDF_BUG(!(frag_num >= QDF_NBUF_CB_TX_MAX_EXTRA_FRAGS));
  209. return __qdf_nbuf_get_frag_is_wordstream(buf, frag_num);
  210. }
  211. static inline int qdf_nbuf_ipa_owned_get(qdf_nbuf_t buf)
  212. {
  213. return __qdf_nbuf_ipa_owned_get(buf);
  214. }
  215. static inline void qdf_nbuf_ipa_owned_set(qdf_nbuf_t buf)
  216. {
  217. __qdf_nbuf_ipa_owned_set(buf);
  218. }
  219. static inline int qdf_nbuf_ipa_priv_get(qdf_nbuf_t buf)
  220. {
  221. return __qdf_nbuf_ipa_priv_get(buf);
  222. }
  223. static inline void qdf_nbuf_ipa_priv_set(qdf_nbuf_t buf, uint32_t priv)
  224. {
  225. QDF_BUG(!(priv & QDF_NBUF_IPA_CHECK_MASK));
  226. __qdf_nbuf_ipa_priv_set(buf, priv);
  227. }
  228. /**
  229. * qdf_nbuf_set_frag_is_wordstream() - set fragment wordstream
  230. * @buf: Network buffer
  231. * @frag_num: Fragment number
  232. * @is_wordstream: Wordstream
  233. *
  234. * Return: none
  235. */
  236. static inline void
  237. qdf_nbuf_set_frag_is_wordstream(qdf_nbuf_t buf,
  238. int frag_num, int is_wordstream)
  239. {
  240. QDF_BUG(!(frag_num >= QDF_NBUF_CB_TX_MAX_EXTRA_FRAGS));
  241. __qdf_nbuf_set_frag_is_wordstream(buf, frag_num, is_wordstream);
  242. }
  243. static inline void
  244. qdf_nbuf_set_vdev_ctx(qdf_nbuf_t buf, void *vdev_ctx)
  245. {
  246. __qdf_nbuf_set_vdev_ctx(buf, vdev_ctx);
  247. }
  248. static inline void
  249. qdf_nbuf_set_fctx_type(qdf_nbuf_t buf, void *ctx, uint8_t type)
  250. {
  251. __qdf_nbuf_set_fctx_type(buf, ctx, type);
  252. }
  253. static inline void *
  254. qdf_nbuf_get_vdev_ctx(qdf_nbuf_t buf)
  255. {
  256. return __qdf_nbuf_get_vdev_ctx(buf);
  257. }
  258. static inline void *qdf_nbuf_get_fctx(qdf_nbuf_t buf)
  259. {
  260. return __qdf_nbuf_get_fctx(buf);
  261. }
  262. static inline uint8_t qdf_nbuf_get_ftype(qdf_nbuf_t buf)
  263. {
  264. return __qdf_nbuf_get_ftype(buf);
  265. }
  266. static inline qdf_dma_addr_t
  267. qdf_nbuf_mapped_paddr_get(qdf_nbuf_t buf)
  268. {
  269. return __qdf_nbuf_mapped_paddr_get(buf);
  270. }
  271. static inline void
  272. qdf_nbuf_mapped_paddr_set(qdf_nbuf_t buf, qdf_dma_addr_t paddr)
  273. {
  274. __qdf_nbuf_mapped_paddr_set(buf, paddr);
  275. }
  276. static inline void
  277. qdf_nbuf_frag_push_head(qdf_nbuf_t buf,
  278. int frag_len, char *frag_vaddr,
  279. qdf_dma_addr_t frag_paddr)
  280. {
  281. __qdf_nbuf_frag_push_head(buf, frag_len, frag_vaddr, frag_paddr);
  282. }
  283. #define qdf_nbuf_num_frags_init(_nbuf) __qdf_nbuf_num_frags_init((_nbuf))
  284. /* For efficiency, it is the responsibility of the caller to ensure that val
  285. * is either 0 or 1.
  286. */
  287. static inline void
  288. qdf_nbuf_set_chfrag_start(qdf_nbuf_t buf, uint8_t val)
  289. {
  290. __qdf_nbuf_set_chfrag_start(buf, val);
  291. }
  292. static inline int qdf_nbuf_is_chfrag_start(qdf_nbuf_t buf)
  293. {
  294. return __qdf_nbuf_is_chfrag_start(buf);
  295. }
  296. /* For efficiency, it is the responsibility of the caller to ensure that val
  297. * is either 0 or 1.
  298. */
  299. static inline void qdf_nbuf_set_chfrag_end(qdf_nbuf_t buf, uint8_t val)
  300. {
  301. __qdf_nbuf_set_chfrag_end(buf, val);
  302. }
  303. static inline int qdf_nbuf_is_chfrag_end(qdf_nbuf_t buf)
  304. {
  305. return __qdf_nbuf_is_chfrag_end(buf);
  306. }
  307. static inline void
  308. qdf_nbuf_dma_map_info(qdf_dma_map_t bmap, qdf_dmamap_info_t *sg)
  309. {
  310. __qdf_nbuf_dma_map_info(bmap, sg);
  311. }
  312. #ifdef MEMORY_DEBUG
  313. void qdf_net_buf_debug_init(void);
  314. void qdf_net_buf_debug_exit(void);
  315. void qdf_net_buf_debug_clean(void);
  316. void qdf_net_buf_debug_add_node(qdf_nbuf_t net_buf, size_t size,
  317. uint8_t *file_name, uint32_t line_num);
  318. void qdf_net_buf_debug_delete_node(qdf_nbuf_t net_buf);
  319. void qdf_net_buf_debug_release_skb(qdf_nbuf_t net_buf);
  320. /* nbuf allocation rouines */
  321. #define qdf_nbuf_alloc(d, s, r, a, p) \
  322. qdf_nbuf_alloc_debug(d, s, r, a, p, __FILE__, __LINE__)
  323. static inline qdf_nbuf_t
  324. qdf_nbuf_alloc_debug(qdf_device_t osdev, qdf_size_t size, int reserve,
  325. int align, int prio, uint8_t *file_name,
  326. uint32_t line_num)
  327. {
  328. qdf_nbuf_t net_buf;
  329. net_buf = __qdf_nbuf_alloc(osdev, size, reserve, align, prio);
  330. /* Store SKB in internal QDF tracking table */
  331. if (qdf_likely(net_buf))
  332. qdf_net_buf_debug_add_node(net_buf, size, file_name, line_num);
  333. return net_buf;
  334. }
  335. static inline void qdf_nbuf_free(qdf_nbuf_t net_buf)
  336. {
  337. /* Remove SKB from internal QDF tracking table */
  338. if (qdf_likely(net_buf))
  339. qdf_net_buf_debug_delete_node(net_buf);
  340. __qdf_nbuf_free(net_buf);
  341. }
  342. #else
  343. static inline void qdf_net_buf_debug_release_skb(qdf_nbuf_t net_buf)
  344. {
  345. return;
  346. }
  347. /* Nbuf allocation rouines */
  348. static inline qdf_nbuf_t
  349. qdf_nbuf_alloc(qdf_device_t osdev,
  350. qdf_size_t size, int reserve, int align, int prio)
  351. {
  352. return __qdf_nbuf_alloc(osdev, size, reserve, align, prio);
  353. }
  354. static inline void qdf_nbuf_free(qdf_nbuf_t buf)
  355. {
  356. __qdf_nbuf_free(buf);
  357. }
  358. #endif
  359. #ifdef WLAN_FEATURE_FASTPATH
  360. /**
  361. * qdf_nbuf_init_fast() - before put buf into pool,turn it to init state
  362. *
  363. * @buf: buf instance
  364. * Return: data pointer of this buf where new data has to be
  365. * put, or NULL if there is not enough room in this buf.
  366. */
  367. static inline void qdf_nbuf_init_fast(qdf_nbuf_t nbuf)
  368. {
  369. atomic_set(&nbuf->users, 1);
  370. nbuf->data = nbuf->head + NET_SKB_PAD;
  371. skb_reset_tail_pointer(nbuf);
  372. }
  373. #endif /* WLAN_FEATURE_FASTPATH */
  374. static inline void qdf_nbuf_tx_free(qdf_nbuf_t buf_list, int tx_err)
  375. {
  376. __qdf_nbuf_tx_free(buf_list, tx_err);
  377. }
  378. static inline void qdf_nbuf_ref(qdf_nbuf_t buf)
  379. {
  380. __qdf_nbuf_ref(buf);
  381. }
  382. static inline int qdf_nbuf_shared(qdf_nbuf_t buf)
  383. {
  384. return __qdf_nbuf_shared(buf);
  385. }
  386. static inline qdf_nbuf_t qdf_nbuf_copy(qdf_nbuf_t buf)
  387. {
  388. return __qdf_nbuf_copy(buf);
  389. }
  390. static inline QDF_STATUS qdf_nbuf_cat(qdf_nbuf_t dst, qdf_nbuf_t src)
  391. {
  392. return __qdf_nbuf_cat(dst, src);
  393. }
  394. /**
  395. * @qdf_nbuf_copy_bits() - return the length of the copy bits for skb
  396. * @skb: SKB pointer
  397. * @offset: offset
  398. * @len: Length
  399. * @to: To
  400. *
  401. * Return: int32_t
  402. */
  403. static inline int32_t
  404. qdf_nbuf_copy_bits(qdf_nbuf_t nbuf, uint32_t offset, uint32_t len, void *to)
  405. {
  406. return __qdf_nbuf_copy_bits(nbuf, offset, len, to);
  407. }
  408. /**
  409. * qdf_nbuf_clone() - clone the nbuf (copy is readonly)
  410. * @buf: nbuf to clone from
  411. *
  412. * Return: cloned buffer
  413. */
  414. static inline qdf_nbuf_t qdf_nbuf_clone(qdf_nbuf_t buf)
  415. {
  416. return __qdf_nbuf_clone(buf);
  417. }
  418. /* nbuf manipulation routines */
  419. /**
  420. * @qdf_nbuf_head() - return the address of an nbuf's buffer
  421. * @buf: netbuf
  422. *
  423. * Return: head address
  424. */
  425. static inline uint8_t *qdf_nbuf_head(qdf_nbuf_t buf)
  426. {
  427. return __qdf_nbuf_head(buf);
  428. }
  429. /**
  430. * qdf_nbuf_data() - Return the address of the start of data within an nbuf
  431. * @buf: Network buffer
  432. *
  433. * Return: Data address
  434. */
  435. static inline uint8_t *qdf_nbuf_data(qdf_nbuf_t buf)
  436. {
  437. return __qdf_nbuf_data(buf);
  438. }
  439. /**
  440. * qdf_nbuf_headroom() - amount of headroom int the current nbuf
  441. * @buf: Network buffer
  442. *
  443. * Return: Amount of head room
  444. */
  445. static inline uint32_t qdf_nbuf_headroom(qdf_nbuf_t buf)
  446. {
  447. return __qdf_nbuf_headroom(buf);
  448. }
  449. /**
  450. * qdf_nbuf_tailroom() - amount of tail space available
  451. * @buf: Network buffer
  452. *
  453. * Return: amount of tail room
  454. */
  455. static inline uint32_t qdf_nbuf_tailroom(qdf_nbuf_t buf)
  456. {
  457. return __qdf_nbuf_tailroom(buf);
  458. }
  459. /**
  460. * qdf_nbuf_push_head() - push data in the front
  461. * @buf: Network buf instance
  462. * @size: Size to be pushed
  463. *
  464. * Return: New data pointer of this buf after data has been pushed,
  465. * or NULL if there is not enough room in this buf.
  466. */
  467. static inline uint8_t *qdf_nbuf_push_head(qdf_nbuf_t buf, qdf_size_t size)
  468. {
  469. return __qdf_nbuf_push_head(buf, size);
  470. }
  471. /**
  472. * qdf_nbuf_put_tail() - puts data in the end
  473. * @buf: Network buf instance
  474. * @size: Size to be pushed
  475. *
  476. * Return: Data pointer of this buf where new data has to be
  477. * put, or NULL if there is not enough room in this buf.
  478. */
  479. static inline uint8_t *qdf_nbuf_put_tail(qdf_nbuf_t buf, qdf_size_t size)
  480. {
  481. return __qdf_nbuf_put_tail(buf, size);
  482. }
  483. /**
  484. * qdf_nbuf_pull_head() - pull data out from the front
  485. * @buf: Network buf instance
  486. * @size: Size to be popped
  487. *
  488. * Return: New data pointer of this buf after data has been popped,
  489. * or NULL if there is not sufficient data to pull.
  490. */
  491. static inline uint8_t *qdf_nbuf_pull_head(qdf_nbuf_t buf, qdf_size_t size)
  492. {
  493. return __qdf_nbuf_pull_head(buf, size);
  494. }
  495. /**
  496. * qdf_nbuf_trim_tail() - trim data out from the end
  497. * @buf: Network buf instance
  498. * @size: Size to be popped
  499. *
  500. * Return: none
  501. */
  502. static inline void qdf_nbuf_trim_tail(qdf_nbuf_t buf, qdf_size_t size)
  503. {
  504. __qdf_nbuf_trim_tail(buf, size);
  505. }
  506. /**
  507. * qdf_nbuf_len() - get the length of the buf
  508. * @buf: Network buf instance
  509. *
  510. * Return: total length of this buf.
  511. */
  512. static inline qdf_size_t qdf_nbuf_len(qdf_nbuf_t buf)
  513. {
  514. return __qdf_nbuf_len(buf);
  515. }
  516. /**
  517. * qdf_nbuf_set_pktlen() - set the length of the buf
  518. * @buf: Network buf instance
  519. * @size: Size to be set
  520. *
  521. * Return: none
  522. */
  523. static inline void qdf_nbuf_set_pktlen(qdf_nbuf_t buf, uint32_t len)
  524. {
  525. __qdf_nbuf_set_pktlen(buf, len);
  526. }
  527. /**
  528. * qdf_nbuf_reserve() - trim data out from the end
  529. * @buf: Network buf instance
  530. * @size: Size to be popped
  531. *
  532. * Return: none
  533. */
  534. static inline void qdf_nbuf_reserve(qdf_nbuf_t buf, qdf_size_t size)
  535. {
  536. __qdf_nbuf_reserve(buf, size);
  537. }
  538. /**
  539. * qdf_nbuf_peek_header() - return the data pointer & length of the header
  540. * @buf: Network nbuf
  541. * @addr: Data pointer
  542. * @len: Length of the data
  543. *
  544. * Return: none
  545. */
  546. static inline void
  547. qdf_nbuf_peek_header(qdf_nbuf_t buf, uint8_t **addr, uint32_t *len)
  548. {
  549. __qdf_nbuf_peek_header(buf, addr, len);
  550. }
  551. /* nbuf queue routines */
  552. /**
  553. * qdf_nbuf_queue_init() - initialize buf queue
  554. * @head: Network buf queue head
  555. *
  556. * Return: none
  557. */
  558. static inline void qdf_nbuf_queue_init(qdf_nbuf_queue_t *head)
  559. {
  560. __qdf_nbuf_queue_init(head);
  561. }
  562. /**
  563. * qdf_nbuf_queue_add() - append a nbuf to the tail of the buf queue
  564. * @head: Network buf queue head
  565. * @buf: Network buf
  566. *
  567. * Return: none
  568. */
  569. static inline void qdf_nbuf_queue_add(qdf_nbuf_queue_t *head, qdf_nbuf_t buf)
  570. {
  571. __qdf_nbuf_queue_add(head, buf);
  572. }
  573. /**
  574. * qdf_nbuf_queue_insert_head() - insert nbuf at the head of queue
  575. * @head: Network buf queue head
  576. * @buf: Network buf
  577. *
  578. * Return: none
  579. */
  580. static inline void
  581. qdf_nbuf_queue_insert_head(qdf_nbuf_queue_t *head, qdf_nbuf_t buf)
  582. {
  583. __qdf_nbuf_queue_insert_head(head, buf);
  584. }
  585. /**
  586. * qdf_nbuf_queue_remove() - retrieve a buf from the head of the buf queue
  587. * @head: Network buf queue head
  588. *
  589. * Return: The head buf in the buf queue.
  590. */
  591. static inline qdf_nbuf_t qdf_nbuf_queue_remove(qdf_nbuf_queue_t *head)
  592. {
  593. return __qdf_nbuf_queue_remove(head);
  594. }
  595. /**
  596. * qdf_nbuf_queue_len() - get the length of the queue
  597. * @head: Network buf queue head
  598. *
  599. * Return: length of the queue
  600. */
  601. static inline uint32_t qdf_nbuf_queue_len(qdf_nbuf_queue_t *head)
  602. {
  603. return __qdf_nbuf_queue_len(head);
  604. }
  605. /**
  606. * qdf_nbuf_queue_next() - get the next guy/packet of the given buffer
  607. * @buf: Network buffer
  608. *
  609. * Return: next buffer/packet
  610. */
  611. static inline qdf_nbuf_t qdf_nbuf_queue_next(qdf_nbuf_t buf)
  612. {
  613. return __qdf_nbuf_queue_next(buf);
  614. }
  615. /**
  616. * @qdf_nbuf_is_queue_empty() - check if the buf queue is empty
  617. * @nbq: Network buf queue handle
  618. *
  619. * Return: true if queue is empty
  620. * false if queue is not emty
  621. */
  622. static inline bool qdf_nbuf_is_queue_empty(qdf_nbuf_queue_t *nbq)
  623. {
  624. return __qdf_nbuf_is_queue_empty(nbq);
  625. }
  626. static inline qdf_nbuf_queue_t *
  627. qdf_nbuf_queue_append(qdf_nbuf_queue_t *dest, qdf_nbuf_queue_t *src)
  628. {
  629. return __qdf_nbuf_queue_append(dest, src);
  630. }
  631. static inline void
  632. qdf_nbuf_queue_free(qdf_nbuf_queue_t *head)
  633. {
  634. __qdf_nbuf_queue_free(head);
  635. }
  636. static inline qdf_nbuf_t
  637. qdf_nbuf_queue_first(qdf_nbuf_queue_t *head)
  638. {
  639. return __qdf_nbuf_queue_first(head);
  640. }
  641. /**
  642. * qdf_nbuf_next() - get the next packet in the linked list
  643. * @buf: Network buffer
  644. *
  645. * This function can be used when nbufs are directly linked into a list,
  646. * rather than using a separate network buffer queue object.
  647. *
  648. * Return: next network buffer in the linked list
  649. */
  650. static inline qdf_nbuf_t qdf_nbuf_next(qdf_nbuf_t buf)
  651. {
  652. return __qdf_nbuf_next(buf);
  653. }
  654. /**
  655. * qdf_nbuf_get_protocol() - return the protocol value of the skb
  656. * @skb: Pointer to network buffer
  657. *
  658. * Return: skb protocol
  659. */
  660. static inline uint16_t qdf_nbuf_get_protocol(struct sk_buff *skb)
  661. {
  662. return __qdf_nbuf_get_protocol(skb);
  663. }
  664. /**
  665. * qdf_nbuf_get_ip_summed() - return the ip checksum value of the skb
  666. * @skb: Pointer to network buffer
  667. *
  668. * Return: skb ip_summed
  669. */
  670. static inline uint8_t qdf_nbuf_get_ip_summed(struct sk_buff *skb)
  671. {
  672. return __qdf_nbuf_get_ip_summed(skb);
  673. }
  674. /**
  675. * qdf_nbuf_set_ip_summed() - sets the ip_summed value of the skb
  676. * @skb: Pointer to network buffer
  677. * @ip_summed: ip checksum
  678. *
  679. * Return: none
  680. */
  681. static inline void qdf_nbuf_set_ip_summed(struct sk_buff *skb,
  682. uint8_t ip_summed)
  683. {
  684. __qdf_nbuf_set_ip_summed(skb, ip_summed);
  685. }
  686. /**
  687. * qdf_nbuf_set_next() - add a packet to a linked list
  688. * @this_buf: Predecessor buffer
  689. * @next_buf: Successor buffer
  690. *
  691. * This function can be used to directly link nbufs, rather than using
  692. * a separate network buffer queue object.
  693. *
  694. * Return: none
  695. */
  696. static inline void qdf_nbuf_set_next(qdf_nbuf_t this_buf, qdf_nbuf_t next_buf)
  697. {
  698. __qdf_nbuf_set_next(this_buf, next_buf);
  699. }
  700. /* nbuf extension routines */
  701. /**
  702. * qdf_nbuf_set_next_ext() - link extension of this packet contained in a new
  703. * nbuf
  704. * @this_buf: predecessor buffer
  705. * @next_buf: successor buffer
  706. *
  707. * This function is used to link up many nbufs containing a single logical
  708. * packet - not a collection of packets. Do not use for linking the first
  709. * extension to the head
  710. *
  711. * Return: none
  712. */
  713. static inline void
  714. qdf_nbuf_set_next_ext(qdf_nbuf_t this_buf, qdf_nbuf_t next_buf)
  715. {
  716. __qdf_nbuf_set_next_ext(this_buf, next_buf);
  717. }
  718. /**
  719. * qdf_nbuf_next_ext() - get the next packet extension in the linked list
  720. * @buf: Network buffer
  721. *
  722. * Return: Next network buffer in the linked list
  723. */
  724. static inline qdf_nbuf_t qdf_nbuf_next_ext(qdf_nbuf_t buf)
  725. {
  726. return __qdf_nbuf_next_ext(buf);
  727. }
  728. /**
  729. * qdf_nbuf_append_ext_list() - link list of packet extensions to the head
  730. * segment
  731. * @head_buf: Network buf holding head segment (single)
  732. * @ext_list: Network buf list holding linked extensions to the head
  733. * @ext_len: Total length of all buffers in the extension list
  734. *
  735. * This function is used to link up a list of packet extensions (seg1, 2,
  736. * ...) to the nbuf holding the head segment (seg0)
  737. *
  738. * Return: none
  739. */
  740. static inline void
  741. qdf_nbuf_append_ext_list(qdf_nbuf_t head_buf, qdf_nbuf_t ext_list,
  742. qdf_size_t ext_len)
  743. {
  744. __qdf_nbuf_append_ext_list(head_buf, ext_list, ext_len);
  745. }
  746. /**
  747. * qdf_nbuf_get_tx_cksum() - gets the tx checksum offload demand
  748. * @buf: Network buffer
  749. *
  750. * Return: qdf_nbuf_tx_cksum_t checksum offload demand for the frame
  751. */
  752. static inline qdf_nbuf_tx_cksum_t qdf_nbuf_get_tx_cksum(qdf_nbuf_t buf)
  753. {
  754. return __qdf_nbuf_get_tx_cksum(buf);
  755. }
  756. /**
  757. * qdf_nbuf_set_rx_cksum() - drivers that support hw checksumming use this to
  758. * indicate checksum info to the stack.
  759. * @buf: Network buffer
  760. * @cksum: Checksum
  761. *
  762. * Return: none
  763. */
  764. static inline void
  765. qdf_nbuf_set_rx_cksum(qdf_nbuf_t buf, qdf_nbuf_rx_cksum_t *cksum)
  766. {
  767. __qdf_nbuf_set_rx_cksum(buf, cksum);
  768. }
  769. /**
  770. * qdf_nbuf_get_tid() - this function extracts the TID value from nbuf
  771. * @buf: Network buffer
  772. *
  773. * Return: TID value
  774. */
  775. static inline uint8_t qdf_nbuf_get_tid(qdf_nbuf_t buf)
  776. {
  777. return __qdf_nbuf_get_tid(buf);
  778. }
  779. /**
  780. * qdf_nbuf_set_tid() - this function sets the TID value in nbuf
  781. * @buf: Network buffer
  782. * @tid: TID value
  783. *
  784. * Return: none
  785. */
  786. static inline void qdf_nbuf_set_tid(qdf_nbuf_t buf, uint8_t tid)
  787. {
  788. __qdf_nbuf_set_tid(buf, tid);
  789. }
  790. /**
  791. * qdf_nbuf_get_exemption_type() - this function extracts the exemption type
  792. * from nbuf
  793. * @buf: Network buffer
  794. *
  795. * Return: Exemption type
  796. */
  797. static inline uint8_t qdf_nbuf_get_exemption_type(qdf_nbuf_t buf)
  798. {
  799. return __qdf_nbuf_get_exemption_type(buf);
  800. }
  801. /**
  802. * qdf_nbuf_set_protocol() - this function peeks data into the buffer at given
  803. * offset
  804. * @buf: Network buffer
  805. * @proto: Protocol
  806. *
  807. * Return: none
  808. */
  809. static inline void qdf_nbuf_set_protocol(qdf_nbuf_t buf, uint16_t proto)
  810. {
  811. __qdf_nbuf_set_protocol(buf, proto);
  812. }
  813. /**
  814. * qdf_nbuf_trace_get_proto_type() - this function return packet proto type
  815. * @buf: Network buffer
  816. *
  817. * Return: Packet protocol type
  818. */
  819. static inline uint8_t qdf_nbuf_trace_get_proto_type(qdf_nbuf_t buf)
  820. {
  821. return __qdf_nbuf_trace_get_proto_type(buf);
  822. }
  823. #ifdef QCA_PKT_PROTO_TRACE
  824. /**
  825. * qdf_nbuf_trace_set_proto_type() - this function updates packet proto type
  826. * @buf: Network buffer
  827. * @proto_type: Protocol type
  828. *
  829. * Return: none
  830. */
  831. static inline void
  832. qdf_nbuf_trace_set_proto_type(qdf_nbuf_t buf, uint8_t proto_type)
  833. {
  834. __qdf_nbuf_trace_set_proto_type(buf, proto_type);
  835. }
  836. #else
  837. static inline void
  838. qdf_nbuf_trace_set_proto_type(qdf_nbuf_t buf, uint8_t proto_type)
  839. {
  840. return;
  841. }
  842. #endif
  843. /**
  844. * qdf_nbuf_reg_trace_cb() - this function registers protocol trace callback
  845. * @cb_func_ptr: Callback pointer
  846. *
  847. * Return: none
  848. */
  849. static inline void qdf_nbuf_reg_trace_cb(qdf_nbuf_trace_update_t cb_func_ptr)
  850. {
  851. __qdf_nbuf_reg_trace_cb(cb_func_ptr);
  852. }
  853. /**
  854. * qdf_nbuf_trace_update() - this function updates protocol event
  855. * @buf: Network buffer
  856. * @event_string: Event string pointer
  857. *
  858. * Return: none
  859. */
  860. static inline void qdf_nbuf_trace_update(qdf_nbuf_t buf, char *event_string)
  861. {
  862. __qdf_nbuf_trace_update(buf, event_string);
  863. }
  864. /**
  865. * qdf_nbuf_set_tx_parallel_dnload_frm() - set tx parallel download
  866. * @buf: Network buffer
  867. * @candi: Candidate of parallel download frame
  868. *
  869. * This function stores a flag specifying this TX frame is suitable for
  870. * downloading though a 2nd TX data pipe that is used for short frames for
  871. * protocols that can accept out-of-order delivery.
  872. *
  873. * Return: none
  874. */
  875. static inline void
  876. qdf_nbuf_set_tx_parallel_dnload_frm(qdf_nbuf_t buf, uint8_t candi)
  877. {
  878. __qdf_nbuf_set_tx_htt2_frm(buf, candi);
  879. }
  880. /**
  881. * qdf_nbuf_get_tx_parallel_dnload_frm() - get tx parallel download
  882. * @buf: Network buffer
  883. *
  884. * This function return whether this TX frame is allow to download though a 2nd
  885. * TX data pipe or not.
  886. *
  887. * Return: none
  888. */
  889. static inline uint8_t qdf_nbuf_get_tx_parallel_dnload_frm(qdf_nbuf_t buf)
  890. {
  891. return __qdf_nbuf_get_tx_htt2_frm(buf);
  892. }
  893. /**
  894. * qdf_invalidate_range() - invalidate the virtual address range specified by
  895. * start and end addresses.
  896. * Note: This does not write back the cache entries.
  897. *
  898. * Return: none
  899. */
  900. #ifdef MSM_PLATFORM
  901. static inline void qdf_invalidate_range(void *start, void *end)
  902. {
  903. dmac_inv_range(start, end);
  904. }
  905. #else
  906. static inline void qdf_invalidate_range(void *start, void *end)
  907. {
  908. /* TODO figure out how to invalidate cache on x86 and other
  909. non-MSM platform */
  910. QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_FATAL,
  911. "Cache invalidate not yet implemneted for non-MSM platform");
  912. return;
  913. }
  914. #endif
  915. /**
  916. * qdf_nbuf_reset_num_frags() - decrement the number of fragments
  917. * @buf: Network buffer
  918. *
  919. * Return: Number of fragments
  920. */
  921. static inline void qdf_nbuf_reset_num_frags(qdf_nbuf_t buf)
  922. {
  923. __qdf_nbuf_reset_num_frags(buf);
  924. }
  925. /**
  926. * qdf_nbuf_is_tso() - is the network buffer a jumbo packet?
  927. * @buf: Network buffer
  928. *
  929. * Return: 1 - this is a jumbo packet 0 - not a jumbo packet
  930. */
  931. static inline uint8_t qdf_nbuf_is_tso(qdf_nbuf_t nbuf)
  932. {
  933. return __qdf_nbuf_is_tso(nbuf);
  934. }
  935. /**
  936. * qdf_nbuf_get_tso_info() - function to divide a jumbo TSO
  937. * network buffer into segments
  938. * @nbuf: network buffer to be segmented
  939. * @tso_info: This is the output. The information about the
  940. * TSO segments will be populated within this.
  941. *
  942. * This function fragments a TCP jumbo packet into smaller
  943. * segments to be transmitted by the driver. It chains the TSO
  944. * segments created into a list.
  945. *
  946. * Return: number of TSO segments
  947. */
  948. static inline uint32_t qdf_nbuf_get_tso_info(qdf_device_t osdev,
  949. qdf_nbuf_t nbuf, struct qdf_tso_info_t *tso_info)
  950. {
  951. return __qdf_nbuf_get_tso_info(osdev, nbuf, tso_info);
  952. }
  953. /**
  954. * qdf_nbuf_get_tso_num_seg() - function to calculate the number
  955. * of TCP segments within the TSO jumbo packet
  956. * @nbuf: TSO jumbo network buffer to be segmented
  957. *
  958. * This function calculates the number of TCP segments that the
  959. network buffer can be divided into.
  960. *
  961. * Return: number of TCP segments
  962. */
  963. static inline uint32_t qdf_nbuf_get_tso_num_seg(qdf_nbuf_t nbuf)
  964. {
  965. return __qdf_nbuf_get_tso_num_seg(nbuf);
  966. }
  967. /**
  968. * qdf_nbuf_inc_users() - function to increment the number of
  969. * users referencing this network buffer
  970. *
  971. * @nbuf: network buffer
  972. *
  973. * This function increments the number of users referencing this
  974. * network buffer
  975. *
  976. * Return: the network buffer
  977. */
  978. static inline qdf_nbuf_t qdf_nbuf_inc_users(qdf_nbuf_t nbuf)
  979. {
  980. return __qdf_nbuf_inc_users(nbuf);
  981. }
  982. /**
  983. * qdf_nbuf_data_attr_get() - Get data_attr field from cvg_nbuf_cb
  984. *
  985. * @nbuf: Network buffer (skb on linux)
  986. *
  987. * This function returns the values of data_attr field
  988. * in struct cvg_nbuf_cb{}, to which skb->cb is typecast.
  989. * This value is actually the value programmed in CE descriptor.
  990. *
  991. * Return: Value of data_attr
  992. */
  993. static inline uint32_t qdf_nbuf_data_attr_get(qdf_nbuf_t buf)
  994. {
  995. return __qdf_nbuf_data_attr_get(buf);
  996. }
  997. /**
  998. * qdf_nbuf_data_attr_set() - Sets data_attr field in cvg_nbuf_cb
  999. *
  1000. * @nbuf: Network buffer (skb on linux)
  1001. * @data_attr: Value to be stored cvg_nbuf_cb->data_attr
  1002. *
  1003. * This function stores the value to be programmed in CE
  1004. * descriptor as part skb->cb which is typecast to struct cvg_nbuf_cb{}
  1005. *
  1006. * Return: void
  1007. */
  1008. static inline
  1009. void qdf_nbuf_data_attr_set(qdf_nbuf_t buf, uint32_t data_attr)
  1010. {
  1011. __qdf_nbuf_data_attr_set(buf, data_attr);
  1012. }
  1013. /**
  1014. * qdf_nbuf_tx_info_get() - Parse skb and get Tx metadata
  1015. *
  1016. * @nbuf: Network buffer (skb on linux)
  1017. *
  1018. * This function parses the payload to figure out relevant
  1019. * Tx meta-data e.g. whether to enable tx_classify bit
  1020. * in CE.
  1021. *
  1022. * Return: void
  1023. */
  1024. #define qdf_nbuf_tx_info_get __qdf_nbuf_tx_info_get
  1025. void qdf_nbuf_set_state(qdf_nbuf_t nbuf, uint8_t current_state);
  1026. void qdf_nbuf_tx_desc_count_display(void);
  1027. void qdf_nbuf_tx_desc_count_clear(void);
  1028. static inline qdf_nbuf_t
  1029. qdf_nbuf_realloc_headroom(qdf_nbuf_t buf, uint32_t headroom)
  1030. {
  1031. return __qdf_nbuf_realloc_headroom(buf, headroom);
  1032. }
  1033. static inline qdf_nbuf_t
  1034. qdf_nbuf_realloc_tailroom(qdf_nbuf_t buf, uint32_t tailroom)
  1035. {
  1036. return __qdf_nbuf_realloc_tailroom(buf, tailroom);
  1037. }
  1038. static inline qdf_nbuf_t
  1039. qdf_nbuf_expand(qdf_nbuf_t buf, uint32_t headroom, uint32_t tailroom)
  1040. {
  1041. return __qdf_nbuf_expand(buf, headroom, tailroom);
  1042. }
  1043. static inline qdf_nbuf_t
  1044. qdf_nbuf_unshare(qdf_nbuf_t buf)
  1045. {
  1046. return __qdf_nbuf_unshare(buf);
  1047. }
  1048. static inline bool
  1049. qdf_nbuf_is_cloned(qdf_nbuf_t buf)
  1050. {
  1051. return __qdf_nbuf_is_cloned(buf);
  1052. }
  1053. static inline void
  1054. qdf_nbuf_frag_info(qdf_nbuf_t buf, qdf_sglist_t *sg)
  1055. {
  1056. __qdf_nbuf_frag_info(buf, sg);
  1057. }
  1058. static inline qdf_nbuf_tx_cksum_t
  1059. qdf_nbuf_tx_cksum_info(qdf_nbuf_t buf, uint8_t **hdr_off, uint8_t **where)
  1060. {
  1061. return __qdf_nbuf_tx_cksum_info(buf, hdr_off, where);
  1062. }
  1063. static inline void qdf_nbuf_reset_ctxt(__qdf_nbuf_t nbuf)
  1064. {
  1065. __qdf_nbuf_reset_ctxt(nbuf);
  1066. }
  1067. static inline void
  1068. qdf_nbuf_set_rx_info(__qdf_nbuf_t nbuf, void *info, uint32_t len)
  1069. {
  1070. __qdf_nbuf_set_rx_info(nbuf, info, len);
  1071. }
  1072. static inline void *qdf_nbuf_get_rx_info(__qdf_nbuf_t nbuf)
  1073. {
  1074. return __qdf_nbuf_get_rx_info(nbuf);
  1075. }
  1076. static inline void qdf_nbuf_init(qdf_nbuf_t buf)
  1077. {
  1078. __qdf_nbuf_init(buf);
  1079. }
  1080. static inline void *qdf_nbuf_network_header(qdf_nbuf_t buf)
  1081. {
  1082. return __qdf_nbuf_network_header(buf);
  1083. }
  1084. static inline void *qdf_nbuf_transport_header(qdf_nbuf_t buf)
  1085. {
  1086. return __qdf_nbuf_transport_header(buf);
  1087. }
  1088. static inline qdf_size_t qdf_nbuf_tcp_tso_size(qdf_nbuf_t buf)
  1089. {
  1090. return __qdf_nbuf_tcp_tso_size(buf);
  1091. }
  1092. static inline void *qdf_nbuf_get_cb(qdf_nbuf_t nbuf)
  1093. {
  1094. return __qdf_nbuf_get_cb(nbuf);
  1095. }
  1096. static inline uint32_t qdf_nbuf_get_nr_frags(qdf_nbuf_t nbuf)
  1097. {
  1098. return __qdf_nbuf_get_nr_frags(nbuf);
  1099. }
  1100. static inline qdf_size_t qdf_nbuf_headlen(qdf_nbuf_t buf)
  1101. {
  1102. return __qdf_nbuf_headlen(buf);
  1103. }
  1104. static inline QDF_STATUS qdf_nbuf_frag_map(qdf_device_t osdev,
  1105. qdf_nbuf_t buf, int offset,
  1106. qdf_dma_dir_t dir, int cur_frag)
  1107. {
  1108. return __qdf_nbuf_frag_map(osdev, buf, offset, dir, cur_frag);
  1109. }
  1110. static inline bool qdf_nbuf_tso_tcp_v4(qdf_nbuf_t buf)
  1111. {
  1112. return __qdf_nbuf_tso_tcp_v4(buf);
  1113. }
  1114. static inline bool qdf_nbuf_tso_tcp_v6(qdf_nbuf_t buf)
  1115. {
  1116. return __qdf_nbuf_tso_tcp_v6(buf);
  1117. }
  1118. static inline uint32_t qdf_nbuf_tcp_seq(qdf_nbuf_t buf)
  1119. {
  1120. return __qdf_nbuf_tcp_seq(buf);
  1121. }
  1122. static inline qdf_size_t qdf_nbuf_l2l3l4_hdr_len(qdf_nbuf_t buf)
  1123. {
  1124. return __qdf_nbuf_l2l3l4_hdr_len(buf);
  1125. }
  1126. static inline bool qdf_nbuf_is_nonlinear(qdf_nbuf_t buf)
  1127. {
  1128. return __qdf_nbuf_is_nonlinear(buf);
  1129. }
  1130. static inline uint32_t
  1131. qdf_nbuf_get_frag_size(qdf_nbuf_t buf, uint32_t frag_num)
  1132. {
  1133. return __qdf_nbuf_get_frag_size(buf, frag_num);
  1134. }
  1135. static inline uint32_t qdf_nbuf_get_priority(qdf_nbuf_t buf)
  1136. {
  1137. return __qdf_nbuf_get_priority(buf);
  1138. }
  1139. static inline void qdf_nbuf_set_priority(qdf_nbuf_t buf, uint32_t p)
  1140. {
  1141. __qdf_nbuf_set_priority(buf, p);
  1142. }
  1143. static inline uint8_t *
  1144. qdf_nbuf_get_priv_ptr(qdf_nbuf_t buf)
  1145. {
  1146. return __qdf_nbuf_get_priv_ptr(buf);
  1147. }
  1148. #endif /* _QDF_NBUF_H */