vnic_cq.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright 2008 Cisco Systems, Inc. All rights reserved.
  4. * Copyright 2007 Nuova Systems, Inc. All rights reserved.
  5. */
  6. #include <linux/errno.h>
  7. #include <linux/types.h>
  8. #include <linux/pci.h>
  9. #include "vnic_dev.h"
  10. #include "vnic_cq.h"
  11. void vnic_cq_free(struct vnic_cq *cq)
  12. {
  13. vnic_dev_free_desc_ring(cq->vdev, &cq->ring);
  14. cq->ctrl = NULL;
  15. }
  16. int vnic_cq_alloc(struct vnic_dev *vdev, struct vnic_cq *cq, unsigned int index,
  17. unsigned int desc_count, unsigned int desc_size)
  18. {
  19. int err;
  20. cq->index = index;
  21. cq->vdev = vdev;
  22. cq->ctrl = vnic_dev_get_res(vdev, RES_TYPE_CQ, index);
  23. if (!cq->ctrl) {
  24. printk(KERN_ERR "Failed to hook CQ[%d] resource\n", index);
  25. return -EINVAL;
  26. }
  27. err = vnic_dev_alloc_desc_ring(vdev, &cq->ring, desc_count, desc_size);
  28. if (err)
  29. return err;
  30. return 0;
  31. }
  32. void vnic_cq_init(struct vnic_cq *cq, unsigned int flow_control_enable,
  33. unsigned int color_enable, unsigned int cq_head, unsigned int cq_tail,
  34. unsigned int cq_tail_color, unsigned int interrupt_enable,
  35. unsigned int cq_entry_enable, unsigned int cq_message_enable,
  36. unsigned int interrupt_offset, u64 cq_message_addr)
  37. {
  38. u64 paddr;
  39. paddr = (u64)cq->ring.base_addr | VNIC_PADDR_TARGET;
  40. writeq(paddr, &cq->ctrl->ring_base);
  41. iowrite32(cq->ring.desc_count, &cq->ctrl->ring_size);
  42. iowrite32(flow_control_enable, &cq->ctrl->flow_control_enable);
  43. iowrite32(color_enable, &cq->ctrl->color_enable);
  44. iowrite32(cq_head, &cq->ctrl->cq_head);
  45. iowrite32(cq_tail, &cq->ctrl->cq_tail);
  46. iowrite32(cq_tail_color, &cq->ctrl->cq_tail_color);
  47. iowrite32(interrupt_enable, &cq->ctrl->interrupt_enable);
  48. iowrite32(cq_entry_enable, &cq->ctrl->cq_entry_enable);
  49. iowrite32(cq_message_enable, &cq->ctrl->cq_message_enable);
  50. iowrite32(interrupt_offset, &cq->ctrl->interrupt_offset);
  51. writeq(cq_message_addr, &cq->ctrl->cq_message_addr);
  52. }
  53. void vnic_cq_clean(struct vnic_cq *cq)
  54. {
  55. cq->to_clean = 0;
  56. cq->last_color = 0;
  57. iowrite32(0, &cq->ctrl->cq_head);
  58. iowrite32(0, &cq->ctrl->cq_tail);
  59. iowrite32(1, &cq->ctrl->cq_tail_color);
  60. vnic_dev_clear_desc_ring(&cq->ring);
  61. }