i40e_adminq.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*******************************************************************************
  2. *
  3. * Intel Ethernet Controller XL710 Family Linux Virtual Function Driver
  4. * Copyright(c) 2013 - 2014 Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with this program. If not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * The full GNU General Public License is included in this distribution in
  19. * the file called "COPYING".
  20. *
  21. * Contact Information:
  22. * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
  23. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  24. *
  25. ******************************************************************************/
  26. #ifndef _I40E_ADMINQ_H_
  27. #define _I40E_ADMINQ_H_
  28. #include "i40e_osdep.h"
  29. #include "i40e_adminq_cmd.h"
  30. #define I40E_ADMINQ_DESC(R, i) \
  31. (&(((struct i40e_aq_desc *)((R).desc_buf.va))[i]))
  32. #define I40E_ADMINQ_DESC_ALIGNMENT 4096
  33. struct i40e_adminq_ring {
  34. struct i40e_virt_mem dma_head; /* space for dma structures */
  35. struct i40e_dma_mem desc_buf; /* descriptor ring memory */
  36. struct i40e_virt_mem cmd_buf; /* command buffer memory */
  37. union {
  38. struct i40e_dma_mem *asq_bi;
  39. struct i40e_dma_mem *arq_bi;
  40. } r;
  41. u16 count; /* Number of descriptors */
  42. u16 rx_buf_len; /* Admin Receive Queue buffer length */
  43. /* used for interrupt processing */
  44. u16 next_to_use;
  45. u16 next_to_clean;
  46. /* used for queue tracking */
  47. u32 head;
  48. u32 tail;
  49. u32 len;
  50. u32 bah;
  51. u32 bal;
  52. };
  53. /* ASQ transaction details */
  54. struct i40e_asq_cmd_details {
  55. void *callback; /* cast from type I40E_ADMINQ_CALLBACK */
  56. u64 cookie;
  57. u16 flags_ena;
  58. u16 flags_dis;
  59. bool async;
  60. bool postpone;
  61. };
  62. #define I40E_ADMINQ_DETAILS(R, i) \
  63. (&(((struct i40e_asq_cmd_details *)((R).cmd_buf.va))[i]))
  64. /* ARQ event information */
  65. struct i40e_arq_event_info {
  66. struct i40e_aq_desc desc;
  67. u16 msg_size;
  68. u8 *msg_buf;
  69. };
  70. /* Admin Queue information */
  71. struct i40e_adminq_info {
  72. struct i40e_adminq_ring arq; /* receive queue */
  73. struct i40e_adminq_ring asq; /* send queue */
  74. u32 asq_cmd_timeout; /* send queue cmd write back timeout*/
  75. u16 num_arq_entries; /* receive queue depth */
  76. u16 num_asq_entries; /* send queue depth */
  77. u16 arq_buf_size; /* receive queue buffer size */
  78. u16 asq_buf_size; /* send queue buffer size */
  79. u16 fw_maj_ver; /* firmware major version */
  80. u16 fw_min_ver; /* firmware minor version */
  81. u16 api_maj_ver; /* api major version */
  82. u16 api_min_ver; /* api minor version */
  83. bool nvm_busy;
  84. bool nvm_release_on_done;
  85. struct mutex asq_mutex; /* Send queue lock */
  86. struct mutex arq_mutex; /* Receive queue lock */
  87. /* last status values on send and receive queues */
  88. enum i40e_admin_queue_err asq_last_status;
  89. enum i40e_admin_queue_err arq_last_status;
  90. };
  91. /**
  92. * i40e_aq_rc_to_posix - convert errors to user-land codes
  93. * aq_rc: AdminQ error code to convert
  94. **/
  95. static inline int i40e_aq_rc_to_posix(u16 aq_rc)
  96. {
  97. int aq_to_posix[] = {
  98. 0, /* I40E_AQ_RC_OK */
  99. -EPERM, /* I40E_AQ_RC_EPERM */
  100. -ENOENT, /* I40E_AQ_RC_ENOENT */
  101. -ESRCH, /* I40E_AQ_RC_ESRCH */
  102. -EINTR, /* I40E_AQ_RC_EINTR */
  103. -EIO, /* I40E_AQ_RC_EIO */
  104. -ENXIO, /* I40E_AQ_RC_ENXIO */
  105. -E2BIG, /* I40E_AQ_RC_E2BIG */
  106. -EAGAIN, /* I40E_AQ_RC_EAGAIN */
  107. -ENOMEM, /* I40E_AQ_RC_ENOMEM */
  108. -EACCES, /* I40E_AQ_RC_EACCES */
  109. -EFAULT, /* I40E_AQ_RC_EFAULT */
  110. -EBUSY, /* I40E_AQ_RC_EBUSY */
  111. -EEXIST, /* I40E_AQ_RC_EEXIST */
  112. -EINVAL, /* I40E_AQ_RC_EINVAL */
  113. -ENOTTY, /* I40E_AQ_RC_ENOTTY */
  114. -ENOSPC, /* I40E_AQ_RC_ENOSPC */
  115. -ENOSYS, /* I40E_AQ_RC_ENOSYS */
  116. -ERANGE, /* I40E_AQ_RC_ERANGE */
  117. -EPIPE, /* I40E_AQ_RC_EFLUSHED */
  118. -ESPIPE, /* I40E_AQ_RC_BAD_ADDR */
  119. -EROFS, /* I40E_AQ_RC_EMODE */
  120. -EFBIG, /* I40E_AQ_RC_EFBIG */
  121. };
  122. return aq_to_posix[aq_rc];
  123. }
  124. /* general information */
  125. #define I40E_AQ_LARGE_BUF 512
  126. #define I40E_ASQ_CMD_TIMEOUT 100000 /* usecs */
  127. void i40evf_fill_default_direct_cmd_desc(struct i40e_aq_desc *desc,
  128. u16 opcode);
  129. #endif /* _I40E_ADMINQ_H_ */