cdp_txrx_cfg.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * Copyright (c) 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. * @file cdp_txrx_cfg.h
  28. * @brief Define the host data path configuration API functions
  29. */
  30. #ifndef _CDP_TXRX_CFG_H_
  31. #define _CDP_TXRX_CFG_H_
  32. /**
  33. * struct txrx_pdev_cfg_param_t - configuration information
  34. * passed to the data path
  35. */
  36. struct txrx_pdev_cfg_param_t {
  37. uint8_t is_full_reorder_offload;
  38. /* IPA Micro controller data path offload enable flag */
  39. uint8_t is_uc_offload_enabled;
  40. /* IPA Micro controller data path offload TX buffer count */
  41. uint32_t uc_tx_buffer_count;
  42. /* IPA Micro controller data path offload TX buffer size */
  43. uint32_t uc_tx_buffer_size;
  44. /* IPA Micro controller data path offload RX indication ring count */
  45. uint32_t uc_rx_indication_ring_count;
  46. /* IPA Micro controller data path offload TX partition base */
  47. uint32_t uc_tx_partition_base;
  48. /* IP, TCP and UDP checksum offload */
  49. bool ip_tcp_udp_checksum_offload;
  50. /* Rx processing in thread from TXRX */
  51. bool enable_rxthread;
  52. /* CE classification enabled through INI */
  53. bool ce_classify_enabled;
  54. #ifdef QCA_LL_TX_FLOW_CONTROL_V2
  55. /* Threshold to stop queue in percentage */
  56. uint32_t tx_flow_stop_queue_th;
  57. /* Start queue offset in percentage */
  58. uint32_t tx_flow_start_queue_offset;
  59. #endif
  60. };
  61. void ol_set_cfg_rx_fwd_disabled(ol_pdev_handle pdev, uint8_t disable_rx_fwd);
  62. void ol_set_cfg_packet_log_enabled(ol_pdev_handle pdev, uint8_t val);
  63. ol_pdev_handle ol_pdev_cfg_attach(qdf_device_t osdev,
  64. struct txrx_pdev_cfg_param_t cfg_param);
  65. void ol_vdev_rx_set_intrabss_fwd(ol_txrx_vdev_handle vdev, bool val);
  66. /**
  67. * ol_txrx_get_opmode() - Return operation mode of vdev
  68. * @vdev: vdev handle
  69. *
  70. * Return: operation mode.
  71. */
  72. int ol_txrx_get_opmode(ol_txrx_vdev_handle vdev);
  73. /**
  74. * ol_txrx_is_rx_fwd_disabled() - returns the rx_fwd_disabled status on vdev
  75. * @vdev: vdev handle
  76. *
  77. * Return: Rx Fwd disabled status
  78. */
  79. uint8_t
  80. ol_txrx_is_rx_fwd_disabled(ol_txrx_vdev_handle vdev);
  81. #endif /* _CDP_TXRX_CFG_H_ */