cq_desc.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright 2008 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. #ifndef _CQ_DESC_H_
  19. #define _CQ_DESC_H_
  20. /*
  21. * Completion queue descriptor types
  22. */
  23. enum cq_desc_types {
  24. CQ_DESC_TYPE_WQ_ENET = 0,
  25. CQ_DESC_TYPE_DESC_COPY = 1,
  26. CQ_DESC_TYPE_WQ_EXCH = 2,
  27. CQ_DESC_TYPE_RQ_ENET = 3,
  28. CQ_DESC_TYPE_RQ_FCP = 4,
  29. };
  30. /* Completion queue descriptor: 16B
  31. *
  32. * All completion queues have this basic layout. The
  33. * type_specfic area is unique for each completion
  34. * queue type.
  35. */
  36. struct cq_desc {
  37. __le16 completed_index;
  38. __le16 q_number;
  39. u8 type_specfic[11];
  40. u8 type_color;
  41. };
  42. #define CQ_DESC_TYPE_BITS 4
  43. #define CQ_DESC_TYPE_MASK ((1 << CQ_DESC_TYPE_BITS) - 1)
  44. #define CQ_DESC_COLOR_MASK 1
  45. #define CQ_DESC_COLOR_SHIFT 7
  46. #define CQ_DESC_Q_NUM_BITS 10
  47. #define CQ_DESC_Q_NUM_MASK ((1 << CQ_DESC_Q_NUM_BITS) - 1)
  48. #define CQ_DESC_COMP_NDX_BITS 12
  49. #define CQ_DESC_COMP_NDX_MASK ((1 << CQ_DESC_COMP_NDX_BITS) - 1)
  50. static inline void cq_desc_dec(const struct cq_desc *desc_arg,
  51. u8 *type, u8 *color, u16 *q_number, u16 *completed_index)
  52. {
  53. const struct cq_desc *desc = desc_arg;
  54. const u8 type_color = desc->type_color;
  55. *color = (type_color >> CQ_DESC_COLOR_SHIFT) & CQ_DESC_COLOR_MASK;
  56. /*
  57. * Make sure color bit is read from desc *before* other fields
  58. * are read from desc. Hardware guarantees color bit is last
  59. * bit (byte) written. Adding the rmb() prevents the compiler
  60. * and/or CPU from reordering the reads which would potentially
  61. * result in reading stale values.
  62. */
  63. rmb();
  64. *type = type_color & CQ_DESC_TYPE_MASK;
  65. *q_number = le16_to_cpu(desc->q_number) & CQ_DESC_Q_NUM_MASK;
  66. *completed_index = le16_to_cpu(desc->completed_index) &
  67. CQ_DESC_COMP_NDX_MASK;
  68. }
  69. #endif /* _CQ_DESC_H_ */