blob: 53f364d577399b15d07db5a07309d637a9539b4b [file] [log] [blame]
Greg Rose17367272010-01-09 02:25:48 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2009 Intel Corporation.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
23 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26*******************************************************************************/
27
28
29#include <linux/types.h>
30#include <linux/module.h>
31#include <linux/pci.h>
32#include <linux/netdevice.h>
33#include <linux/vmalloc.h>
34#include <linux/string.h>
35#include <linux/in.h>
36#include <linux/ip.h>
37#include <linux/tcp.h>
38#include <linux/ipv6.h>
39#ifdef NETIF_F_HW_VLAN_TX
40#include <linux/if_vlan.h>
41#endif
42
43#include "ixgbe.h"
44
45#include "ixgbe_sriov.h"
46
47int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
48 int entries, u16 *hash_list, u32 vf)
49{
50 struct vf_data_storage *vfinfo = &adapter->vfinfo[vf];
51 int i;
52
53 /* only so many hash values supported */
54 entries = min(entries, IXGBE_MAX_VF_MC_ENTRIES);
55
56 /*
57 * salt away the number of multi cast addresses assigned
58 * to this VF for later use to restore when the PF multi cast
59 * list changes
60 */
61 vfinfo->num_vf_mc_hashes = entries;
62
63 /*
64 * VFs are limited to using the MTA hash table for their multicast
65 * addresses
66 */
67 for (i = 0; i < entries; i++) {
68 vfinfo->vf_mc_hashes[i] = hash_list[i];;
69 }
70
71 /* Flush and reset the mta with the new values */
72 ixgbe_set_rx_mode(adapter->netdev);
73
74 return 0;
75}
76
77void ixgbe_restore_vf_multicasts(struct ixgbe_adapter *adapter)
78{
79 struct ixgbe_hw *hw = &adapter->hw;
80 struct vf_data_storage *vfinfo;
81 int i, j;
82 u32 vector_bit;
83 u32 vector_reg;
84 u32 mta_reg;
85
86 for (i = 0; i < adapter->num_vfs; i++) {
87 vfinfo = &adapter->vfinfo[i];
88 for (j = 0; j < vfinfo->num_vf_mc_hashes; j++) {
89 hw->addr_ctrl.mta_in_use++;
90 vector_reg = (vfinfo->vf_mc_hashes[j] >> 5) & 0x7F;
91 vector_bit = vfinfo->vf_mc_hashes[j] & 0x1F;
92 mta_reg = IXGBE_READ_REG(hw, IXGBE_MTA(vector_reg));
93 mta_reg |= (1 << vector_bit);
94 IXGBE_WRITE_REG(hw, IXGBE_MTA(vector_reg), mta_reg);
95 }
96 }
97}
98
99int ixgbe_set_vf_vlan(struct ixgbe_adapter *adapter, int add, int vid, u32 vf)
100{
101 u32 ctrl;
102
103 /* Check if global VLAN already set, if not set it */
104 ctrl = IXGBE_READ_REG(&adapter->hw, IXGBE_VLNCTRL);
105 if (!(ctrl & IXGBE_VLNCTRL_VFE)) {
106 /* enable VLAN tag insert/strip */
107 ctrl |= IXGBE_VLNCTRL_VFE;
108 ctrl &= ~IXGBE_VLNCTRL_CFIEN;
109 IXGBE_WRITE_REG(&adapter->hw, IXGBE_VLNCTRL, ctrl);
110 }
111
112 return adapter->hw.mac.ops.set_vfta(&adapter->hw, vid, vf, (bool)add);
113}
114
115
Greg Rosef0412772010-05-04 22:11:46 +0000116void ixgbe_set_vmolr(struct ixgbe_hw *hw, u32 vf, bool aupe)
Greg Rose17367272010-01-09 02:25:48 +0000117{
118 u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
Greg Rosef0412772010-05-04 22:11:46 +0000119 vmolr |= (IXGBE_VMOLR_ROMPE |
Greg Rose17367272010-01-09 02:25:48 +0000120 IXGBE_VMOLR_ROPE |
121 IXGBE_VMOLR_BAM);
Greg Rosef0412772010-05-04 22:11:46 +0000122 if (aupe)
123 vmolr |= IXGBE_VMOLR_AUPE;
124 else
125 vmolr &= ~IXGBE_VMOLR_AUPE;
Greg Rose17367272010-01-09 02:25:48 +0000126 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
127}
128
129inline void ixgbe_vf_reset_event(struct ixgbe_adapter *adapter, u32 vf)
130{
131 struct ixgbe_hw *hw = &adapter->hw;
132
133 /* reset offloads to defaults */
Greg Rosef0412772010-05-04 22:11:46 +0000134 ixgbe_set_vmolr(hw, vf, true);
Greg Rose17367272010-01-09 02:25:48 +0000135
136
137 /* reset multicast table array for vf */
138 adapter->vfinfo[vf].num_vf_mc_hashes = 0;
139
140 /* Flush and reset the mta with the new values */
141 ixgbe_set_rx_mode(adapter->netdev);
142
143 if (adapter->vfinfo[vf].rar > 0) {
144 adapter->hw.mac.ops.clear_rar(&adapter->hw,
145 adapter->vfinfo[vf].rar);
146 adapter->vfinfo[vf].rar = -1;
147 }
148}
149
150int ixgbe_set_vf_mac(struct ixgbe_adapter *adapter,
151 int vf, unsigned char *mac_addr)
152{
153 struct ixgbe_hw *hw = &adapter->hw;
154
155 adapter->vfinfo[vf].rar = hw->mac.ops.set_rar(hw, vf + 1, mac_addr,
156 vf, IXGBE_RAH_AV);
157 if (adapter->vfinfo[vf].rar < 0) {
158 DPRINTK(DRV, ERR, "Could not set MAC Filter for VF %d\n", vf);
159 return -1;
160 }
161
162 memcpy(adapter->vfinfo[vf].vf_mac_addresses, mac_addr, 6);
163
164 return 0;
165}
166
167int ixgbe_vf_configuration(struct pci_dev *pdev, unsigned int event_mask)
168{
169 unsigned char vf_mac_addr[6];
170 struct net_device *netdev = pci_get_drvdata(pdev);
171 struct ixgbe_adapter *adapter = netdev_priv(netdev);
172 unsigned int vfn = (event_mask & 0x3f);
173
174 bool enable = ((event_mask & 0x10000000U) != 0);
175
176 if (enable) {
177 random_ether_addr(vf_mac_addr);
178 DPRINTK(PROBE, INFO, "IOV: VF %d is enabled "
179 "mac %02X:%02X:%02X:%02X:%02X:%02X\n",
180 vfn,
181 vf_mac_addr[0], vf_mac_addr[1], vf_mac_addr[2],
182 vf_mac_addr[3], vf_mac_addr[4], vf_mac_addr[5]);
183 /*
184 * Store away the VF "permananet" MAC address, it will ask
185 * for it later.
186 */
187 memcpy(adapter->vfinfo[vfn].vf_mac_addresses, vf_mac_addr, 6);
188 }
189
190 return 0;
191}
192
193inline void ixgbe_vf_reset_msg(struct ixgbe_adapter *adapter, u32 vf)
194{
195 struct ixgbe_hw *hw = &adapter->hw;
196 u32 reg;
197 u32 reg_offset, vf_shift;
198
199 vf_shift = vf % 32;
200 reg_offset = vf / 32;
201
202 /* enable transmit and receive for vf */
203 reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
204 reg |= (reg | (1 << vf_shift));
205 IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
206
207 reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
208 reg |= (reg | (1 << vf_shift));
209 IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
210
211 ixgbe_vf_reset_event(adapter, vf);
212}
213
214static int ixgbe_rcv_msg_from_vf(struct ixgbe_adapter *adapter, u32 vf)
215{
216 u32 mbx_size = IXGBE_VFMAILBOX_SIZE;
217 u32 msgbuf[mbx_size];
218 struct ixgbe_hw *hw = &adapter->hw;
219 s32 retval;
220 int entries;
221 u16 *hash_list;
222 int add, vid;
223
224 retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
225
226 if (retval)
227 printk(KERN_ERR "Error receiving message from VF\n");
228
229 /* this is a message we already processed, do nothing */
230 if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
231 return retval;
232
233 /*
234 * until the vf completes a virtual function reset it should not be
235 * allowed to start any configuration.
236 */
237
238 if (msgbuf[0] == IXGBE_VF_RESET) {
239 unsigned char *vf_mac = adapter->vfinfo[vf].vf_mac_addresses;
240 u8 *addr = (u8 *)(&msgbuf[1]);
241 DPRINTK(PROBE, INFO, "VF Reset msg received from vf %d\n", vf);
242 adapter->vfinfo[vf].clear_to_send = false;
243 ixgbe_vf_reset_msg(adapter, vf);
244 adapter->vfinfo[vf].clear_to_send = true;
245
246 /* reply to reset with ack and vf mac address */
247 msgbuf[0] = IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK;
248 memcpy(addr, vf_mac, IXGBE_ETH_LENGTH_OF_ADDRESS);
249 /*
250 * Piggyback the multicast filter type so VF can compute the
251 * correct vectors
252 */
253 msgbuf[3] = hw->mac.mc_filter_type;
254 ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
255
256 return retval;
257 }
258
259 if (!adapter->vfinfo[vf].clear_to_send) {
260 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
261 ixgbe_write_mbx(hw, msgbuf, 1, vf);
262 return retval;
263 }
264
265 switch ((msgbuf[0] & 0xFFFF)) {
266 case IXGBE_VF_SET_MAC_ADDR:
267 {
268 u8 *new_mac = ((u8 *)(&msgbuf[1]));
269 if (is_valid_ether_addr(new_mac))
270 ixgbe_set_vf_mac(adapter, vf, new_mac);
271 else
272 retval = -1;
273 }
274 break;
275 case IXGBE_VF_SET_MULTICAST:
276 entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
277 >> IXGBE_VT_MSGINFO_SHIFT;
278 hash_list = (u16 *)&msgbuf[1];
279 retval = ixgbe_set_vf_multicasts(adapter, entries,
280 hash_list, vf);
281 break;
282 case IXGBE_VF_SET_LPE:
283 WARN_ON((msgbuf[0] & 0xFFFF) == IXGBE_VF_SET_LPE);
284 break;
285 case IXGBE_VF_SET_VLAN:
286 add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
287 >> IXGBE_VT_MSGINFO_SHIFT;
288 vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
289 retval = ixgbe_set_vf_vlan(adapter, add, vid, vf);
290 break;
291 default:
292 DPRINTK(DRV, ERR, "Unhandled Msg %8.8x\n", msgbuf[0]);
293 retval = IXGBE_ERR_MBX;
294 break;
295 }
296
297 /* notify the VF of the results of what it sent us */
298 if (retval)
299 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
300 else
301 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
302
303 msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
304
305 ixgbe_write_mbx(hw, msgbuf, 1, vf);
306
307 return retval;
308}
309
310static void ixgbe_rcv_ack_from_vf(struct ixgbe_adapter *adapter, u32 vf)
311{
312 struct ixgbe_hw *hw = &adapter->hw;
313 u32 msg = IXGBE_VT_MSGTYPE_NACK;
314
315 /* if device isn't clear to send it shouldn't be reading either */
316 if (!adapter->vfinfo[vf].clear_to_send)
317 ixgbe_write_mbx(hw, &msg, 1, vf);
318}
319
320void ixgbe_msg_task(struct ixgbe_adapter *adapter)
321{
322 struct ixgbe_hw *hw = &adapter->hw;
323 u32 vf;
324
325 for (vf = 0; vf < adapter->num_vfs; vf++) {
326 /* process any reset requests */
327 if (!ixgbe_check_for_rst(hw, vf))
328 ixgbe_vf_reset_event(adapter, vf);
329
330 /* process any messages pending */
331 if (!ixgbe_check_for_msg(hw, vf))
332 ixgbe_rcv_msg_from_vf(adapter, vf);
333
334 /* process any acks */
335 if (!ixgbe_check_for_ack(hw, vf))
336 ixgbe_rcv_ack_from_vf(adapter, vf);
337 }
338}
339
Greg Rose767081a2010-01-22 22:46:40 +0000340void ixgbe_disable_tx_rx(struct ixgbe_adapter *adapter)
341{
342 struct ixgbe_hw *hw = &adapter->hw;
343
344 /* disable transmit and receive for all vfs */
345 IXGBE_WRITE_REG(hw, IXGBE_VFTE(0), 0);
346 IXGBE_WRITE_REG(hw, IXGBE_VFTE(1), 0);
347
348 IXGBE_WRITE_REG(hw, IXGBE_VFRE(0), 0);
349 IXGBE_WRITE_REG(hw, IXGBE_VFRE(1), 0);
350}
351
352void ixgbe_ping_all_vfs(struct ixgbe_adapter *adapter)
353{
354 struct ixgbe_hw *hw = &adapter->hw;
355 u32 ping;
356 int i;
357
358 for (i = 0 ; i < adapter->num_vfs; i++) {
359 ping = IXGBE_PF_CONTROL_MSG;
360 if (adapter->vfinfo[i].clear_to_send)
361 ping |= IXGBE_VT_MSGTYPE_CTS;
362 ixgbe_write_mbx(hw, &ping, 1, i);
363 }
364}
365