octeon_nic.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /**********************************************************************
  2. * Author: Cavium, Inc.
  3. *
  4. * Contact: support@cavium.com
  5. * Please include "LiquidIO" in the subject.
  6. *
  7. * Copyright (c) 2003-2016 Cavium, Inc.
  8. *
  9. * This file is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License, Version 2, as
  11. * published by the Free Software Foundation.
  12. *
  13. * This file is distributed in the hope that it will be useful, but
  14. * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
  15. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
  16. * NONINFRINGEMENT. See the GNU General Public License for more
  17. * details.
  18. **********************************************************************/
  19. #include <linux/pci.h>
  20. #include <linux/netdevice.h>
  21. #include "liquidio_common.h"
  22. #include "octeon_droq.h"
  23. #include "octeon_iq.h"
  24. #include "response_manager.h"
  25. #include "octeon_device.h"
  26. #include "octeon_nic.h"
  27. #include "octeon_main.h"
  28. void *
  29. octeon_alloc_soft_command_resp(struct octeon_device *oct,
  30. union octeon_instr_64B *cmd,
  31. u32 rdatasize)
  32. {
  33. struct octeon_soft_command *sc;
  34. struct octeon_instr_ih3 *ih3;
  35. struct octeon_instr_ih2 *ih2;
  36. struct octeon_instr_irh *irh;
  37. struct octeon_instr_rdp *rdp;
  38. sc = (struct octeon_soft_command *)
  39. octeon_alloc_soft_command(oct, 0, rdatasize, 0);
  40. if (!sc)
  41. return NULL;
  42. /* Copy existing command structure into the soft command */
  43. memcpy(&sc->cmd, cmd, sizeof(union octeon_instr_64B));
  44. /* Add in the response related fields. Opcode and Param are already
  45. * there.
  46. */
  47. if (OCTEON_CN23XX_PF(oct)) {
  48. ih3 = (struct octeon_instr_ih3 *)&sc->cmd.cmd3.ih3;
  49. rdp = (struct octeon_instr_rdp *)&sc->cmd.cmd3.rdp;
  50. irh = (struct octeon_instr_irh *)&sc->cmd.cmd3.irh;
  51. /*pkiih3 + irh + ossp[0] + ossp[1] + rdp + rptr = 40 bytes */
  52. ih3->fsz = LIO_SOFTCMDRESP_IH3;
  53. } else {
  54. ih2 = (struct octeon_instr_ih2 *)&sc->cmd.cmd2.ih2;
  55. rdp = (struct octeon_instr_rdp *)&sc->cmd.cmd2.rdp;
  56. irh = (struct octeon_instr_irh *)&sc->cmd.cmd2.irh;
  57. /* irh + ossp[0] + ossp[1] + rdp + rptr = 40 bytes */
  58. ih2->fsz = LIO_SOFTCMDRESP_IH2;
  59. }
  60. irh->rflag = 1; /* a response is required */
  61. rdp->pcie_port = oct->pcie_port;
  62. rdp->rlen = rdatasize;
  63. *sc->status_word = COMPLETION_WORD_INIT;
  64. if (OCTEON_CN23XX_PF(oct))
  65. sc->cmd.cmd3.rptr = sc->dmarptr;
  66. else
  67. sc->cmd.cmd2.rptr = sc->dmarptr;
  68. sc->wait_time = 1000;
  69. sc->timeout = jiffies + sc->wait_time;
  70. return sc;
  71. }
  72. int octnet_send_nic_data_pkt(struct octeon_device *oct,
  73. struct octnic_data_pkt *ndata)
  74. {
  75. int ring_doorbell = 1;
  76. return octeon_send_command(oct, ndata->q_no, ring_doorbell, &ndata->cmd,
  77. ndata->buf, ndata->datasize,
  78. ndata->reqtype);
  79. }
  80. static void octnet_link_ctrl_callback(struct octeon_device *oct,
  81. u32 status,
  82. void *sc_ptr)
  83. {
  84. struct octeon_soft_command *sc = (struct octeon_soft_command *)sc_ptr;
  85. struct octnic_ctrl_pkt *nctrl;
  86. nctrl = (struct octnic_ctrl_pkt *)sc->ctxptr;
  87. /* Call the callback function if status is OK.
  88. * Status is OK only if a response was expected and core returned
  89. * success.
  90. * If no response was expected, status is OK if the command was posted
  91. * successfully.
  92. */
  93. if (!status && nctrl->cb_fn)
  94. nctrl->cb_fn(nctrl);
  95. octeon_free_soft_command(oct, sc);
  96. }
  97. static inline struct octeon_soft_command
  98. *octnic_alloc_ctrl_pkt_sc(struct octeon_device *oct,
  99. struct octnic_ctrl_pkt *nctrl)
  100. {
  101. struct octeon_soft_command *sc = NULL;
  102. u8 *data;
  103. u32 rdatasize;
  104. u32 uddsize = 0, datasize = 0;
  105. uddsize = (u32)(nctrl->ncmd.s.more * 8);
  106. datasize = OCTNET_CMD_SIZE + uddsize;
  107. rdatasize = (nctrl->wait_time) ? 16 : 0;
  108. sc = (struct octeon_soft_command *)
  109. octeon_alloc_soft_command(oct, datasize, rdatasize,
  110. sizeof(struct octnic_ctrl_pkt));
  111. if (!sc)
  112. return NULL;
  113. memcpy(sc->ctxptr, nctrl, sizeof(struct octnic_ctrl_pkt));
  114. data = (u8 *)sc->virtdptr;
  115. memcpy(data, &nctrl->ncmd, OCTNET_CMD_SIZE);
  116. octeon_swap_8B_data((u64 *)data, (OCTNET_CMD_SIZE >> 3));
  117. if (uddsize) {
  118. /* Endian-Swap for UDD should have been done by caller. */
  119. memcpy(data + OCTNET_CMD_SIZE, nctrl->udd, uddsize);
  120. }
  121. sc->iq_no = (u32)nctrl->iq_no;
  122. octeon_prepare_soft_command(oct, sc, OPCODE_NIC, OPCODE_NIC_CMD,
  123. 0, 0, 0);
  124. sc->callback = octnet_link_ctrl_callback;
  125. sc->callback_arg = sc;
  126. sc->wait_time = nctrl->wait_time;
  127. return sc;
  128. }
  129. int
  130. octnet_send_nic_ctrl_pkt(struct octeon_device *oct,
  131. struct octnic_ctrl_pkt *nctrl)
  132. {
  133. int retval;
  134. struct octeon_soft_command *sc = NULL;
  135. spin_lock_bh(&oct->cmd_resp_wqlock);
  136. /* Allow only rx ctrl command to stop traffic on the chip
  137. * during offline operations
  138. */
  139. if ((oct->cmd_resp_state == OCT_DRV_OFFLINE) &&
  140. (nctrl->ncmd.s.cmd != OCTNET_CMD_RX_CTL)) {
  141. spin_unlock_bh(&oct->cmd_resp_wqlock);
  142. dev_err(&oct->pci_dev->dev,
  143. "%s cmd:%d not processed since driver offline\n",
  144. __func__, nctrl->ncmd.s.cmd);
  145. return -1;
  146. }
  147. sc = octnic_alloc_ctrl_pkt_sc(oct, nctrl);
  148. if (!sc) {
  149. dev_err(&oct->pci_dev->dev, "%s soft command alloc failed\n",
  150. __func__);
  151. spin_unlock_bh(&oct->cmd_resp_wqlock);
  152. return -1;
  153. }
  154. retval = octeon_send_soft_command(oct, sc);
  155. if (retval == IQ_SEND_FAILED) {
  156. octeon_free_soft_command(oct, sc);
  157. dev_err(&oct->pci_dev->dev, "%s pf_num:%d soft command:%d send failed status: %x\n",
  158. __func__, oct->pf_num, nctrl->ncmd.s.cmd, retval);
  159. spin_unlock_bh(&oct->cmd_resp_wqlock);
  160. return -1;
  161. }
  162. spin_unlock_bh(&oct->cmd_resp_wqlock);
  163. return retval;
  164. }