vnic_intr.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 _VNIC_INTR_H_
  19. #define _VNIC_INTR_H_
  20. #include <linux/pci.h>
  21. #include "vnic_dev.h"
  22. /*
  23. * These defines avoid symbol clash between fnic and enic (Cisco 10G Eth
  24. * Driver) when both are built with CONFIG options =y
  25. */
  26. #define vnic_intr_unmask fnic_intr_unmask
  27. #define vnic_intr_mask fnic_intr_mask
  28. #define vnic_intr_return_credits fnic_intr_return_credits
  29. #define vnic_intr_credits fnic_intr_credits
  30. #define vnic_intr_return_all_credits fnic_intr_return_all_credits
  31. #define vnic_intr_legacy_pba fnic_intr_legacy_pba
  32. #define vnic_intr_free fnic_intr_free
  33. #define vnic_intr_alloc fnic_intr_alloc
  34. #define vnic_intr_init fnic_intr_init
  35. #define vnic_intr_clean fnic_intr_clean
  36. #define VNIC_INTR_TIMER_MAX 0xffff
  37. #define VNIC_INTR_TIMER_TYPE_ABS 0
  38. #define VNIC_INTR_TIMER_TYPE_QUIET 1
  39. /* Interrupt control */
  40. struct vnic_intr_ctrl {
  41. u32 coalescing_timer; /* 0x00 */
  42. u32 pad0;
  43. u32 coalescing_value; /* 0x08 */
  44. u32 pad1;
  45. u32 coalescing_type; /* 0x10 */
  46. u32 pad2;
  47. u32 mask_on_assertion; /* 0x18 */
  48. u32 pad3;
  49. u32 mask; /* 0x20 */
  50. u32 pad4;
  51. u32 int_credits; /* 0x28 */
  52. u32 pad5;
  53. u32 int_credit_return; /* 0x30 */
  54. u32 pad6;
  55. };
  56. struct vnic_intr {
  57. unsigned int index;
  58. struct vnic_dev *vdev;
  59. struct vnic_intr_ctrl __iomem *ctrl; /* memory-mapped */
  60. };
  61. static inline void vnic_intr_unmask(struct vnic_intr *intr)
  62. {
  63. iowrite32(0, &intr->ctrl->mask);
  64. }
  65. static inline void vnic_intr_mask(struct vnic_intr *intr)
  66. {
  67. iowrite32(1, &intr->ctrl->mask);
  68. }
  69. static inline void vnic_intr_return_credits(struct vnic_intr *intr,
  70. unsigned int credits, int unmask, int reset_timer)
  71. {
  72. #define VNIC_INTR_UNMASK_SHIFT 16
  73. #define VNIC_INTR_RESET_TIMER_SHIFT 17
  74. u32 int_credit_return = (credits & 0xffff) |
  75. (unmask ? (1 << VNIC_INTR_UNMASK_SHIFT) : 0) |
  76. (reset_timer ? (1 << VNIC_INTR_RESET_TIMER_SHIFT) : 0);
  77. iowrite32(int_credit_return, &intr->ctrl->int_credit_return);
  78. }
  79. static inline unsigned int vnic_intr_credits(struct vnic_intr *intr)
  80. {
  81. return ioread32(&intr->ctrl->int_credits);
  82. }
  83. static inline void vnic_intr_return_all_credits(struct vnic_intr *intr)
  84. {
  85. unsigned int credits = vnic_intr_credits(intr);
  86. int unmask = 1;
  87. int reset_timer = 1;
  88. vnic_intr_return_credits(intr, credits, unmask, reset_timer);
  89. }
  90. static inline u32 vnic_intr_legacy_pba(u32 __iomem *legacy_pba)
  91. {
  92. /* read PBA without clearing */
  93. return ioread32(legacy_pba);
  94. }
  95. void vnic_intr_free(struct vnic_intr *intr);
  96. int vnic_intr_alloc(struct vnic_dev *vdev, struct vnic_intr *intr,
  97. unsigned int index);
  98. void vnic_intr_init(struct vnic_intr *intr, unsigned int coalescing_timer,
  99. unsigned int coalescing_type, unsigned int mask_on_assertion);
  100. void vnic_intr_clean(struct vnic_intr *intr);
  101. #endif /* _VNIC_INTR_H_ */