1 /**********************************************************************
4 * Contact: support@cavium.com
5 * Please include "LiquidIO" in the subject.
7 * Copyright (c) 2003-2016 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
18 **********************************************************************/
20 /*! \file octeon_nic.h
21 * \brief Host NIC Driver: Routine to send network data &
22 * control packet to Octeon.
25 #ifndef __OCTEON_NIC_H__
26 #define __OCTEON_NIC_H__
28 /* Maximum number of 8-byte words can be sent in a NIC control message.
30 #define MAX_NCTRL_UDD 32
32 typedef void (*octnic_ctrl_pkt_cb_fn_t
) (void *);
34 /* Structure of control information passed by the NIC module to the OSI
35 * layer when sending control commands to Octeon device software.
37 struct octnic_ctrl_pkt
{
38 /** Command to be passed to the Octeon device software. */
39 union octnet_cmd ncmd
;
45 /** Response buffer */
49 /** Additional data that may be needed by some commands. */
50 u64 udd
[MAX_NCTRL_UDD
];
52 /** Input queue to use to send this command. */
55 /** The network device that issued the control command. */
58 /** Callback function called when the command has been fetched */
59 octnic_ctrl_pkt_cb_fn_t cb_fn
;
64 #define MAX_UDD_SIZE(nctrl) (sizeof((nctrl)->udd))
66 /** Structure of data information passed by the NIC module to the OSI
67 * layer when forwarding data to Octeon device software.
69 struct octnic_data_pkt
{
70 /** Pointer to information maintained by NIC module for this packet. The
71 * OSI layer passes this as-is to the driver.
75 /** Type of buffer passed in "buf" above. */
78 /** Total data bytes to be transferred in this command. */
81 /** Command to be passed to the Octeon device software. */
82 union octeon_instr_64B cmd
;
84 /** Input queue to use to send this command. */
89 /** Structure passed by NIC module to OSI layer to prepare a command to send
90 * network data to Octeon.
92 union octnic_cmd_setup
{
112 static inline int octnet_iq_is_full(struct octeon_device
*oct
, u32 q_no
)
114 return ((u32
)atomic_read(&oct
->instr_queue
[q_no
]->instr_pending
)
115 >= (oct
->instr_queue
[q_no
]->max_count
- 2));
119 octnet_prepare_pci_cmd_o2(struct octeon_device
*oct
,
120 union octeon_instr_64B
*cmd
,
121 union octnic_cmd_setup
*setup
, u32 tag
)
123 struct octeon_instr_ih2
*ih2
;
124 struct octeon_instr_irh
*irh
;
125 union octnic_packet_params packet_params
;
128 memset(cmd
, 0, sizeof(union octeon_instr_64B
));
130 ih2
= (struct octeon_instr_ih2
*)&cmd
->cmd2
.ih2
;
132 /* assume that rflag is cleared so therefore front data will only have
133 * irh and ossp[0], ossp[1] for a total of 32 bytes
135 ih2
->fsz
= LIO_PCICMD_O2
;
137 ih2
->tagtype
= ORDERED_TAG
;
138 ih2
->grp
= DEFAULT_POW_GRP
;
140 port
= (int)oct
->instr_queue
[setup
->s
.iq_no
]->txpciq
.s
.port
;
145 ih2
->tag
= LIO_DATA(port
);
148 ih2
->qos
= (port
& 3) + 4; /* map qos based on interface */
150 if (!setup
->s
.gather
) {
151 ih2
->dlengsz
= setup
->s
.u
.datasize
;
154 ih2
->dlengsz
= setup
->s
.u
.gatherptrs
;
157 irh
= (struct octeon_instr_irh
*)&cmd
->cmd2
.irh
;
159 irh
->opcode
= OPCODE_NIC
;
160 irh
->subcode
= OPCODE_NIC_NW_DATA
;
162 packet_params
.u32
= 0;
164 packet_params
.s
.ip_csum
= setup
->s
.ip_csum
;
165 packet_params
.s
.transport_csum
= setup
->s
.transport_csum
;
166 packet_params
.s
.tnl_csum
= setup
->s
.tnl_csum
;
167 packet_params
.s
.tsflag
= setup
->s
.timestamp
;
169 irh
->ossp
= packet_params
.u32
;
173 octnet_prepare_pci_cmd_o3(struct octeon_device
*oct
,
174 union octeon_instr_64B
*cmd
,
175 union octnic_cmd_setup
*setup
, u32 tag
)
177 struct octeon_instr_irh
*irh
;
178 struct octeon_instr_ih3
*ih3
;
179 struct octeon_instr_pki_ih3
*pki_ih3
;
180 union octnic_packet_params packet_params
;
183 memset(cmd
, 0, sizeof(union octeon_instr_64B
));
185 ih3
= (struct octeon_instr_ih3
*)&cmd
->cmd3
.ih3
;
186 pki_ih3
= (struct octeon_instr_pki_ih3
*)&cmd
->cmd3
.pki_ih3
;
188 /* assume that rflag is cleared so therefore front data will only have
189 * irh and ossp[1] and ossp[2] for a total of 24 bytes
191 ih3
->pkind
= oct
->instr_queue
[setup
->s
.iq_no
]->txpciq
.s
.pkind
;
193 ih3
->fsz
= LIO_PCICMD_O3
;
195 if (!setup
->s
.gather
) {
196 ih3
->dlengsz
= setup
->s
.u
.datasize
;
199 ih3
->dlengsz
= setup
->s
.u
.gatherptrs
;
206 pki_ih3
->uqpg
= oct
->instr_queue
[setup
->s
.iq_no
]->txpciq
.s
.use_qpg
;
208 port
= (int)oct
->instr_queue
[setup
->s
.iq_no
]->txpciq
.s
.port
;
213 pki_ih3
->tag
= LIO_DATA(port
);
215 pki_ih3
->tagtype
= ORDERED_TAG
;
216 pki_ih3
->qpg
= oct
->instr_queue
[setup
->s
.iq_no
]->txpciq
.s
.qpg
;
217 pki_ih3
->pm
= 0x7; /*0x7 - meant for Parse nothing, uninterpreted*/
218 pki_ih3
->sl
= 8; /* sl will be sizeof(pki_ih3)*/
220 irh
= (struct octeon_instr_irh
*)&cmd
->cmd3
.irh
;
222 irh
->opcode
= OPCODE_NIC
;
223 irh
->subcode
= OPCODE_NIC_NW_DATA
;
225 packet_params
.u32
= 0;
227 packet_params
.s
.ip_csum
= setup
->s
.ip_csum
;
228 packet_params
.s
.transport_csum
= setup
->s
.transport_csum
;
229 packet_params
.s
.tnl_csum
= setup
->s
.tnl_csum
;
230 packet_params
.s
.tsflag
= setup
->s
.timestamp
;
232 irh
->ossp
= packet_params
.u32
;
235 /** Utility function to prepare a 64B NIC instruction based on a setup command
236 * @param cmd - pointer to instruction to be filled in.
237 * @param setup - pointer to the setup structure
238 * @param q_no - which queue for back pressure
240 * Assumes the cmd instruction is pre-allocated, but no fields are filled in.
243 octnet_prepare_pci_cmd(struct octeon_device
*oct
, union octeon_instr_64B
*cmd
,
244 union octnic_cmd_setup
*setup
, u32 tag
)
246 if (OCTEON_CN6XXX(oct
))
247 octnet_prepare_pci_cmd_o2(oct
, cmd
, setup
, tag
);
249 octnet_prepare_pci_cmd_o3(oct
, cmd
, setup
, tag
);
252 /** Allocate and a soft command with space for a response immediately following
254 * @param oct - octeon device pointer
255 * @param cmd - pointer to the command structure, pre-filled for everything
256 * except the response.
257 * @param rdatasize - size in bytes of the response.
259 * @returns pointer to allocated buffer with command copied into it, and
260 * response space immediately following.
263 octeon_alloc_soft_command_resp(struct octeon_device
*oct
,
264 union octeon_instr_64B
*cmd
,
267 /** Send a NIC data packet to the device
268 * @param oct - octeon device pointer
269 * @param ndata - control structure with queueing, and buffer information
271 * @returns IQ_FAILED if it failed to add to the input queue. IQ_STOP if it the
272 * queue should be stopped, and IQ_SEND_OK if it sent okay.
274 int octnet_send_nic_data_pkt(struct octeon_device
*oct
,
275 struct octnic_data_pkt
*ndata
,
278 /** Send a NIC control packet to the device
279 * @param oct - octeon device pointer
280 * @param nctrl - control structure with command, timout, and callback info
281 * @returns IQ_FAILED if it failed to add to the input queue. IQ_STOP if it the
282 * queue should be stopped, and IQ_SEND_OK if it sent okay.
285 octnet_send_nic_ctrl_pkt(struct octeon_device
*oct
,
286 struct octnic_ctrl_pkt
*nctrl
);