blob: 78d6c9f64cb4e2cb7a2ba7378fcce1846bac25c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
* Copyright (c) 2006 Dell, Inc.
* by Matt Domsch <Matt_Domsch@dell.com>
* Licensed under the GNU General Public license, version 2.
*/
#ifndef PCI_H_INCLUDED
#define PCI_H_INCLUDED
#include <limits.h>
#include <pci/pci.h>
#include "list.h"
#include "state.h"
#include "config.h"
struct pci_device {
struct list_head node;
struct pci_dev *pci_dev;
int physical_slot;
unsigned int index_in_slot; /* only valid if physical_slot > 0 and not a VF */
unsigned int embedded_index; /* only valid if embedded_index_valid */
unsigned short int class;
unsigned char uses_smbios;
unsigned char smbios_type;
unsigned char smbios_instance;
unsigned char smbios_enabled;
char *smbios_label;
unsigned int sysfs_index;
char * sysfs_label;
unsigned char uses_sysfs;
unsigned int vf_index;
struct pci_device *pf;
struct list_head vfnode;
struct list_head vfs;
unsigned int is_sriov_physical_function:1;
unsigned int is_sriov_virtual_function:1;
unsigned int embedded_index_valid:1;
};
#define HAS_SMBIOS_INSTANCE 1
#define HAS_SMBIOS_LABEL 2
#define HAS_SMBIOS_SLOT 4
#define HAS_SMBIOS_EXACT_MATCH 8
#define HAS_SYSFS_INDEX 1
#define HAS_SYSFS_LABEL 2
#define PHYSICAL_SLOT_UNKNOWN (INT_MAX)
#define INDEX_IN_SLOT_UNKNOWN (INT_MAX)
extern int get_pci_devices(struct libbiosdevname_state *state);
extern void free_pci_devices(struct libbiosdevname_state *state);
extern struct pci_device * find_dev_by_pci(const struct libbiosdevname_state *state, const struct pci_dev *p);
extern struct pci_device * find_pci_dev_by_pci_addr(const struct libbiosdevname_state *state, const int domain, const int bus, const int device, const int func);
extern struct pci_device * find_dev_by_pci_name(const struct libbiosdevname_state *state, const char *s);
extern int unparse_pci_device(char *buf, const int size, const struct pci_device *p);
extern int unparse_pci_name(char *buf, int size, const struct pci_dev *pdev);
static inline int is_pci_network(struct pci_device *dev)
{
return (dev->class & 0xFF00) == 0x0200;
}
static inline int is_pci_smbios_type_ethernet(struct pci_device *dev)
{
return (dev->smbios_type == 0x05);
}
static inline int is_pci_bridge(struct pci_device *dev)
{
return (dev->pci_dev->device_class>>8 == 0x06);
}
#ifdef HAVE_STRUCT_PCI_DEV_DOMAIN
static inline int pci_domain_nr(const struct pci_dev *dev)
{
return dev->domain;
}
#else
static inline int pci_domain_nr(const struct pci_dev *dev)
{
return 0;
}
#endif
#endif /* PCI_H_INCLUDED */
|