qdf_nbuf.h 30 KB

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