blob: cd580f04176558a819556f1094d29a321960736b [file] [log] [blame]
Damjan Marion5a206ea2016-05-12 22:11:03 +02001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * pci.c: Linux user space PCI bus management.
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#include <vlib/vlib.h>
41#include <vlib/pci/pci.h>
42#include <vlib/unix/unix.h>
43
44#include <sys/types.h>
45#include <sys/stat.h>
46#include <fcntl.h>
47#include <dirent.h>
48#include <sys/ioctl.h>
49#include <net/if.h>
50#include <linux/ethtool.h>
51#include <linux/sockios.h>
52
53vlib_pci_main_t pci_main;
54
Damjan Marion00ea98a2023-07-28 13:19:49 +020055VLIB_REGISTER_LOG_CLASS (pci_log, static) = {
56 .class_name = "pci",
57};
58
59#define log_debug(h, f, ...) \
60 vlib_log (VLIB_LOG_LEVEL_DEBUG, pci_log.class, "%U: " f, \
61 format_vlib_pci_log, h, ##__VA_ARGS__)
62
63u8 *
64format_vlib_pci_log (u8 *s, va_list *va)
65{
66 vlib_pci_dev_handle_t h = va_arg (*va, vlib_pci_dev_handle_t);
67 return format (s, "%U", format_vlib_pci_addr,
68 vlib_pci_get_addr (vlib_get_main (), h));
69}
70
71vlib_pci_device_info_t *__attribute__ ((weak))
72vlib_pci_get_device_info (vlib_main_t *vm, vlib_pci_addr_t *addr,
73 clib_error_t **error)
Damjan Marion7d221612016-12-26 11:39:42 +010074{
Damjan Marioncef87f12017-10-05 15:32:41 +020075 if (error)
76 *error = clib_error_return (0, "unsupported");
77 return 0;
78}
Damjan Marion7d221612016-12-26 11:39:42 +010079
Ray Kinsella5714a492021-11-02 13:33:44 +000080clib_error_t *__attribute__ ((weak))
81vlib_pci_get_device_root_bus (vlib_pci_addr_t *addr, vlib_pci_addr_t *root_bus)
82{
83 return 0;
84}
85
Damjan Marioncef87f12017-10-05 15:32:41 +020086vlib_pci_addr_t * __attribute__ ((weak)) vlib_pci_get_all_dev_addrs ()
87{
88 return 0;
Damjan Marion7d221612016-12-26 11:39:42 +010089}
90
Damjan Marion5a206ea2016-05-12 22:11:03 +020091static clib_error_t *
Damjan Marion00ea98a2023-07-28 13:19:49 +020092_vlib_pci_config_set_control_bit (vlib_main_t *vm, vlib_pci_dev_handle_t h,
93 u16 bit, int new_val, int *already_set)
94{
95 u16 control, old;
96 clib_error_t *err;
97
98 err = vlib_pci_read_write_config (
99 vm, h, VLIB_READ, STRUCT_OFFSET_OF (vlib_pci_config_t, command), &old,
100 STRUCT_SIZE_OF (vlib_pci_config_t, command));
101
102 if (err)
103 return err;
104
105 control = new_val ? old | bit : old & ~bit;
106 *already_set = old == control;
107 if (*already_set)
108 return 0;
109
110 return vlib_pci_read_write_config (
111 vm, h, VLIB_WRITE, STRUCT_OFFSET_OF (vlib_pci_config_t, command), &control,
112 STRUCT_SIZE_OF (vlib_pci_config_t, command));
113}
114
115clib_error_t *
116vlib_pci_intr_enable (vlib_main_t *vm, vlib_pci_dev_handle_t h)
117{
118 const vlib_pci_config_reg_command_t cmd = { .intx_disable = 1 };
119 clib_error_t *err;
120 int already_set;
121
122 err = _vlib_pci_config_set_control_bit (vm, h, cmd.as_u16, 0, &already_set);
123 log_debug (h, "interrupt%senabled", already_set ? " " : " already ");
124 return err;
125}
126
127clib_error_t *
128vlib_pci_intr_disable (vlib_main_t *vm, vlib_pci_dev_handle_t h)
129{
130 const vlib_pci_config_reg_command_t cmd = { .intx_disable = 1 };
131 clib_error_t *err;
132 int already_set;
133
134 err = _vlib_pci_config_set_control_bit (vm, h, cmd.as_u16, 1, &already_set);
135 log_debug (h, "interrupt%sdisabled", already_set ? " " : " already ");
136 return err;
137}
138
139clib_error_t *
140vlib_pci_bus_master_enable (vlib_main_t *vm, vlib_pci_dev_handle_t h)
141{
142 const vlib_pci_config_reg_command_t cmd = { .bus_master = 1 };
143 clib_error_t *err;
144 int already_set;
145
146 err = _vlib_pci_config_set_control_bit (vm, h, cmd.as_u16, 1, &already_set);
147 log_debug (h, "bus-master%senabled", already_set ? " " : " already ");
148 return err;
149}
150
151clib_error_t *
152vlib_pci_bus_master_disable (vlib_main_t *vm, vlib_pci_dev_handle_t h)
153{
154 const vlib_pci_config_reg_command_t cmd = { .bus_master = 1 };
155 clib_error_t *err;
156 int already_set;
157
158 err = _vlib_pci_config_set_control_bit (vm, h, cmd.as_u16, 0, &already_set);
159 log_debug (h, "bus-master%sdisabled", already_set ? " " : " already ");
160 return err;
161}
162
163clib_error_t *
164vlib_pci_function_level_reset (vlib_main_t *vm, vlib_pci_dev_handle_t h)
165{
166 vlib_pci_config_t cfg;
167 pci_capability_pcie_t *cap;
168 pci_capability_pcie_dev_control_t dev_control;
169 clib_error_t *err;
170 u8 offset;
171
172 log_debug (h, "function level reset");
173
174 err = vlib_pci_read_write_config (vm, h, VLIB_READ, 0, &cfg, sizeof (cfg));
175 if (err)
176 return err;
177
178 offset = cfg.cap_ptr;
Vratko Polakfee94592023-08-23 18:39:25 +0200179 do
Damjan Marion00ea98a2023-07-28 13:19:49 +0200180 {
181 cap = (pci_capability_pcie_t *) (cfg.data + offset);
182
183 if (cap->capability_id == PCI_CAP_ID_PCIE)
184 break;
185
186 offset = cap->next_offset;
187 }
Vratko Polakfee94592023-08-23 18:39:25 +0200188 while (offset);
Damjan Marion00ea98a2023-07-28 13:19:49 +0200189
190 if (cap->capability_id != PCI_CAP_ID_PCIE)
191 return clib_error_return (0, "PCIe capability config not found");
192
193 if (cap->dev_caps.flr_capable == 0)
194 return clib_error_return (0, "PCIe function level reset not supported");
195
196 dev_control = cap->dev_control;
197 dev_control.function_level_reset = 1;
198
199 if ((err = vlib_pci_write_config_u16 (
200 vm, h, offset + STRUCT_OFFSET_OF (pci_capability_pcie_t, dev_control),
201 &dev_control.as_u16)))
202 return err;
203
204 return 0;
205}
206
207static clib_error_t *
Damjan Marion5a206ea2016-05-12 22:11:03 +0200208show_pci_fn (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400209 unformat_input_t * input, vlib_cli_command_t * cmd)
Damjan Marion5a206ea2016-05-12 22:11:03 +0200210{
Damjan Marioncef87f12017-10-05 15:32:41 +0200211 vlib_pci_addr_t *addr = 0, *addrs;
Damjan Marion5a206ea2016-05-12 22:11:03 +0200212 int show_all = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400213 u8 *s = 0;
Damjan Marion5a206ea2016-05-12 22:11:03 +0200214
215 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
216 {
217 if (unformat (input, "all"))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 show_all = 1;
Damjan Marion5a206ea2016-05-12 22:11:03 +0200219 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400220 return clib_error_return (0, "unknown input `%U'",
221 format_unformat_error, input);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200222 }
223
Damjan Marion4a348e82020-11-25 17:13:38 +0100224 vlib_cli_output (vm, "%-13s%-5s%-12s%-14s%-16s%-32s%s",
Damjan Marion7d221612016-12-26 11:39:42 +0100225 "Address", "Sock", "VID:PID", "Link Speed", "Driver",
226 "Product Name", "Vital Product Data");
Damjan Marion5a206ea2016-05-12 22:11:03 +0200227
Damjan Marioncef87f12017-10-05 15:32:41 +0200228 addrs = vlib_pci_get_all_dev_addrs ();
Damjan Marion14361002021-03-11 12:17:33 +0100229
Damjan Marioncef87f12017-10-05 15:32:41 +0200230 vec_foreach (addr, addrs)
231 {
232 vlib_pci_device_info_t *d;
Damjan Marion23227982018-10-22 13:38:57 +0200233 d = vlib_pci_get_device_info (vm, addr, 0);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200234
Damjan Marioncef87f12017-10-05 15:32:41 +0200235 if (!d)
236 continue;
Damjan Marion5a206ea2016-05-12 22:11:03 +0200237
Damjan Marioncef87f12017-10-05 15:32:41 +0200238 if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && !show_all)
Damjan Marion14361002021-03-11 12:17:33 +0100239 continue;
Damjan Marion5a206ea2016-05-12 22:11:03 +0200240
Damjan Marion14361002021-03-11 12:17:33 +0100241 vec_reset_length (s);
242 if (d->numa_node >= 0)
243 s = format (s, " %d", d->numa_node);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200244
Damjan Marion14361002021-03-11 12:17:33 +0100245 vlib_cli_output (
246 vm, "%-13U%-5v%04x:%04x %-14U%-16s%-32v%U", format_vlib_pci_addr,
247 addr, s, d->vendor_id, d->device_id, format_vlib_pci_link_speed, d,
248 d->driver_name ? (char *) d->driver_name : "", d->product_name,
249 format_vlib_pci_vpd, d->vpd_r, (u8 *) 0);
250 vlib_pci_free_device_info (d);
Damjan Marioncef87f12017-10-05 15:32:41 +0200251 }
Damjan Marion5a206ea2016-05-12 22:11:03 +0200252
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vec_free (s);
Damjan Marioncef87f12017-10-05 15:32:41 +0200254 vec_free (addrs);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200255 return 0;
256}
257
258uword
259unformat_vlib_pci_addr (unformat_input_t * input, va_list * args)
260{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 vlib_pci_addr_t *addr = va_arg (*args, vlib_pci_addr_t *);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200262 u32 x[4];
263
264 if (!unformat (input, "%x:%x:%x.%x", &x[0], &x[1], &x[2], &x[3]))
265 return 0;
266
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 addr->domain = x[0];
268 addr->bus = x[1];
269 addr->slot = x[2];
Damjan Marion5a206ea2016-05-12 22:11:03 +0200270 addr->function = x[3];
271
272 return 1;
273}
274
275u8 *
276format_vlib_pci_addr (u8 * s, va_list * va)
277{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400278 vlib_pci_addr_t *addr = va_arg (*va, vlib_pci_addr_t *);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200279 return format (s, "%04x:%02x:%02x.%x", addr->domain, addr->bus,
280 addr->slot, addr->function);
281}
282
283u8 *
Ray Kinsella6efe0252021-11-02 13:26:49 +0000284format_vlib_pci_link_port (u8 *s, va_list *va)
285{
Damjan Marion00ea98a2023-07-28 13:19:49 +0200286 vlib_pci_config_t *c = va_arg (*va, vlib_pci_config_t *);
287 pci_capability_pcie_t *r = pci_config_find_capability (c, PCI_CAP_ID_PCIE);
Ray Kinsella6efe0252021-11-02 13:26:49 +0000288
289 if (!r)
290 return format (s, "unknown");
291
Damjan Marion00ea98a2023-07-28 13:19:49 +0200292 return format (s, "P%d", r->link_caps.port_number);
293}
294
295static u8 *
296_vlib_pci_link_speed (u8 *s, u8 speed, u8 width)
297{
298 static char *speeds[] = {
299 [1] = "2.5", [2] = "5.0", [3] = "8.0", [4] = "16.0", [5] = "32.0"
300 };
301
Dave Wallace63335e42023-08-22 12:51:09 -0400302 if (speed >= ARRAY_LEN (speeds) || speeds[speed] == 0)
Damjan Marion00ea98a2023-07-28 13:19:49 +0200303 s = format (s, "unknown speed");
304 else
305 s = format (s, "%s GT/s", speeds[speed]);
306
307 return format (s, " x%u", width);
Ray Kinsella6efe0252021-11-02 13:26:49 +0000308}
309
310u8 *
Damjan Marion00ea98a2023-07-28 13:19:49 +0200311format_vlib_pci_link_speed (u8 *s, va_list *va)
Damjan Marion5a206ea2016-05-12 22:11:03 +0200312{
Damjan Marion00ea98a2023-07-28 13:19:49 +0200313 vlib_pci_config_t *c = va_arg (*va, vlib_pci_config_t *);
314 pci_capability_pcie_t *r = pci_config_find_capability (c, PCI_CAP_ID_PCIE);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200315
316 if (!r)
317 return format (s, "unknown");
318
Damjan Marion00ea98a2023-07-28 13:19:49 +0200319 return _vlib_pci_link_speed (s, r->link_status.link_speed,
320 r->link_status.negotiated_link_width);
321}
Damjan Marion5a206ea2016-05-12 22:11:03 +0200322
Damjan Marion00ea98a2023-07-28 13:19:49 +0200323u8 *
324format_vlib_pci_link_speed_cap (u8 *s, va_list *va)
325{
326 vlib_pci_config_t *c = va_arg (*va, vlib_pci_config_t *);
327 pci_capability_pcie_t *r = pci_config_find_capability (c, PCI_CAP_ID_PCIE);
328
329 if (!r)
330 return format (s, "unknown");
331
332 return _vlib_pci_link_speed (s, r->link_caps.max_link_speed,
333 r->link_caps.max_link_width);
Damjan Marion5a206ea2016-05-12 22:11:03 +0200334}
335
Damjan Marion7d221612016-12-26 11:39:42 +0100336u8 *
337format_vlib_pci_vpd (u8 * s, va_list * args)
338{
339 u8 *data = va_arg (*args, u8 *);
340 u8 *id = va_arg (*args, u8 *);
Christophe Fontained3c008d2017-10-02 18:10:54 +0200341 u32 indent = format_get_indent (s);
Damjan Marion7d221612016-12-26 11:39:42 +0100342 char *string_types[] = { "PN", "EC", "SN", "MN", 0 };
343 uword p = 0;
344 int first_line = 1;
345
346 if (vec_len (data) < 3)
347 return s;
348
349 while (p + 3 < vec_len (data))
350 {
351
352 if (data[p] == 0 && data[p + 1] == 0)
353 return s;
354
355 if (p + data[p + 2] > vec_len (data))
356 return s;
357
358 if (id == 0)
359 {
360 int is_string = 0;
361 char **c = string_types;
362
363 while (c[0])
364 {
365 if (*(u16 *) & data[p] == *(u16 *) c[0])
366 is_string = 1;
367 c++;
368 }
369
370 if (data[p + 2])
371 {
372 if (!first_line)
373 s = format (s, "\n%U", format_white_space, indent);
374 else
375 {
376 first_line = 0;
377 s = format (s, " ");
378 }
379
380 s = format (s, "%c%c: ", data[p], data[p + 1]);
381 if (is_string)
382 vec_add (s, data + p + 3, data[p + 2]);
383 else
384 {
385 int i;
386 const int max_bytes = 8;
387 s = format (s, "0x");
388 for (i = 0; i < clib_min (data[p + 2], max_bytes); i++)
389 s = format (s, " %02x", data[p + 3 + i]);
390
391 if (data[p + 2] > max_bytes)
392 s = format (s, " ...");
393 }
394 }
395 }
396 else if (*(u16 *) & data[p] == *(u16 *) id)
397 {
398 vec_add (s, data + p + 3, data[p + 2]);
399 return s;
400 }
401
402 p += 3 + data[p + 2];
403 }
404
405 return s;
406}
407
Damjan Marion5a206ea2016-05-12 22:11:03 +0200408VLIB_CLI_COMMAND (show_pci_command, static) = {
409 .path = "show pci",
410 .short_help = "show pci [all]",
411 .function = show_pci_fn,
412};