vnic_cq.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
  3. * Copyright 2007 Nuova Systems, Inc. All rights reserved.
  4. *
  5. * This program is free software; you may redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; version 2 of the License.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  10. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  11. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  12. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  13. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  14. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  15. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  16. * SOFTWARE.
  17. *
  18. */
  19. #ifndef _VNIC_CQ_H_
  20. #define _VNIC_CQ_H_
  21. #include "cq_desc.h"
  22. #include "vnic_dev.h"
  23. /* Completion queue control */
  24. struct vnic_cq_ctrl {
  25. u64 ring_base; /* 0x00 */
  26. u32 ring_size; /* 0x08 */
  27. u32 pad0;
  28. u32 flow_control_enable; /* 0x10 */
  29. u32 pad1;
  30. u32 color_enable; /* 0x18 */
  31. u32 pad2;
  32. u32 cq_head; /* 0x20 */
  33. u32 pad3;
  34. u32 cq_tail; /* 0x28 */
  35. u32 pad4;
  36. u32 cq_tail_color; /* 0x30 */
  37. u32 pad5;
  38. u32 interrupt_enable; /* 0x38 */
  39. u32 pad6;
  40. u32 cq_entry_enable; /* 0x40 */
  41. u32 pad7;
  42. u32 cq_message_enable; /* 0x48 */
  43. u32 pad8;
  44. u32 interrupt_offset; /* 0x50 */
  45. u32 pad9;
  46. u64 cq_message_addr; /* 0x58 */
  47. u32 pad10;
  48. };
  49. struct vnic_cq {
  50. unsigned int index;
  51. struct vnic_dev *vdev;
  52. struct vnic_cq_ctrl __iomem *ctrl; /* memory-mapped */
  53. struct vnic_dev_ring ring;
  54. unsigned int to_clean;
  55. unsigned int last_color;
  56. };
  57. static inline unsigned int vnic_cq_service(struct vnic_cq *cq,
  58. unsigned int work_to_do,
  59. int (*q_service)(struct vnic_dev *vdev, struct cq_desc *cq_desc,
  60. u8 type, u16 q_number, u16 completed_index, void *opaque),
  61. void *opaque)
  62. {
  63. struct cq_desc *cq_desc;
  64. unsigned int work_done = 0;
  65. u16 q_number, completed_index;
  66. u8 type, color;
  67. cq_desc = (struct cq_desc *)((u8 *)cq->ring.descs +
  68. cq->ring.desc_size * cq->to_clean);
  69. cq_desc_dec(cq_desc, &type, &color,
  70. &q_number, &completed_index);
  71. while (color != cq->last_color) {
  72. if ((*q_service)(cq->vdev, cq_desc, type,
  73. q_number, completed_index, opaque))
  74. break;
  75. cq->to_clean++;
  76. if (cq->to_clean == cq->ring.desc_count) {
  77. cq->to_clean = 0;
  78. cq->last_color = cq->last_color ? 0 : 1;
  79. }
  80. cq_desc = (struct cq_desc *)((u8 *)cq->ring.descs +
  81. cq->ring.desc_size * cq->to_clean);
  82. cq_desc_dec(cq_desc, &type, &color,
  83. &q_number, &completed_index);
  84. work_done++;
  85. if (work_done >= work_to_do)
  86. break;
  87. }
  88. return work_done;
  89. }
  90. void vnic_cq_free(struct vnic_cq *cq);
  91. int vnic_cq_alloc(struct vnic_dev *vdev, struct vnic_cq *cq, unsigned int index,
  92. unsigned int desc_count, unsigned int desc_size);
  93. void vnic_cq_init(struct vnic_cq *cq, unsigned int flow_control_enable,
  94. unsigned int color_enable, unsigned int cq_head, unsigned int cq_tail,
  95. unsigned int cq_tail_color, unsigned int interrupt_enable,
  96. unsigned int cq_entry_enable, unsigned int message_enable,
  97. unsigned int interrupt_offset, u64 message_addr);
  98. void vnic_cq_clean(struct vnic_cq *cq);
  99. #endif /* _VNIC_CQ_H_ */