Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / drivers / net / ethernet / cavium / liquidio / octeon_nic.h
blobb71a2bbe4bee4a3537f5e09b779842e876e2633d
1 /**********************************************************************
2 * Author: Cavium, Inc.
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
17 * details.
19 * This file may also be available under a different license from Cavium.
20 * Contact Cavium, Inc. for more information
21 **********************************************************************/
23 /*! \file octeon_nic.h
24 * \brief Host NIC Driver: Routine to send network data &
25 * control packet to Octeon.
28 #ifndef __OCTEON_NIC_H__
29 #define __OCTEON_NIC_H__
31 /* Maximum number of 8-byte words can be sent in a NIC control message.
33 #define MAX_NCTRL_UDD 32
35 typedef void (*octnic_ctrl_pkt_cb_fn_t) (void *);
37 /* Structure of control information passed by the NIC module to the OSI
38 * layer when sending control commands to Octeon device software.
40 struct octnic_ctrl_pkt {
41 /** Command to be passed to the Octeon device software. */
42 union octnet_cmd ncmd;
44 /** Send buffer */
45 void *data;
46 u64 dmadata;
48 /** Response buffer */
49 void *rdata;
50 u64 dmardata;
52 /** Additional data that may be needed by some commands. */
53 u64 udd[MAX_NCTRL_UDD];
55 /** Input queue to use to send this command. */
56 u64 iq_no;
58 /** Time to wait for Octeon software to respond to this control command.
59 * If wait_time is 0, OSI assumes no response is expected.
61 size_t wait_time;
63 /** The network device that issued the control command. */
64 u64 netpndev;
66 /** Callback function called when the command has been fetched */
67 octnic_ctrl_pkt_cb_fn_t cb_fn;
70 #define MAX_UDD_SIZE(nctrl) (sizeof(nctrl->udd))
72 /** Structure of data information passed by the NIC module to the OSI
73 * layer when forwarding data to Octeon device software.
75 struct octnic_data_pkt {
76 /** Pointer to information maintained by NIC module for this packet. The
77 * OSI layer passes this as-is to the driver.
79 void *buf;
81 /** Type of buffer passed in "buf" above. */
82 u32 reqtype;
84 /** Total data bytes to be transferred in this command. */
85 u32 datasize;
87 /** Command to be passed to the Octeon device software. */
88 union octeon_instr_64B cmd;
90 /** Input queue to use to send this command. */
91 u32 q_no;
95 /** Structure passed by NIC module to OSI layer to prepare a command to send
96 * network data to Octeon.
98 union octnic_cmd_setup {
99 struct {
100 u32 iq_no:8;
101 u32 gather:1;
102 u32 timestamp:1;
103 u32 ip_csum:1;
104 u32 transport_csum:1;
105 u32 tnl_csum:1;
106 u32 rsvd:19;
108 union {
109 u32 datasize;
110 u32 gatherptrs;
111 } u;
112 } s;
114 u64 u64;
118 static inline int octnet_iq_is_full(struct octeon_device *oct, u32 q_no)
120 return ((u32)atomic_read(&oct->instr_queue[q_no]->instr_pending)
121 >= (oct->instr_queue[q_no]->max_count - 2));
124 static inline void
125 octnet_prepare_pci_cmd_o2(struct octeon_device *oct,
126 union octeon_instr_64B *cmd,
127 union octnic_cmd_setup *setup, u32 tag)
129 struct octeon_instr_ih2 *ih2;
130 struct octeon_instr_irh *irh;
131 union octnic_packet_params packet_params;
132 int port;
134 memset(cmd, 0, sizeof(union octeon_instr_64B));
136 ih2 = (struct octeon_instr_ih2 *)&cmd->cmd2.ih2;
138 /* assume that rflag is cleared so therefore front data will only have
139 * irh and ossp[0], ossp[1] for a total of 32 bytes
141 ih2->fsz = 24;
143 ih2->tagtype = ORDERED_TAG;
144 ih2->grp = DEFAULT_POW_GRP;
146 port = (int)oct->instr_queue[setup->s.iq_no]->txpciq.s.port;
148 if (tag)
149 ih2->tag = tag;
150 else
151 ih2->tag = LIO_DATA(port);
153 ih2->raw = 1;
154 ih2->qos = (port & 3) + 4; /* map qos based on interface */
156 if (!setup->s.gather) {
157 ih2->dlengsz = setup->s.u.datasize;
158 } else {
159 ih2->gather = 1;
160 ih2->dlengsz = setup->s.u.gatherptrs;
163 irh = (struct octeon_instr_irh *)&cmd->cmd2.irh;
165 irh->opcode = OPCODE_NIC;
166 irh->subcode = OPCODE_NIC_NW_DATA;
168 packet_params.u32 = 0;
170 packet_params.s.ip_csum = setup->s.ip_csum;
171 packet_params.s.transport_csum = setup->s.transport_csum;
172 packet_params.s.tnl_csum = setup->s.tnl_csum;
173 packet_params.s.tsflag = setup->s.timestamp;
175 irh->ossp = packet_params.u32;
178 static inline void
179 octnet_prepare_pci_cmd_o3(struct octeon_device *oct,
180 union octeon_instr_64B *cmd,
181 union octnic_cmd_setup *setup, u32 tag)
183 struct octeon_instr_irh *irh;
184 struct octeon_instr_ih3 *ih3;
185 struct octeon_instr_pki_ih3 *pki_ih3;
186 union octnic_packet_params packet_params;
187 int port;
189 memset(cmd, 0, sizeof(union octeon_instr_64B));
191 ih3 = (struct octeon_instr_ih3 *)&cmd->cmd3.ih3;
192 pki_ih3 = (struct octeon_instr_pki_ih3 *)&cmd->cmd3.pki_ih3;
194 /* assume that rflag is cleared so therefore front data will only have
195 * irh and ossp[1] and ossp[2] for a total of 24 bytes
197 ih3->pkind = oct->instr_queue[setup->s.iq_no]->txpciq.s.pkind;
198 /*PKI IH*/
199 ih3->fsz = 24 + 8;
201 if (!setup->s.gather) {
202 ih3->dlengsz = setup->s.u.datasize;
203 } else {
204 ih3->gather = 1;
205 ih3->dlengsz = setup->s.u.gatherptrs;
208 pki_ih3->w = 1;
209 pki_ih3->raw = 1;
210 pki_ih3->utag = 1;
211 pki_ih3->utt = 1;
212 pki_ih3->uqpg = oct->instr_queue[setup->s.iq_no]->txpciq.s.use_qpg;
214 port = (int)oct->instr_queue[setup->s.iq_no]->txpciq.s.port;
216 if (tag)
217 pki_ih3->tag = tag;
218 else
219 pki_ih3->tag = LIO_DATA(port);
221 pki_ih3->tagtype = ORDERED_TAG;
222 pki_ih3->qpg = oct->instr_queue[setup->s.iq_no]->txpciq.s.qpg;
223 pki_ih3->pm = 0x7; /*0x7 - meant for Parse nothing, uninterpreted*/
224 pki_ih3->sl = 8; /* sl will be sizeof(pki_ih3)*/
226 irh = (struct octeon_instr_irh *)&cmd->cmd3.irh;
228 irh->opcode = OPCODE_NIC;
229 irh->subcode = OPCODE_NIC_NW_DATA;
231 packet_params.u32 = 0;
233 packet_params.s.ip_csum = setup->s.ip_csum;
234 packet_params.s.transport_csum = setup->s.transport_csum;
235 packet_params.s.tnl_csum = setup->s.tnl_csum;
236 packet_params.s.tsflag = setup->s.timestamp;
238 irh->ossp = packet_params.u32;
241 /** Utility function to prepare a 64B NIC instruction based on a setup command
242 * @param cmd - pointer to instruction to be filled in.
243 * @param setup - pointer to the setup structure
244 * @param q_no - which queue for back pressure
246 * Assumes the cmd instruction is pre-allocated, but no fields are filled in.
248 static inline void
249 octnet_prepare_pci_cmd(struct octeon_device *oct, union octeon_instr_64B *cmd,
250 union octnic_cmd_setup *setup, u32 tag)
252 if (OCTEON_CN6XXX(oct))
253 octnet_prepare_pci_cmd_o2(oct, cmd, setup, tag);
254 else
255 octnet_prepare_pci_cmd_o3(oct, cmd, setup, tag);
258 /** Allocate and a soft command with space for a response immediately following
259 * the commnad.
260 * @param oct - octeon device pointer
261 * @param cmd - pointer to the command structure, pre-filled for everything
262 * except the response.
263 * @param rdatasize - size in bytes of the response.
265 * @returns pointer to allocated buffer with command copied into it, and
266 * response space immediately following.
268 void *
269 octeon_alloc_soft_command_resp(struct octeon_device *oct,
270 union octeon_instr_64B *cmd,
271 u32 rdatasize);
273 /** Send a NIC data packet to the device
274 * @param oct - octeon device pointer
275 * @param ndata - control structure with queueing, and buffer information
277 * @returns IQ_FAILED if it failed to add to the input queue. IQ_STOP if it the
278 * queue should be stopped, and IQ_SEND_OK if it sent okay.
280 int octnet_send_nic_data_pkt(struct octeon_device *oct,
281 struct octnic_data_pkt *ndata, u32 xmit_more);
283 /** Send a NIC control packet to the device
284 * @param oct - octeon device pointer
285 * @param nctrl - control structure with command, timout, and callback info
286 * @returns IQ_FAILED if it failed to add to the input queue. IQ_STOP if it the
287 * queue should be stopped, and IQ_SEND_OK if it sent okay.
290 octnet_send_nic_ctrl_pkt(struct octeon_device *oct,
291 struct octnic_ctrl_pkt *nctrl);
293 #endif