1 /**********************************************************************
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
7 * Copyright (c) 2003-2015 Cavium, Inc.
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.
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
19 * This file may also be available under a different license from Cavium.
20 * Contact Cavium, Inc. for more information
21 **********************************************************************/
22 #include <linux/version.h>
23 #include <linux/types.h>
24 #include <linux/list.h>
25 #include <linux/interrupt.h>
26 #include <linux/pci.h>
27 #include <linux/kthread.h>
28 #include <linux/netdevice.h>
29 #include "octeon_config.h"
30 #include "liquidio_common.h"
31 #include "octeon_droq.h"
32 #include "octeon_iq.h"
33 #include "response_manager.h"
34 #include "octeon_device.h"
35 #include "octeon_nic.h"
36 #include "octeon_main.h"
37 #include "octeon_network.h"
38 #include "cn66xx_regs.h"
39 #include "cn66xx_device.h"
40 #include "cn68xx_regs.h"
41 #include "cn68xx_device.h"
42 #include "liquidio_image.h"
43 #include "octeon_mem_ops.h"
46 octeon_alloc_soft_command_resp(struct octeon_device *oct,
47 struct octeon_instr_64B *cmd,
50 struct octeon_soft_command *sc;
51 struct octeon_instr_ih *ih;
52 struct octeon_instr_irh *irh;
53 struct octeon_instr_rdp *rdp;
55 sc = (struct octeon_soft_command *)
56 octeon_alloc_soft_command(oct, 0, rdatasize, 0);
61 /* Copy existing command structure into the soft command */
62 memcpy(&sc->cmd, cmd, sizeof(struct octeon_instr_64B));
64 /* Add in the response related fields. Opcode and Param are already
67 ih = (struct octeon_instr_ih *)&sc->cmd.ih;
68 ih->fsz = 40; /* irh + ossp[0] + ossp[1] + rdp + rptr = 40 bytes */
70 irh = (struct octeon_instr_irh *)&sc->cmd.irh;
71 irh->rflag = 1; /* a response is required */
72 irh->len = 4; /* means four 64-bit words immediately follow irh */
74 rdp = (struct octeon_instr_rdp *)&sc->cmd.rdp;
75 rdp->pcie_port = oct->pcie_port;
76 rdp->rlen = rdatasize;
78 *sc->status_word = COMPLETION_WORD_INIT;
81 sc->timeout = jiffies + sc->wait_time;
86 int octnet_send_nic_data_pkt(struct octeon_device *oct,
87 struct octnic_data_pkt *ndata,
92 ring_doorbell = !xmit_more;
94 return octeon_send_command(oct, ndata->q_no, ring_doorbell, &ndata->cmd,
95 ndata->buf, ndata->datasize,
99 static void octnet_link_ctrl_callback(struct octeon_device *oct,
103 struct octeon_soft_command *sc = (struct octeon_soft_command *)sc_ptr;
104 struct octnic_ctrl_pkt *nctrl;
106 nctrl = (struct octnic_ctrl_pkt *)sc->ctxptr;
108 /* Call the callback function if status is OK.
109 * Status is OK only if a response was expected and core returned
111 * If no response was expected, status is OK if the command was posted
114 if (!status && nctrl->cb_fn)
117 octeon_free_soft_command(oct, sc);
120 static inline struct octeon_soft_command
121 *octnic_alloc_ctrl_pkt_sc(struct octeon_device *oct,
122 struct octnic_ctrl_pkt *nctrl,
123 struct octnic_ctrl_params nparams)
125 struct octeon_soft_command *sc = NULL;
128 u32 uddsize = 0, datasize = 0;
130 uddsize = (u32)(nctrl->ncmd.s.more * 8);
132 datasize = OCTNET_CMD_SIZE + uddsize;
133 rdatasize = (nctrl->wait_time) ? 16 : 0;
135 sc = (struct octeon_soft_command *)
136 octeon_alloc_soft_command(oct, datasize, rdatasize,
137 sizeof(struct octnic_ctrl_pkt));
142 memcpy(sc->ctxptr, nctrl, sizeof(struct octnic_ctrl_pkt));
144 data = (u8 *)sc->virtdptr;
146 memcpy(data, &nctrl->ncmd, OCTNET_CMD_SIZE);
148 octeon_swap_8B_data((u64 *)data, (OCTNET_CMD_SIZE >> 3));
151 /* Endian-Swap for UDD should have been done by caller. */
152 memcpy(data + OCTNET_CMD_SIZE, nctrl->udd, uddsize);
155 octeon_prepare_soft_command(oct, sc, OPCODE_NIC, OPCODE_NIC_CMD,
158 sc->callback = octnet_link_ctrl_callback;
159 sc->callback_arg = sc;
160 sc->wait_time = nctrl->wait_time;
166 octnet_send_nic_ctrl_pkt(struct octeon_device *oct,
167 struct octnic_ctrl_pkt *nctrl,
168 struct octnic_ctrl_params nparams)
171 struct octeon_soft_command *sc = NULL;
173 sc = octnic_alloc_ctrl_pkt_sc(oct, nctrl, nparams);
175 dev_err(&oct->pci_dev->dev, "%s soft command alloc failed\n",
180 retval = octeon_send_soft_command(oct, sc);
182 octeon_free_soft_command(oct, sc);
183 dev_err(&oct->pci_dev->dev, "%s soft command send failed status: %x\n",