iPXE
mlx_device.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Mellanox Technologies Ltd.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301, USA.
18 */
19
20FILE_LICENCE ( GPL2_OR_LATER );
21
23#include "../include/mlx_cmd.h"
28
29#define CHECK_BIT(field, offset) (((field) & ((mlx_uint32)1 << (offset))) != 0)
30
31static
34 IN nodnic_device_priv* device_priv,
36 )
37{
41 &output);
42 MLX_FATAL_CHECK_STATUS(status, read_error, "failed to read nic_interface_supported");
44read_error:
45 return status;
46}
47
48static
51 IN nodnic_device_priv* device_priv
52 )
53{
55 mlx_uint8 try = 0;
57
58#define CHECK_DEVICE_INIT_TRIES 10
59 for( ; try < CHECK_DEVICE_INIT_TRIES ; try++){
61 MLX_CHECK_STATUS(device_priv, status, read_error, "failed to read initializing");
63 goto init_done;
64 }
66 }
68read_error:
69init_done:
70 return status;
71}
72
73static
76 IN nodnic_device_priv *device_priv
77 )
78{
81
84 MLX_FATAL_CHECK_STATUS(status, write_err, "failed to write cmdq_phy_addr + nic_interface");
85
87 MLX_FATAL_CHECK_STATUS(status, init_err, "failed to initialize device");
88init_err:
89write_err:
90 return status;
91}
92static
95 IN nodnic_device_priv *device_priv
96 )
97{
100 mlx_boolean nodnic_supported = 0;
101
103 MLX_FATAL_CHECK_STATUS(status, wait_for_fw_err, "failed to initialize device");
104
105 status = check_nodnic_interface_supported(device_priv, &nodnic_supported);
106 MLX_FATAL_CHECK_STATUS(status, read_err,"failed to check nic_interface_supported");
107
108 if( nodnic_supported == 0 ){
110 goto nodnic_unsupported;
111 }
114 MLX_FATAL_CHECK_STATUS(status, write_err, "failed to write cmdq_phy_addr + nic_interface");
115
117 MLX_FATAL_CHECK_STATUS(status, init_err, "failed to initialize device");
118init_err:
119read_err:
120write_err:
121nodnic_unsupported:
122wait_for_fw_err:
123 return status;
124}
125
126static
129 IN nodnic_device_priv *device_priv
130 )
131{
133 mlx_uint32 buffer = 0;
134
135 status = nodnic_cmd_read(device_priv, NODNIC_LOCATION_OFFSET, &device_priv->device_offset);
136 MLX_FATAL_CHECK_STATUS(status, nodnic_offset_read_err, "failed to read nodnic offset");
137
138 status = nodnic_cmd_read(device_priv,
139 device_priv->device_offset + NODNIC_REVISION_OFFSET, &buffer);
140 MLX_FATAL_CHECK_STATUS(status, nodnic_revision_read_err, "failed to read nodnic revision");
141
142 device_priv->nodnic_revision = (buffer >> 24) & 0xFF;
143 if( device_priv->nodnic_revision != NODIC_SUPPORTED_REVISION ){
144 MLX_DEBUG_ERROR(device_priv, "nodnic revision not supported\n");
146 goto unsupported_revision;
147 }
148
149 status = nodnic_cmd_read(device_priv,
150 device_priv->device_offset + NODNIC_HARDWARE_FORMAT_OFFSET, &buffer);
151 MLX_FATAL_CHECK_STATUS(status, nodnic_hardware_format_read_err, "failed to read nodnic revision");
152 device_priv->hardware_format = (buffer >> 16) & 0xFF;
153
154 return status;
155
156unsupported_revision:
157nodnic_hardware_format_read_err:
158nodnic_offset_read_err:
159nodnic_revision_read_err:
160 disable_nodnic_inteface(device_priv);
161 return status;
162}
163
166 IN nodnic_device_priv *device_priv
167 )
168{
170 mlx_uint32 disable = 1;
171#ifndef DEVICE_CX3
173 MLX_CHECK_STATUS(device_priv, status, clear_int_done, "failed writing to disable_bit");
174#else
175 mlx_utils *utils = device_priv->utils;
176 mlx_uint64 clear_int = (mlx_uintn)(device_priv->crspace_clear_int);
177 mlx_uint32 swapped = 0;
178
179 if (device_priv->device_cap.crspace_doorbells == 0) {
181 MLX_CHECK_STATUS(device_priv, status, clear_int_done, "failed writing to disable_bit");
182 } else {
183 /* Write the new index and update FW that new data was submitted */
184 disable = 0x80000000;
185 mlx_memory_cpu_to_be32(utils, disable, &swapped);
186 mlx_pci_mem_write (utils, MlxPciWidthUint32, 0, clear_int, 1, &swapped);
187 mlx_pci_mem_read (utils, MlxPciWidthUint32, 0, clear_int, 1, &swapped);
188 }
189#endif
190clear_int_done:
191 return status;
192}
193
196 IN nodnic_device_priv *device_priv
197 )
198{
200
201 if( device_priv == NULL ){
203 goto parm_err;
204 }
205 status = nodnic_device_start_nodnic(device_priv);
206 MLX_FATAL_CHECK_STATUS(status, start_nodnic_err, "nodnic_device_start_nodnic failed");
207
209 MLX_FATAL_CHECK_STATUS(status, data_err, "nodnic_device_get_nodnic_data failed");
210 return status;
211data_err:
212start_nodnic_err:
213parm_err:
214 return status;
215}
216
219 IN nodnic_device_priv *device_priv
220 )
221{
223 status = disable_nodnic_inteface(device_priv);
224 MLX_FATAL_CHECK_STATUS(status, disable_failed, "failed to disable nodnic interface");
225disable_failed:
226 return status;
227}
228
231 IN nodnic_device_priv *device_priv
232 )
233{
235 nodnic_device_capabilites *device_cap = NULL;
236 mlx_uint32 buffer = 0;
237 mlx_uint64 guid_l = 0;
238 mlx_uint64 guid_h = 0;
239 if( device_priv == NULL ){
241 goto parm_err;
242 }
243
244 device_cap = &device_priv->device_cap;
245
246 //get device capabilities
247 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x0, &buffer);
248 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic first dword");
249
250#define NODNIC_DEVICE_SUPPORT_MAC_FILTERS_OFFSET 15
251#define NODNIC_DEVICE_SUPPORT_PROMISC_FILTER_OFFSET 14
252#define NODNIC_DEVICE_SUPPORT_PROMISC_MULT_FILTER_OFFSET 13
253#define NODNIC_DEVICE_LOG_WORKING_BUFFER_SIZE_OFFSET 8
254#define NODNIC_DEVICE_LOG_WORKING_BUFFER_SIZE_MASK 0x7
255#define NODNIC_DEVICE_LOG_PKEY_TABLE_SIZE_OFFSET 4
256#define NODNIC_DEVICE_LOG_PKEY_TABLE_SIZE_MASK 0xF
257#define NODNIC_DEVICE_NUM_PORTS_OFFSET 0
259
261
263
264 device_cap->log_working_buffer_size =
266
267 device_cap->log_pkey_table_size =
269
271
272#ifdef DEVICE_CX3
273#define NODNIC_DEVICE_CRSPACE_DB_OFFSET 12
274 device_cap->crspace_doorbells = CHECK_BIT(buffer, NODNIC_DEVICE_CRSPACE_DB_OFFSET);
275#endif
276
277 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x4, &buffer);
278 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic second dword");
279
280#define NODNIC_DEVICE_LOG_MAX_RING_SIZE_OFFSET 24
281#define NODNIC_DEVICE_LOG_MAX_RING_SIZE_MASK 0x3F
282#define NODNIC_DEVICE_PD_MASK 0xFFFFFF
283 device_cap->log_max_ring_size =
285
286 //get device magic numbers
287 device_priv->pd = buffer & NODNIC_DEVICE_PD_MASK;
288
289 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x8, &buffer);
290 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic third dword");
291 device_priv->lkey = buffer;
292
293#ifdef DEVICE_CX3
294 if ( device_cap->crspace_doorbells ) {
295 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x18, &buffer);
296 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic_crspace_clear_int address");
297 device_priv->crspace_clear_int = device_priv->utils->config + buffer;
298 }
299#endif
300
301 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x10, (mlx_uint32*)&guid_h);
302 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic guid_h");
303 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x14, (mlx_uint32*)&guid_l);
304 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic guid_l");
305 device_priv->device_guid = guid_l | (guid_h << 32);
306
307#define NODNIC_DEVICE_SUPPORT_RX_PI_DMA_OFFSET 31
308#define NODNIC_DEVICE_SUPPORT_RX_PI_DMA_MASK 0x1
309#define NODNIC_DEVICE_SUPPORT_UAR_TRX_DB_OFFSET 29
310#define NODNIC_DEVICE_SUPPORT_UAR_TRX_DB_MASK 0x1
311#define NODNIC_DEVICE_SUPPORT_BAR_CQ_CONTROL_OFFSET 27
312#define NODNIC_DEVICE_SUPPORT_BAR_CQ_CONTROL_MASK 0x1
313 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x1c, &buffer);
314 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic support_rx_pi_dma");
315 if ( sizeof ( mlx_uintn ) == sizeof ( mlx_uint32 ) ) {
316 device_cap->support_rx_pi_dma = FALSE;
317 device_cap->support_uar_tx_db = FALSE;
318 device_cap->support_bar_cq_ctrl = FALSE;
319 } else {
323 }
324
325#define NODNIC_DEVICE_LOG_UAR_PAGE_SIZE_OFFSET 0
326#define NODNIC_DEVICE_LOG_UAR_PAGE_SIZE_MASK 0xFF
327 status = nodnic_cmd_read(device_priv, device_priv->device_offset + 0x20, &buffer);
328 MLX_FATAL_CHECK_STATUS(status, read_err, "failed to read nodnic log_uar_page_size");
330read_err:
331parm_err:
332 return status;
333}
334
337 IN nodnic_device_priv *device_priv,
338 OUT mlx_uint16 *fw_ver_minor,
339 OUT mlx_uint16 *fw_ver_sub_minor,
340 OUT mlx_uint16 *fw_ver_major
341 ){
343 mlx_uint32 buffer = 0;
344
345 if( device_priv == NULL ){
347 goto parm_err;
348 }
349
350 status = nodnic_cmd_read(device_priv, 0x0, &buffer);
351 MLX_CHECK_STATUS(device_priv, status, read_err, "failed to read fw revision major and minor");
352
353 *fw_ver_minor = (mlx_uint16)(buffer >> 16);
354 *fw_ver_major = (mlx_uint16)buffer;
355
356 status = nodnic_cmd_read(device_priv, 0x4, &buffer);
357 MLX_CHECK_STATUS(device_priv, status, read_err, "failed to read fw revision sub minor");
358
359 *fw_ver_sub_minor = (mlx_uint16)buffer;
360read_err:
361parm_err:
362 return status;
363}
#define NULL
NULL pointer (VOID *)
Definition Base.h:322
__be32 out[4]
Definition CIB_PRM.h:8
uint8_t status
Status.
Definition ena.h:5
uint32_t buffer
Buffer index (or NETVSC_RNDIS_NO_BUFFER)
Definition netvsc.h:5
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define MLX_CHECK_STATUS(id, status, label, message)
Definition mlx_bail.h:37
#define MLX_FATAL_CHECK_STATUS(status, label, message)
Definition mlx_bail.h:29
mlx_status nodnic_cmd_write(IN nodnic_device_priv *device_priv, IN mlx_uint32 address, IN mlx_pci_gw_buffer buffer)
Definition mlx_cmd.c:54
mlx_status nodnic_cmd_read(IN nodnic_device_priv *device_priv, IN mlx_uint32 address, OUT mlx_pci_gw_buffer *buffer)
Definition mlx_cmd.c:29
#define NODNIC_DEVICE_PD_MASK
mlx_status nodnic_device_init(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:195
#define NODNIC_DEVICE_SUPPORT_PROMISC_MULT_FILTER_OFFSET
#define NODNIC_DEVICE_SUPPORT_RX_PI_DMA_OFFSET
#define NODNIC_DEVICE_LOG_PKEY_TABLE_SIZE_OFFSET
#define NODNIC_DEVICE_LOG_UAR_PAGE_SIZE_OFFSET
mlx_status nodnic_device_get_fw_version(IN nodnic_device_priv *device_priv, OUT mlx_uint16 *fw_ver_minor, OUT mlx_uint16 *fw_ver_sub_minor, OUT mlx_uint16 *fw_ver_major)
Definition mlx_device.c:336
#define NODNIC_DEVICE_LOG_WORKING_BUFFER_SIZE_MASK
#define NODNIC_DEVICE_LOG_MAX_RING_SIZE_OFFSET
#define NODNIC_DEVICE_LOG_UAR_PAGE_SIZE_MASK
static mlx_status disable_nodnic_inteface(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:75
#define NODNIC_DEVICE_LOG_PKEY_TABLE_SIZE_MASK
static mlx_status check_nodnic_interface_supported(IN nodnic_device_priv *device_priv, OUT mlx_boolean *out)
Definition mlx_device.c:33
#define NODNIC_DEVICE_NUM_PORTS_OFFSET
mlx_status nodnic_device_clear_int(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:165
mlx_status nodnic_device_teardown(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:218
#define NODNIC_DEVICE_SUPPORT_MAC_FILTERS_OFFSET
#define NODNIC_DEVICE_LOG_WORKING_BUFFER_SIZE_OFFSET
#define NODNIC_DEVICE_LOG_MAX_RING_SIZE_MASK
static mlx_status nodnic_device_start_nodnic(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:94
#define NODNIC_DEVICE_SUPPORT_PROMISC_FILTER_OFFSET
#define CHECK_DEVICE_INIT_TRIES
#define NODNIC_DEVICE_SUPPORT_UAR_TRX_DB_OFFSET
static mlx_status wait_for_device_initialization(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:50
static mlx_status nodnic_device_get_nodnic_data(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:128
#define NODNIC_DEVICE_SUPPORT_BAR_CQ_CONTROL_OFFSET
#define CHECK_BIT(field, offset)
Definition mlx_device.c:29
mlx_status nodnic_device_get_cap(IN nodnic_device_priv *device_priv)
Definition mlx_device.c:230
#define NODIC_SUPPORTED_REVISION
Definition mlx_device.h:27
#define NODNIC_INITIALIZING_BIT
Definition mlx_device.h:42
#define NODNIC_CMDQ_PHY_ADDR_LOW_OFFSET
Definition mlx_device.h:30
#define NODNIC_NIC_INTERFACE_BIT
Definition mlx_device.h:39
#define NODNIC_NIC_INTERFACE_SUPPORTED_BIT
Definition mlx_device.h:41
#define NODNIC_INITIALIZING_OFFSET
Definition mlx_device.h:32
#define NODNIC_REVISION_OFFSET
Definition mlx_device.h:47
#define NODNIC_NIC_INTERFACE_SUPPORTED_OFFSET
Definition mlx_device.h:33
#define NODNIC_NIC_DISABLE_INT_OFFSET
Definition mlx_device.h:44
#define NODNIC_HARDWARE_FORMAT_OFFSET
Definition mlx_device.h:48
#define NODNIC_DISABLE_INTERFACE_BIT
Definition mlx_device.h:40
#define NODNIC_LOCATION_OFFSET
Definition mlx_device.h:34
#define NODNIC_NIC_INTERFACE_OFFSET
Definition mlx_device.h:31
#define MLX_DEBUG_ERROR(...)
Definition mlx_logging.h:29
mlx_status mlx_memory_cpu_to_be32(IN mlx_utils *utils, IN mlx_uint32 source, IN mlx_uint32 *destination)
Definition mlx_memory.c:207
struct _nodnic_device_priv nodnic_device_priv
struct _nodnic_device_capabilites nodnic_device_capabilites
mlx_status mlx_pci_mem_read(IN mlx_utils *utils, IN mlx_pci_width width, IN mlx_uint8 bar_index, IN mlx_uint64 offset, IN mlx_uintn count, OUT mlx_void *buffer)
Definition mlx_pci.c:96
mlx_status mlx_pci_mem_write(IN mlx_utils *utils, IN mlx_pci_width width, IN mlx_uint8 bar_index, IN mlx_uint64 offset, IN mlx_uintn count, IN mlx_void *buffer)
Definition mlx_pci.c:116
@ MlxPciWidthUint32
Definition mlx_pci.h:30
uint16_t mlx_uint16
uint32_t mlx_uint32
#define MLX_UNSUPPORTED
uint64_t mlx_uint64
#define MLX_FAILED
#define MLX_INVALID_PARAMETER
#define MLX_SUCCESS
int mlx_status
uint8_t mlx_boolean
uint8_t mlx_uint8
unsigned long mlx_uintn
mlx_status mlx_utils_delay_in_ms(IN mlx_uint32 msecs)
Definition mlx_utils.c:57
#define IN
Definition mlx_utils.h:28
#define OUT
Definition mlx_utils.h:29
#define FALSE
Definition tlan.h:45