fm10k/base: fix typecast
[dpdk.git] / drivers / net / fm10k / base / fm10k_api.c
1 /*******************************************************************************
2
3 Copyright (c) 2013 - 2015, Intel Corporation
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8
9  1. Redistributions of source code must retain the above copyright notice,
10     this list of conditions and the following disclaimer.
11
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.
15
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.
19
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.
31
32 ***************************************************************************/
33
34 #include "fm10k_api.h"
35 #include "fm10k_common.h"
36
37 /**
38  *  fm10k_set_mac_type - Sets MAC type
39  *  @hw: pointer to the HW structure
40  *
41  *  This function sets the mac type of the adapter based on the
42  *  vendor ID and device ID stored in the hw structure.
43  **/
44 s32 fm10k_set_mac_type(struct fm10k_hw *hw)
45 {
46         s32 ret_val = FM10K_SUCCESS;
47
48         DEBUGFUNC("fm10k_set_mac_type");
49
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;
54         }
55
56         switch (hw->device_id) {
57         case FM10K_DEV_ID_PF:
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;
65                 break;
66         case FM10K_DEV_ID_VF:
67                 hw->mac.type = fm10k_mac_vf;
68                 break;
69         default:
70                 ret_val = FM10K_ERR_DEVICE_NOT_SUPPORTED;
71                 ERROR_REPORT2(FM10K_ERROR_UNSUPPORTED,
72                              "Unsupported device id: %x\n",
73                              hw->device_id);
74                 break;
75         }
76
77         DEBUGOUT2("fm10k_set_mac_type found mac: %d, returns: %d\n",
78                   hw->mac.type, ret_val);
79
80         return ret_val;
81 }
82
83 /**
84  *  fm10k_init_shared_code - Initialize the shared code
85  *  @hw: pointer to hardware structure
86  *
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
94  **/
95 s32 fm10k_init_shared_code(struct fm10k_hw *hw)
96 {
97         s32 status;
98
99         DEBUGFUNC("fm10k_init_shared_code");
100
101         /* Set the mac type */
102         fm10k_set_mac_type(hw);
103
104         switch (hw->mac.type) {
105         case fm10k_mac_pf:
106                 status = fm10k_init_ops_pf(hw);
107                 break;
108         case fm10k_mac_vf:
109                 status = fm10k_init_ops_vf(hw);
110                 break;
111         default:
112                 status = FM10K_ERR_DEVICE_NOT_SUPPORTED;
113                 break;
114         }
115
116         return status;
117 }
118
119 #define fm10k_call_func(hw, func, params, error) \
120                  ((func) ? (func params) : (error))
121
122 /**
123  *  fm10k_reset_hw - Reset the hardware to known good state
124  *  @hw: pointer to hardware structure
125  *
126  *  This function should return the hardware to a state similar to the
127  *  one it is in after being powered on.
128  **/
129 s32 fm10k_reset_hw(struct fm10k_hw *hw)
130 {
131         return fm10k_call_func(hw, hw->mac.ops.reset_hw, (hw),
132                                FM10K_NOT_IMPLEMENTED);
133 }
134
135 /**
136  *  fm10k_init_hw - Initialize the hardware
137  *  @hw: pointer to hardware structure
138  *
139  *  Initialize the hardware by resetting and then starting the hardware
140  **/
141 s32 fm10k_init_hw(struct fm10k_hw *hw)
142 {
143         return fm10k_call_func(hw, hw->mac.ops.init_hw, (hw),
144                                FM10K_NOT_IMPLEMENTED);
145 }
146
147 /**
148  *  fm10k_stop_hw - Prepares hardware to shutdown Rx/Tx
149  *  @hw: pointer to hardware structure
150  *
151  *  Disables Rx/Tx queues and disables the DMA engine.
152  **/
153 s32 fm10k_stop_hw(struct fm10k_hw *hw)
154 {
155         return fm10k_call_func(hw, hw->mac.ops.stop_hw, (hw),
156                                FM10K_NOT_IMPLEMENTED);
157 }
158
159 /**
160  *  fm10k_start_hw - Prepares hardware for Rx/Tx
161  *  @hw: pointer to hardware structure
162  *
163  *  This function sets the flags indicating that the hardware is ready to
164  *  begin operation.
165  **/
166 s32 fm10k_start_hw(struct fm10k_hw *hw)
167 {
168         return fm10k_call_func(hw, hw->mac.ops.start_hw, (hw),
169                                FM10K_NOT_IMPLEMENTED);
170 }
171
172 /**
173  *  fm10k_get_bus_info - Set PCI bus info
174  *  @hw: pointer to hardware structure
175  *
176  *  Sets the PCI bus info (speed, width, type) within the fm10k_hw structure
177  **/
178 s32 fm10k_get_bus_info(struct fm10k_hw *hw)
179 {
180         return fm10k_call_func(hw, hw->mac.ops.get_bus_info, (hw),
181                                FM10K_NOT_IMPLEMENTED);
182 }
183
184 /**
185  *  fm10k_is_slot_appropriate - Indicate appropriate slot for this SKU
186  *  @hw: pointer to hardware structure
187  *
188  *  Looks at the PCIe bus info to confirm whether or not this slot can support
189  *  the necessary bandwidth for this device.
190  **/
191 bool fm10k_is_slot_appropriate(struct fm10k_hw *hw)
192 {
193         if (hw->mac.ops.is_slot_appropriate)
194                 return hw->mac.ops.is_slot_appropriate(hw);
195         return true;
196 }
197
198 /**
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
204  *
205  *  This function adds or removes the corresponding VLAN ID from the VLAN
206  *  filter table for the corresponding function.
207  **/
208 s32 fm10k_update_vlan(struct fm10k_hw *hw, u32 vid, u8 idx, bool set)
209 {
210         return fm10k_call_func(hw, hw->mac.ops.update_vlan, (hw, vid, idx, set),
211                                FM10K_NOT_IMPLEMENTED);
212 }
213
214 /**
215  *  fm10k_read_mac_addr - Reads MAC address
216  *  @hw: pointer to hardware structure
217  *
218  *  Reads the MAC address out of the interface and stores it in the HW
219  *  structures.
220  **/
221 s32 fm10k_read_mac_addr(struct fm10k_hw *hw)
222 {
223         return fm10k_call_func(hw, hw->mac.ops.read_mac_addr, (hw),
224                                FM10K_NOT_IMPLEMENTED);
225 }
226
227 /**
228  *  fm10k_update_hw_stats - Update hw statistics
229  *  @hw: pointer to hardware structure
230  *
231  *  This function updates statistics that are related to hardware.
232  * */
233 void fm10k_update_hw_stats(struct fm10k_hw *hw, struct fm10k_hw_stats *stats)
234 {
235         if (hw->mac.ops.update_hw_stats)
236                 hw->mac.ops.update_hw_stats(hw, stats);
237 }
238
239 /**
240  *  fm10k_rebind_hw_stats - Reset base for hw statistics
241  *  @hw: pointer to hardware structure
242  *
243  *  This function resets the base for statistics that are related to hardware.
244  * */
245 void fm10k_rebind_hw_stats(struct fm10k_hw *hw, struct fm10k_hw_stats *stats)
246 {
247         if (hw->mac.ops.rebind_hw_stats)
248                 hw->mac.ops.rebind_hw_stats(hw, stats);
249 }
250
251 /**
252  *  fm10k_configure_dglort_map - Configures GLORT entry and queues
253  *  @hw: pointer to hardware structure
254  *  @dglort: pointer to dglort configuration structure
255  *
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.
259  **/
260 s32 fm10k_configure_dglort_map(struct fm10k_hw *hw,
261                                struct fm10k_dglort_cfg *dglort)
262 {
263         return fm10k_call_func(hw, hw->mac.ops.configure_dglort_map,
264                                (hw, dglort), FM10K_NOT_IMPLEMENTED);
265 }
266
267 /**
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
271  *
272  *  This function configures the endpoint to limit the access to memory
273  *  beyond what is physically in the system.
274  **/
275 void fm10k_set_dma_mask(struct fm10k_hw *hw, u64 dma_mask)
276 {
277         if (hw->mac.ops.set_dma_mask)
278                 hw->mac.ops.set_dma_mask(hw, dma_mask);
279 }
280
281 /**
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
286  *
287  *  Record the fault register contents to the fault data structure and
288  *  clear the entry from the register.
289  *
290  *  Returns ERR_PARAM if invalid register is specified or no error is present.
291  **/
292 s32 fm10k_get_fault(struct fm10k_hw *hw, int type, struct fm10k_fault *fault)
293 {
294         return fm10k_call_func(hw, hw->mac.ops.get_fault, (hw, type, fault),
295                                FM10K_NOT_IMPLEMENTED);
296 }
297
298 /**
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
306  *
307  *  This function is used to add or remove unicast MAC addresses
308  **/
309 s32 fm10k_update_uc_addr(struct fm10k_hw *hw, u16 lport,
310                           const u8 *mac, u16 vid, bool add, u8 flags)
311 {
312         return fm10k_call_func(hw, hw->mac.ops.update_uc_addr,
313                                (hw, lport, mac, vid, add, flags),
314                                FM10K_NOT_IMPLEMENTED);
315 }
316
317 /**
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
324  *
325  *  This function is used to add or remove multicast MAC addresses
326  **/
327 s32 fm10k_update_mc_addr(struct fm10k_hw *hw, u16 lport,
328                          const u8 *mac, u16 vid, bool add)
329 {
330         return fm10k_call_func(hw, hw->mac.ops.update_mc_addr,
331                                (hw, lport, mac, vid, add),
332                                FM10K_NOT_IMPLEMENTED);
333 }
334
335 /**
336  *  fm10k_adjust_systime - Adjust systime frequency
337  *  @hw: pointer to hardware structure
338  *  @ppb: adjustment rate in parts per billion
339  *
340  *  This function is meant to update the frequency of the clock represented
341  *  by the SYSTIME register.
342  **/
343 s32 fm10k_adjust_systime(struct fm10k_hw *hw, s32 ppb)
344 {
345         return fm10k_call_func(hw, hw->mac.ops.adjust_systime,
346                                (hw, ppb), FM10K_NOT_IMPLEMENTED);
347 }
348
349 /**
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
353  *
354  *  This function is meant to notify switch of change in the PTP offset for
355  *  the hardware SYSTIME registers.
356  **/
357 s32 fm10k_notify_offset(struct fm10k_hw *hw, u64 offset)
358 {
359         return fm10k_call_func(hw, hw->mac.ops.notify_offset,
360                                (hw, offset), FM10K_NOT_IMPLEMENTED);
361 }