1 /*******************************************************************************
3 Copyright (c) 2013 - 2015, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 3. Neither the name of the Intel Corporation nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
32 ***************************************************************************/
34 #include "fm10k_api.h"
35 #include "fm10k_common.h"
38 * fm10k_set_mac_type - Sets MAC type
39 * @hw: pointer to the HW structure
41 * This function sets the mac type of the adapter based on the
42 * vendor ID and device ID stored in the hw structure.
44 s32 fm10k_set_mac_type(struct fm10k_hw *hw)
46 s32 ret_val = FM10K_SUCCESS;
48 DEBUGFUNC("fm10k_set_mac_type");
50 if (hw->vendor_id != FM10K_INTEL_VENDOR_ID) {
51 ERROR_REPORT2(FM10K_ERROR_UNSUPPORTED,
52 "Unsupported vendor id: %x\n", hw->vendor_id);
53 return FM10K_ERR_DEVICE_NOT_SUPPORTED;
56 switch (hw->device_id) {
58 #ifdef BOULDER_RAPIDS_HW
59 case FM10K_DEV_ID_SDI_FM10420_QDA2:
60 #endif /* BOULDER_RAPIDS_HW */
61 #ifdef ATWOOD_CHANNEL_HW
62 case FM10K_DEV_ID_SDI_FM10420_DA2:
63 #endif /* ATWOOD_CHANNEL_HW */
64 hw->mac.type = fm10k_mac_pf;
67 hw->mac.type = fm10k_mac_vf;
70 ret_val = FM10K_ERR_DEVICE_NOT_SUPPORTED;
71 ERROR_REPORT2(FM10K_ERROR_UNSUPPORTED,
72 "Unsupported device id: %x\n",
77 DEBUGOUT2("fm10k_set_mac_type found mac: %d, returns: %d\n",
78 hw->mac.type, ret_val);
84 * fm10k_init_shared_code - Initialize the shared code
85 * @hw: pointer to hardware structure
87 * This will assign function pointers and assign the MAC type and PHY code.
88 * Does not touch the hardware. This function must be called prior to any
89 * other function in the shared code. The fm10k_hw structure should be
90 * memset to 0 prior to calling this function. The following fields in
91 * hw structure should be filled in prior to calling this function:
92 * hw_addr, back, device_id, vendor_id, subsystem_device_id,
93 * subsystem_vendor_id, and revision_id
95 s32 fm10k_init_shared_code(struct fm10k_hw *hw)
99 DEBUGFUNC("fm10k_init_shared_code");
101 /* Set the mac type */
102 fm10k_set_mac_type(hw);
104 switch (hw->mac.type) {
106 status = fm10k_init_ops_pf(hw);
109 status = fm10k_init_ops_vf(hw);
112 status = FM10K_ERR_DEVICE_NOT_SUPPORTED;
119 #define fm10k_call_func(hw, func, params, error) \
120 ((func) ? (func params) : (error))
123 * fm10k_reset_hw - Reset the hardware to known good state
124 * @hw: pointer to hardware structure
126 * This function should return the hardware to a state similar to the
127 * one it is in after being powered on.
129 s32 fm10k_reset_hw(struct fm10k_hw *hw)
131 return fm10k_call_func(hw, hw->mac.ops.reset_hw, (hw),
132 FM10K_NOT_IMPLEMENTED);
136 * fm10k_init_hw - Initialize the hardware
137 * @hw: pointer to hardware structure
139 * Initialize the hardware by resetting and then starting the hardware
141 s32 fm10k_init_hw(struct fm10k_hw *hw)
143 return fm10k_call_func(hw, hw->mac.ops.init_hw, (hw),
144 FM10K_NOT_IMPLEMENTED);
148 * fm10k_stop_hw - Prepares hardware to shutdown Rx/Tx
149 * @hw: pointer to hardware structure
151 * Disables Rx/Tx queues and disables the DMA engine.
153 s32 fm10k_stop_hw(struct fm10k_hw *hw)
155 return fm10k_call_func(hw, hw->mac.ops.stop_hw, (hw),
156 FM10K_NOT_IMPLEMENTED);
160 * fm10k_start_hw - Prepares hardware for Rx/Tx
161 * @hw: pointer to hardware structure
163 * This function sets the flags indicating that the hardware is ready to
166 s32 fm10k_start_hw(struct fm10k_hw *hw)
168 return fm10k_call_func(hw, hw->mac.ops.start_hw, (hw),
169 FM10K_NOT_IMPLEMENTED);
173 * fm10k_get_bus_info - Set PCI bus info
174 * @hw: pointer to hardware structure
176 * Sets the PCI bus info (speed, width, type) within the fm10k_hw structure
178 s32 fm10k_get_bus_info(struct fm10k_hw *hw)
180 return fm10k_call_func(hw, hw->mac.ops.get_bus_info, (hw),
181 FM10K_NOT_IMPLEMENTED);
185 * fm10k_is_slot_appropriate - Indicate appropriate slot for this SKU
186 * @hw: pointer to hardware structure
188 * Looks at the PCIe bus info to confirm whether or not this slot can support
189 * the necessary bandwidth for this device.
191 bool fm10k_is_slot_appropriate(struct fm10k_hw *hw)
193 if (hw->mac.ops.is_slot_appropriate)
194 return hw->mac.ops.is_slot_appropriate(hw);
199 * fm10k_update_vlan - Clear VLAN ID to VLAN filter table
200 * @hw: pointer to hardware structure
201 * @vid: VLAN ID to add to table
202 * @idx: Index indicating VF ID or PF ID in table
203 * @set: Indicates if this is a set or clear operation
205 * This function adds or removes the corresponding VLAN ID from the VLAN
206 * filter table for the corresponding function.
208 s32 fm10k_update_vlan(struct fm10k_hw *hw, u32 vid, u8 idx, bool set)
210 return fm10k_call_func(hw, hw->mac.ops.update_vlan, (hw, vid, idx, set),
211 FM10K_NOT_IMPLEMENTED);
215 * fm10k_read_mac_addr - Reads MAC address
216 * @hw: pointer to hardware structure
218 * Reads the MAC address out of the interface and stores it in the HW
221 s32 fm10k_read_mac_addr(struct fm10k_hw *hw)
223 return fm10k_call_func(hw, hw->mac.ops.read_mac_addr, (hw),
224 FM10K_NOT_IMPLEMENTED);
228 * fm10k_update_hw_stats - Update hw statistics
229 * @hw: pointer to hardware structure
231 * This function updates statistics that are related to hardware.
233 void fm10k_update_hw_stats(struct fm10k_hw *hw, struct fm10k_hw_stats *stats)
235 if (hw->mac.ops.update_hw_stats)
236 hw->mac.ops.update_hw_stats(hw, stats);
240 * fm10k_rebind_hw_stats - Reset base for hw statistics
241 * @hw: pointer to hardware structure
243 * This function resets the base for statistics that are related to hardware.
245 void fm10k_rebind_hw_stats(struct fm10k_hw *hw, struct fm10k_hw_stats *stats)
247 if (hw->mac.ops.rebind_hw_stats)
248 hw->mac.ops.rebind_hw_stats(hw, stats);
252 * fm10k_configure_dglort_map - Configures GLORT entry and queues
253 * @hw: pointer to hardware structure
254 * @dglort: pointer to dglort configuration structure
256 * Reads the configuration structure contained in dglort_cfg and uses
257 * that information to then populate a DGLORTMAP/DEC entry and the queues
258 * to which it has been assigned.
260 s32 fm10k_configure_dglort_map(struct fm10k_hw *hw,
261 struct fm10k_dglort_cfg *dglort)
263 return fm10k_call_func(hw, hw->mac.ops.configure_dglort_map,
264 (hw, dglort), FM10K_NOT_IMPLEMENTED);
268 * fm10k_set_dma_mask - Configures PhyAddrSpace to limit DMA to system
269 * @hw: pointer to hardware structure
270 * @dma_mask: 64 bit DMA mask required for platform
272 * This function configures the endpoint to limit the access to memory
273 * beyond what is physically in the system.
275 void fm10k_set_dma_mask(struct fm10k_hw *hw, u64 dma_mask)
277 if (hw->mac.ops.set_dma_mask)
278 hw->mac.ops.set_dma_mask(hw, dma_mask);
282 * fm10k_get_fault - Record a fault in one of the interface units
283 * @hw: pointer to hardware structure
284 * @type: pointer to fault type register offset
285 * @fault: pointer to memory location to record the fault
287 * Record the fault register contents to the fault data structure and
288 * clear the entry from the register.
290 * Returns ERR_PARAM if invalid register is specified or no error is present.
292 s32 fm10k_get_fault(struct fm10k_hw *hw, int type, struct fm10k_fault *fault)
294 return fm10k_call_func(hw, hw->mac.ops.get_fault, (hw, type, fault),
295 FM10K_NOT_IMPLEMENTED);
299 * fm10k_update_uc_addr - Update device unicast address
300 * @hw: pointer to the HW structure
301 * @lport: logical port ID to update - unused
302 * @mac: MAC address to add/remove from table
303 * @vid: VLAN ID to add/remove from table
304 * @add: Indicates if this is an add or remove operation
305 * @flags: flags field to indicate add and secure - unused
307 * This function is used to add or remove unicast MAC addresses
309 s32 fm10k_update_uc_addr(struct fm10k_hw *hw, u16 lport,
310 const u8 *mac, u16 vid, bool add, u8 flags)
312 return fm10k_call_func(hw, hw->mac.ops.update_uc_addr,
313 (hw, lport, mac, vid, add, flags),
314 FM10K_NOT_IMPLEMENTED);
318 * fm10k_update_mc_addr - Update device multicast address
319 * @hw: pointer to the HW structure
320 * @lport: logical port ID to update - unused
321 * @mac: MAC address to add/remove from table
322 * @vid: VLAN ID to add/remove from table
323 * @add: Indicates if this is an add or remove operation
325 * This function is used to add or remove multicast MAC addresses
327 s32 fm10k_update_mc_addr(struct fm10k_hw *hw, u16 lport,
328 const u8 *mac, u16 vid, bool add)
330 return fm10k_call_func(hw, hw->mac.ops.update_mc_addr,
331 (hw, lport, mac, vid, add),
332 FM10K_NOT_IMPLEMENTED);
336 * fm10k_adjust_systime - Adjust systime frequency
337 * @hw: pointer to hardware structure
338 * @ppb: adjustment rate in parts per billion
340 * This function is meant to update the frequency of the clock represented
341 * by the SYSTIME register.
343 s32 fm10k_adjust_systime(struct fm10k_hw *hw, s32 ppb)
345 return fm10k_call_func(hw, hw->mac.ops.adjust_systime,
346 (hw, ppb), FM10K_NOT_IMPLEMENTED);
350 * fm10k_notify_offset - Notify switch of change in PTP offset
351 * @hw: pointer to hardware structure
352 * @offset: 64bit unsigned offset from hardware SYSTIME value
354 * This function is meant to notify switch of change in the PTP offset for
355 * the hardware SYSTIME registers.
357 s32 fm10k_notify_offset(struct fm10k_hw *hw, u64 offset)
359 return fm10k_call_func(hw, hw->mac.ops.notify_offset,
360 (hw, offset), FM10K_NOT_IMPLEMENTED);