qdf_nbuf.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  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. static inline void qdf_nbuf_tx_free(qdf_nbuf_t buf_list, int tx_err)
  360. {
  361. __qdf_nbuf_tx_free(buf_list, tx_err);
  362. }
  363. static inline void qdf_nbuf_ref(qdf_nbuf_t buf)
  364. {
  365. __qdf_nbuf_ref(buf);
  366. }
  367. static inline int qdf_nbuf_shared(qdf_nbuf_t buf)
  368. {
  369. return __qdf_nbuf_shared(buf);
  370. }
  371. static inline qdf_nbuf_t qdf_nbuf_copy(qdf_nbuf_t buf)
  372. {
  373. return __qdf_nbuf_copy(buf);
  374. }
  375. static inline QDF_STATUS qdf_nbuf_cat(qdf_nbuf_t dst, qdf_nbuf_t src)
  376. {
  377. return __qdf_nbuf_cat(dst, src);
  378. }
  379. /**
  380. * @qdf_nbuf_copy_bits() - return the length of the copy bits for skb
  381. * @skb: SKB pointer
  382. * @offset: offset
  383. * @len: Length
  384. * @to: To
  385. *
  386. * Return: int32_t
  387. */
  388. static inline int32_t
  389. qdf_nbuf_copy_bits(qdf_nbuf_t nbuf, uint32_t offset, uint32_t len, void *to)
  390. {
  391. return __qdf_nbuf_copy_bits(nbuf, offset, len, to);
  392. }
  393. /**
  394. * qdf_nbuf_clone() - clone the nbuf (copy is readonly)
  395. * @buf: nbuf to clone from
  396. *
  397. * Return: cloned buffer
  398. */
  399. static inline qdf_nbuf_t qdf_nbuf_clone(qdf_nbuf_t buf)
  400. {
  401. return __qdf_nbuf_clone(buf);
  402. }
  403. /* nbuf manipulation routines */
  404. /**
  405. * @qdf_nbuf_head() - return the address of an nbuf's buffer
  406. * @buf: netbuf
  407. *
  408. * Return: head address
  409. */
  410. static inline uint8_t *qdf_nbuf_head(qdf_nbuf_t buf)
  411. {
  412. return __qdf_nbuf_head(buf);
  413. }
  414. /**
  415. * qdf_nbuf_data() - Return the address of the start of data within an nbuf
  416. * @buf: Network buffer
  417. *
  418. * Return: Data address
  419. */
  420. static inline uint8_t *qdf_nbuf_data(qdf_nbuf_t buf)
  421. {
  422. return __qdf_nbuf_data(buf);
  423. }
  424. /**
  425. * qdf_nbuf_headroom() - amount of headroom int the current nbuf
  426. * @buf: Network buffer
  427. *
  428. * Return: Amount of head room
  429. */
  430. static inline uint32_t qdf_nbuf_headroom(qdf_nbuf_t buf)
  431. {
  432. return __qdf_nbuf_headroom(buf);
  433. }
  434. /**
  435. * qdf_nbuf_tailroom() - amount of tail space available
  436. * @buf: Network buffer
  437. *
  438. * Return: amount of tail room
  439. */
  440. static inline uint32_t qdf_nbuf_tailroom(qdf_nbuf_t buf)
  441. {
  442. return __qdf_nbuf_tailroom(buf);
  443. }
  444. /**
  445. * qdf_nbuf_push_head() - push data in the front
  446. * @buf: Network buf instance
  447. * @size: Size to be pushed
  448. *
  449. * Return: New data pointer of this buf after data has been pushed,
  450. * or NULL if there is not enough room in this buf.
  451. */
  452. static inline uint8_t *qdf_nbuf_push_head(qdf_nbuf_t buf, qdf_size_t size)
  453. {
  454. return __qdf_nbuf_push_head(buf, size);
  455. }
  456. /**
  457. * qdf_nbuf_put_tail() - puts data in the end
  458. * @buf: Network buf instance
  459. * @size: Size to be pushed
  460. *
  461. * Return: Data pointer of this buf where new data has to be
  462. * put, or NULL if there is not enough room in this buf.
  463. */
  464. static inline uint8_t *qdf_nbuf_put_tail(qdf_nbuf_t buf, qdf_size_t size)
  465. {
  466. return __qdf_nbuf_put_tail(buf, size);
  467. }
  468. /**
  469. * qdf_nbuf_pull_head() - pull data out from the front
  470. * @buf: Network buf instance
  471. * @size: Size to be popped
  472. *
  473. * Return: New data pointer of this buf after data has been popped,
  474. * or NULL if there is not sufficient data to pull.
  475. */
  476. static inline uint8_t *qdf_nbuf_pull_head(qdf_nbuf_t buf, qdf_size_t size)
  477. {
  478. return __qdf_nbuf_pull_head(buf, size);
  479. }
  480. /**
  481. * qdf_nbuf_trim_tail() - trim data out from the end
  482. * @buf: Network buf instance
  483. * @size: Size to be popped
  484. *
  485. * Return: none
  486. */
  487. static inline void qdf_nbuf_trim_tail(qdf_nbuf_t buf, qdf_size_t size)
  488. {
  489. __qdf_nbuf_trim_tail(buf, size);
  490. }
  491. /**
  492. * qdf_nbuf_len() - get the length of the buf
  493. * @buf: Network buf instance
  494. *
  495. * Return: total length of this buf.
  496. */
  497. static inline qdf_size_t qdf_nbuf_len(qdf_nbuf_t buf)
  498. {
  499. return __qdf_nbuf_len(buf);
  500. }
  501. /**
  502. * qdf_nbuf_set_pktlen() - set the length of the buf
  503. * @buf: Network buf instance
  504. * @size: Size to be set
  505. *
  506. * Return: none
  507. */
  508. static inline void qdf_nbuf_set_pktlen(qdf_nbuf_t buf, uint32_t len)
  509. {
  510. __qdf_nbuf_set_pktlen(buf, len);
  511. }
  512. /**
  513. * qdf_nbuf_reserve() - trim data out from the end
  514. * @buf: Network buf instance
  515. * @size: Size to be popped
  516. *
  517. * Return: none
  518. */
  519. static inline void qdf_nbuf_reserve(qdf_nbuf_t buf, qdf_size_t size)
  520. {
  521. __qdf_nbuf_reserve(buf, size);
  522. }
  523. /**
  524. * qdf_nbuf_peek_header() - return the data pointer & length of the header
  525. * @buf: Network nbuf
  526. * @addr: Data pointer
  527. * @len: Length of the data
  528. *
  529. * Return: none
  530. */
  531. static inline void
  532. qdf_nbuf_peek_header(qdf_nbuf_t buf, uint8_t **addr, uint32_t *len)
  533. {
  534. __qdf_nbuf_peek_header(buf, addr, len);
  535. }
  536. /* nbuf queue routines */
  537. /**
  538. * qdf_nbuf_queue_init() - initialize buf queue
  539. * @head: Network buf queue head
  540. *
  541. * Return: none
  542. */
  543. static inline void qdf_nbuf_queue_init(qdf_nbuf_queue_t *head)
  544. {
  545. __qdf_nbuf_queue_init(head);
  546. }
  547. /**
  548. * qdf_nbuf_queue_add() - append a nbuf to the tail of the buf queue
  549. * @head: Network buf queue head
  550. * @buf: Network buf
  551. *
  552. * Return: none
  553. */
  554. static inline void qdf_nbuf_queue_add(qdf_nbuf_queue_t *head, qdf_nbuf_t buf)
  555. {
  556. __qdf_nbuf_queue_add(head, buf);
  557. }
  558. /**
  559. * qdf_nbuf_queue_insert_head() - insert nbuf at the head of queue
  560. * @head: Network buf queue head
  561. * @buf: Network buf
  562. *
  563. * Return: none
  564. */
  565. static inline void
  566. qdf_nbuf_queue_insert_head(qdf_nbuf_queue_t *head, qdf_nbuf_t buf)
  567. {
  568. __qdf_nbuf_queue_insert_head(head, buf);
  569. }
  570. /**
  571. * qdf_nbuf_queue_remove() - retrieve a buf from the head of the buf queue
  572. * @head: Network buf queue head
  573. *
  574. * Return: The head buf in the buf queue.
  575. */
  576. static inline qdf_nbuf_t qdf_nbuf_queue_remove(qdf_nbuf_queue_t *head)
  577. {
  578. return __qdf_nbuf_queue_remove(head);
  579. }
  580. /**
  581. * qdf_nbuf_queue_len() - get the length of the queue
  582. * @head: Network buf queue head
  583. *
  584. * Return: length of the queue
  585. */
  586. static inline uint32_t qdf_nbuf_queue_len(qdf_nbuf_queue_t *head)
  587. {
  588. return __qdf_nbuf_queue_len(head);
  589. }
  590. /**
  591. * qdf_nbuf_queue_next() - get the next guy/packet of the given buffer
  592. * @buf: Network buffer
  593. *
  594. * Return: next buffer/packet
  595. */
  596. static inline qdf_nbuf_t qdf_nbuf_queue_next(qdf_nbuf_t buf)
  597. {
  598. return __qdf_nbuf_queue_next(buf);
  599. }
  600. /**
  601. * @qdf_nbuf_is_queue_empty() - check if the buf queue is empty
  602. * @nbq: Network buf queue handle
  603. *
  604. * Return: true if queue is empty
  605. * false if queue is not emty
  606. */
  607. static inline bool qdf_nbuf_is_queue_empty(qdf_nbuf_queue_t *nbq)
  608. {
  609. return __qdf_nbuf_is_queue_empty(nbq);
  610. }
  611. static inline qdf_nbuf_queue_t *
  612. qdf_nbuf_queue_append(qdf_nbuf_queue_t *dest, qdf_nbuf_queue_t *src)
  613. {
  614. return __qdf_nbuf_queue_append(dest, src);
  615. }
  616. static inline void
  617. qdf_nbuf_queue_free(qdf_nbuf_queue_t *head)
  618. {
  619. __qdf_nbuf_queue_free(head);
  620. }
  621. static inline qdf_nbuf_t
  622. qdf_nbuf_queue_first(qdf_nbuf_queue_t *head)
  623. {
  624. return __qdf_nbuf_queue_first(head);
  625. }
  626. /**
  627. * qdf_nbuf_next() - get the next packet in the linked list
  628. * @buf: Network buffer
  629. *
  630. * This function can be used when nbufs are directly linked into a list,
  631. * rather than using a separate network buffer queue object.
  632. *
  633. * Return: next network buffer in the linked list
  634. */
  635. static inline qdf_nbuf_t qdf_nbuf_next(qdf_nbuf_t buf)
  636. {
  637. return __qdf_nbuf_next(buf);
  638. }
  639. /**
  640. * qdf_nbuf_get_protocol() - return the protocol value of the skb
  641. * @skb: Pointer to network buffer
  642. *
  643. * Return: skb protocol
  644. */
  645. static inline uint16_t qdf_nbuf_get_protocol(struct sk_buff *skb)
  646. {
  647. return __qdf_nbuf_get_protocol(skb);
  648. }
  649. /**
  650. * qdf_nbuf_get_ip_summed() - return the ip checksum value of the skb
  651. * @skb: Pointer to network buffer
  652. *
  653. * Return: skb ip_summed
  654. */
  655. static inline uint8_t qdf_nbuf_get_ip_summed(struct sk_buff *skb)
  656. {
  657. return __qdf_nbuf_get_ip_summed(skb);
  658. }
  659. /**
  660. * qdf_nbuf_set_ip_summed() - sets the ip_summed value of the skb
  661. * @skb: Pointer to network buffer
  662. * @ip_summed: ip checksum
  663. *
  664. * Return: none
  665. */
  666. static inline void qdf_nbuf_set_ip_summed(struct sk_buff *skb,
  667. uint8_t ip_summed)
  668. {
  669. __qdf_nbuf_set_ip_summed(skb, ip_summed);
  670. }
  671. /**
  672. * qdf_nbuf_set_next() - add a packet to a linked list
  673. * @this_buf: Predecessor buffer
  674. * @next_buf: Successor buffer
  675. *
  676. * This function can be used to directly link nbufs, rather than using
  677. * a separate network buffer queue object.
  678. *
  679. * Return: none
  680. */
  681. static inline void qdf_nbuf_set_next(qdf_nbuf_t this_buf, qdf_nbuf_t next_buf)
  682. {
  683. __qdf_nbuf_set_next(this_buf, next_buf);
  684. }
  685. /* nbuf extension routines */
  686. /**
  687. * qdf_nbuf_set_next_ext() - link extension of this packet contained in a new
  688. * nbuf
  689. * @this_buf: predecessor buffer
  690. * @next_buf: successor buffer
  691. *
  692. * This function is used to link up many nbufs containing a single logical
  693. * packet - not a collection of packets. Do not use for linking the first
  694. * extension to the head
  695. *
  696. * Return: none
  697. */
  698. static inline void
  699. qdf_nbuf_set_next_ext(qdf_nbuf_t this_buf, qdf_nbuf_t next_buf)
  700. {
  701. __qdf_nbuf_set_next_ext(this_buf, next_buf);
  702. }
  703. /**
  704. * qdf_nbuf_next_ext() - get the next packet extension in the linked list
  705. * @buf: Network buffer
  706. *
  707. * Return: Next network buffer in the linked list
  708. */
  709. static inline qdf_nbuf_t qdf_nbuf_next_ext(qdf_nbuf_t buf)
  710. {
  711. return __qdf_nbuf_next_ext(buf);
  712. }
  713. /**
  714. * qdf_nbuf_append_ext_list() - link list of packet extensions to the head
  715. * segment
  716. * @head_buf: Network buf holding head segment (single)
  717. * @ext_list: Network buf list holding linked extensions to the head
  718. * @ext_len: Total length of all buffers in the extension list
  719. *
  720. * This function is used to link up a list of packet extensions (seg1, 2,
  721. * ...) to the nbuf holding the head segment (seg0)
  722. *
  723. * Return: none
  724. */
  725. static inline void
  726. qdf_nbuf_append_ext_list(qdf_nbuf_t head_buf, qdf_nbuf_t ext_list,
  727. qdf_size_t ext_len)
  728. {
  729. __qdf_nbuf_append_ext_list(head_buf, ext_list, ext_len);
  730. }
  731. /**
  732. * qdf_nbuf_get_tx_cksum() - gets the tx checksum offload demand
  733. * @buf: Network buffer
  734. *
  735. * Return: qdf_nbuf_tx_cksum_t checksum offload demand for the frame
  736. */
  737. static inline qdf_nbuf_tx_cksum_t qdf_nbuf_get_tx_cksum(qdf_nbuf_t buf)
  738. {
  739. return __qdf_nbuf_get_tx_cksum(buf);
  740. }
  741. /**
  742. * qdf_nbuf_set_rx_cksum() - drivers that support hw checksumming use this to
  743. * indicate checksum info to the stack.
  744. * @buf: Network buffer
  745. * @cksum: Checksum
  746. *
  747. * Return: none
  748. */
  749. static inline void
  750. qdf_nbuf_set_rx_cksum(qdf_nbuf_t buf, qdf_nbuf_rx_cksum_t *cksum)
  751. {
  752. __qdf_nbuf_set_rx_cksum(buf, cksum);
  753. }
  754. /**
  755. * qdf_nbuf_get_tid() - this function extracts the TID value from nbuf
  756. * @buf: Network buffer
  757. *
  758. * Return: TID value
  759. */
  760. static inline uint8_t qdf_nbuf_get_tid(qdf_nbuf_t buf)
  761. {
  762. return __qdf_nbuf_get_tid(buf);
  763. }
  764. /**
  765. * qdf_nbuf_set_tid() - this function sets the TID value in nbuf
  766. * @buf: Network buffer
  767. * @tid: TID value
  768. *
  769. * Return: none
  770. */
  771. static inline void qdf_nbuf_set_tid(qdf_nbuf_t buf, uint8_t tid)
  772. {
  773. __qdf_nbuf_set_tid(buf, tid);
  774. }
  775. /**
  776. * qdf_nbuf_get_exemption_type() - this function extracts the exemption type
  777. * from nbuf
  778. * @buf: Network buffer
  779. *
  780. * Return: Exemption type
  781. */
  782. static inline uint8_t qdf_nbuf_get_exemption_type(qdf_nbuf_t buf)
  783. {
  784. return __qdf_nbuf_get_exemption_type(buf);
  785. }
  786. /**
  787. * qdf_nbuf_set_protocol() - this function peeks data into the buffer at given
  788. * offset
  789. * @buf: Network buffer
  790. * @proto: Protocol
  791. *
  792. * Return: none
  793. */
  794. static inline void qdf_nbuf_set_protocol(qdf_nbuf_t buf, uint16_t proto)
  795. {
  796. __qdf_nbuf_set_protocol(buf, proto);
  797. }
  798. /**
  799. * qdf_nbuf_trace_get_proto_type() - this function return packet proto type
  800. * @buf: Network buffer
  801. *
  802. * Return: Packet protocol type
  803. */
  804. static inline uint8_t qdf_nbuf_trace_get_proto_type(qdf_nbuf_t buf)
  805. {
  806. return __qdf_nbuf_trace_get_proto_type(buf);
  807. }
  808. #ifdef QCA_PKT_PROTO_TRACE
  809. /**
  810. * qdf_nbuf_trace_set_proto_type() - this function updates packet proto type
  811. * @buf: Network buffer
  812. * @proto_type: Protocol type
  813. *
  814. * Return: none
  815. */
  816. static inline void
  817. qdf_nbuf_trace_set_proto_type(qdf_nbuf_t buf, uint8_t proto_type)
  818. {
  819. __qdf_nbuf_trace_set_proto_type(buf, proto_type);
  820. }
  821. #else
  822. static inline void
  823. qdf_nbuf_trace_set_proto_type(qdf_nbuf_t buf, uint8_t proto_type)
  824. {
  825. return;
  826. }
  827. #endif
  828. /**
  829. * qdf_nbuf_reg_trace_cb() - this function registers protocol trace callback
  830. * @cb_func_ptr: Callback pointer
  831. *
  832. * Return: none
  833. */
  834. static inline void qdf_nbuf_reg_trace_cb(qdf_nbuf_trace_update_t cb_func_ptr)
  835. {
  836. __qdf_nbuf_reg_trace_cb(cb_func_ptr);
  837. }
  838. /**
  839. * qdf_nbuf_trace_update() - this function updates protocol event
  840. * @buf: Network buffer
  841. * @event_string: Event string pointer
  842. *
  843. * Return: none
  844. */
  845. static inline void qdf_nbuf_trace_update(qdf_nbuf_t buf, char *event_string)
  846. {
  847. __qdf_nbuf_trace_update(buf, event_string);
  848. }
  849. /**
  850. * qdf_nbuf_set_tx_parallel_dnload_frm() - set tx parallel download
  851. * @buf: Network buffer
  852. * @candi: Candidate of parallel download frame
  853. *
  854. * This function stores a flag specifying this TX frame is suitable for
  855. * downloading though a 2nd TX data pipe that is used for short frames for
  856. * protocols that can accept out-of-order delivery.
  857. *
  858. * Return: none
  859. */
  860. static inline void
  861. qdf_nbuf_set_tx_parallel_dnload_frm(qdf_nbuf_t buf, uint8_t candi)
  862. {
  863. __qdf_nbuf_set_tx_htt2_frm(buf, candi);
  864. }
  865. /**
  866. * qdf_nbuf_get_tx_parallel_dnload_frm() - get tx parallel download
  867. * @buf: Network buffer
  868. *
  869. * This function return whether this TX frame is allow to download though a 2nd
  870. * TX data pipe or not.
  871. *
  872. * Return: none
  873. */
  874. static inline uint8_t qdf_nbuf_get_tx_parallel_dnload_frm(qdf_nbuf_t buf)
  875. {
  876. return __qdf_nbuf_get_tx_htt2_frm(buf);
  877. }
  878. /**
  879. * qdf_invalidate_range() - invalidate the virtual address range specified by
  880. * start and end addresses.
  881. * Note: This does not write back the cache entries.
  882. *
  883. * Return: none
  884. */
  885. #ifdef MSM_PLATFORM
  886. static inline void qdf_invalidate_range(void *start, void *end)
  887. {
  888. dmac_inv_range(start, end);
  889. }
  890. #else
  891. static inline void qdf_invalidate_range(void *start, void *end)
  892. {
  893. /* TODO figure out how to invalidate cache on x86 and other
  894. non-MSM platform */
  895. QDF_TRACE(QDF_MODULE_ID_QDF, QDF_TRACE_LEVEL_FATAL,
  896. "Cache invalidate not yet implemneted for non-MSM platform");
  897. return;
  898. }
  899. #endif
  900. /**
  901. * qdf_nbuf_reset_num_frags() - decrement the number of fragments
  902. * @buf: Network buffer
  903. *
  904. * Return: Number of fragments
  905. */
  906. static inline void qdf_nbuf_reset_num_frags(qdf_nbuf_t buf)
  907. {
  908. __qdf_nbuf_reset_num_frags(buf);
  909. }
  910. /**
  911. * qdf_nbuf_is_tso() - is the network buffer a jumbo packet?
  912. * @buf: Network buffer
  913. *
  914. * Return: 1 - this is a jumbo packet 0 - not a jumbo packet
  915. */
  916. static inline uint8_t qdf_nbuf_is_tso(qdf_nbuf_t nbuf)
  917. {
  918. return __qdf_nbuf_is_tso(nbuf);
  919. }
  920. /**
  921. * qdf_nbuf_get_tso_info() - function to divide a jumbo TSO
  922. * network buffer into segments
  923. * @nbuf: network buffer to be segmented
  924. * @tso_info: This is the output. The information about the
  925. * TSO segments will be populated within this.
  926. *
  927. * This function fragments a TCP jumbo packet into smaller
  928. * segments to be transmitted by the driver. It chains the TSO
  929. * segments created into a list.
  930. *
  931. * Return: number of TSO segments
  932. */
  933. static inline uint32_t qdf_nbuf_get_tso_info(qdf_device_t osdev,
  934. qdf_nbuf_t nbuf, struct qdf_tso_info_t *tso_info)
  935. {
  936. return __qdf_nbuf_get_tso_info(osdev, nbuf, tso_info);
  937. }
  938. /**
  939. * qdf_nbuf_get_tso_num_seg() - function to calculate the number
  940. * of TCP segments within the TSO jumbo packet
  941. * @nbuf: TSO jumbo network buffer to be segmented
  942. *
  943. * This function calculates the number of TCP segments that the
  944. network buffer can be divided into.
  945. *
  946. * Return: number of TCP segments
  947. */
  948. static inline uint32_t qdf_nbuf_get_tso_num_seg(qdf_nbuf_t nbuf)
  949. {
  950. return __qdf_nbuf_get_tso_num_seg(nbuf);
  951. }
  952. /**
  953. * qdf_nbuf_inc_users() - function to increment the number of
  954. * users referencing this network buffer
  955. *
  956. * @nbuf: network buffer
  957. *
  958. * This function increments the number of users referencing this
  959. * network buffer
  960. *
  961. * Return: the network buffer
  962. */
  963. static inline qdf_nbuf_t qdf_nbuf_inc_users(qdf_nbuf_t nbuf)
  964. {
  965. return __qdf_nbuf_inc_users(nbuf);
  966. }
  967. /**
  968. * qdf_nbuf_data_attr_get() - Get data_attr field from cvg_nbuf_cb
  969. *
  970. * @nbuf: Network buffer (skb on linux)
  971. *
  972. * This function returns the values of data_attr field
  973. * in struct cvg_nbuf_cb{}, to which skb->cb is typecast.
  974. * This value is actually the value programmed in CE descriptor.
  975. *
  976. * Return: Value of data_attr
  977. */
  978. static inline uint32_t qdf_nbuf_data_attr_get(qdf_nbuf_t buf)
  979. {
  980. return __qdf_nbuf_data_attr_get(buf);
  981. }
  982. /**
  983. * qdf_nbuf_data_attr_set() - Sets data_attr field in cvg_nbuf_cb
  984. *
  985. * @nbuf: Network buffer (skb on linux)
  986. * @data_attr: Value to be stored cvg_nbuf_cb->data_attr
  987. *
  988. * This function stores the value to be programmed in CE
  989. * descriptor as part skb->cb which is typecast to struct cvg_nbuf_cb{}
  990. *
  991. * Return: void
  992. */
  993. static inline
  994. void qdf_nbuf_data_attr_set(qdf_nbuf_t buf, uint32_t data_attr)
  995. {
  996. __qdf_nbuf_data_attr_set(buf, data_attr);
  997. }
  998. /**
  999. * qdf_nbuf_tx_info_get() - Parse skb and get Tx metadata
  1000. *
  1001. * @nbuf: Network buffer (skb on linux)
  1002. *
  1003. * This function parses the payload to figure out relevant
  1004. * Tx meta-data e.g. whether to enable tx_classify bit
  1005. * in CE.
  1006. *
  1007. * Return: void
  1008. */
  1009. #define qdf_nbuf_tx_info_get __qdf_nbuf_tx_info_get
  1010. void qdf_nbuf_set_state(qdf_nbuf_t nbuf, uint8_t current_state);
  1011. void qdf_nbuf_tx_desc_count_display(void);
  1012. void qdf_nbuf_tx_desc_count_clear(void);
  1013. static inline qdf_nbuf_t
  1014. qdf_nbuf_realloc_headroom(qdf_nbuf_t buf, uint32_t headroom)
  1015. {
  1016. return __qdf_nbuf_realloc_headroom(buf, headroom);
  1017. }
  1018. static inline qdf_nbuf_t
  1019. qdf_nbuf_realloc_tailroom(qdf_nbuf_t buf, uint32_t tailroom)
  1020. {
  1021. return __qdf_nbuf_realloc_tailroom(buf, tailroom);
  1022. }
  1023. static inline qdf_nbuf_t
  1024. qdf_nbuf_expand(qdf_nbuf_t buf, uint32_t headroom, uint32_t tailroom)
  1025. {
  1026. return __qdf_nbuf_expand(buf, headroom, tailroom);
  1027. }
  1028. static inline qdf_nbuf_t
  1029. qdf_nbuf_unshare(qdf_nbuf_t buf)
  1030. {
  1031. return __qdf_nbuf_unshare(buf);
  1032. }
  1033. static inline bool
  1034. qdf_nbuf_is_cloned(qdf_nbuf_t buf)
  1035. {
  1036. return __qdf_nbuf_is_cloned(buf);
  1037. }
  1038. static inline void
  1039. qdf_nbuf_frag_info(qdf_nbuf_t buf, qdf_sglist_t *sg)
  1040. {
  1041. __qdf_nbuf_frag_info(buf, sg);
  1042. }
  1043. static inline qdf_nbuf_tx_cksum_t
  1044. qdf_nbuf_tx_cksum_info(qdf_nbuf_t buf, uint8_t **hdr_off, uint8_t **where)
  1045. {
  1046. return __qdf_nbuf_tx_cksum_info(buf, hdr_off, where);
  1047. }
  1048. static inline void qdf_nbuf_reset_ctxt(__qdf_nbuf_t nbuf)
  1049. {
  1050. __qdf_nbuf_reset_ctxt(nbuf);
  1051. }
  1052. static inline void
  1053. qdf_nbuf_set_rx_info(__qdf_nbuf_t nbuf, void *info, uint32_t len)
  1054. {
  1055. __qdf_nbuf_set_rx_info(nbuf, info, len);
  1056. }
  1057. static inline void *qdf_nbuf_get_rx_info(__qdf_nbuf_t nbuf)
  1058. {
  1059. return __qdf_nbuf_get_rx_info(nbuf);
  1060. }
  1061. static inline void qdf_nbuf_init(qdf_nbuf_t buf)
  1062. {
  1063. __qdf_nbuf_init(buf);
  1064. }
  1065. static inline void *qdf_nbuf_network_header(qdf_nbuf_t buf)
  1066. {
  1067. return __qdf_nbuf_network_header(buf);
  1068. }
  1069. static inline void *qdf_nbuf_transport_header(qdf_nbuf_t buf)
  1070. {
  1071. return __qdf_nbuf_transport_header(buf);
  1072. }
  1073. static inline qdf_size_t qdf_nbuf_tcp_tso_size(qdf_nbuf_t buf)
  1074. {
  1075. return __qdf_nbuf_tcp_tso_size(buf);
  1076. }
  1077. static inline void *qdf_nbuf_get_cb(qdf_nbuf_t nbuf)
  1078. {
  1079. return __qdf_nbuf_get_cb(nbuf);
  1080. }
  1081. static inline uint32_t qdf_nbuf_get_nr_frags(qdf_nbuf_t nbuf)
  1082. {
  1083. return __qdf_nbuf_get_nr_frags(nbuf);
  1084. }
  1085. static inline qdf_size_t qdf_nbuf_headlen(qdf_nbuf_t buf)
  1086. {
  1087. return __qdf_nbuf_headlen(buf);
  1088. }
  1089. static inline QDF_STATUS qdf_nbuf_frag_map(qdf_device_t osdev,
  1090. qdf_nbuf_t buf, int offset,
  1091. qdf_dma_dir_t dir, int cur_frag)
  1092. {
  1093. return __qdf_nbuf_frag_map(osdev, buf, offset, dir, cur_frag);
  1094. }
  1095. static inline bool qdf_nbuf_tso_tcp_v4(qdf_nbuf_t buf)
  1096. {
  1097. return __qdf_nbuf_tso_tcp_v4(buf);
  1098. }
  1099. static inline bool qdf_nbuf_tso_tcp_v6(qdf_nbuf_t buf)
  1100. {
  1101. return __qdf_nbuf_tso_tcp_v6(buf);
  1102. }
  1103. static inline uint32_t qdf_nbuf_tcp_seq(qdf_nbuf_t buf)
  1104. {
  1105. return __qdf_nbuf_tcp_seq(buf);
  1106. }
  1107. static inline qdf_size_t qdf_nbuf_l2l3l4_hdr_len(qdf_nbuf_t buf)
  1108. {
  1109. return __qdf_nbuf_l2l3l4_hdr_len(buf);
  1110. }
  1111. static inline bool qdf_nbuf_is_nonlinear(qdf_nbuf_t buf)
  1112. {
  1113. return __qdf_nbuf_is_nonlinear(buf);
  1114. }
  1115. static inline uint32_t
  1116. qdf_nbuf_get_frag_size(qdf_nbuf_t buf, uint32_t frag_num)
  1117. {
  1118. return __qdf_nbuf_get_frag_size(buf, frag_num);
  1119. }
  1120. static inline uint32_t qdf_nbuf_get_priority(qdf_nbuf_t buf)
  1121. {
  1122. return __qdf_nbuf_get_priority(buf);
  1123. }
  1124. static inline void qdf_nbuf_set_priority(qdf_nbuf_t buf, uint32_t p)
  1125. {
  1126. __qdf_nbuf_set_priority(buf, p);
  1127. }
  1128. static inline uint8_t *
  1129. qdf_nbuf_get_priv_ptr(qdf_nbuf_t buf)
  1130. {
  1131. return __qdf_nbuf_get_priv_ptr(buf);
  1132. }
  1133. #endif /* _QDF_NBUF_H */