2003-09-02 05:36:25 +02:00
|
|
|
#ifndef DEVICE_PATH_H
|
|
|
|
#define DEVICE_PATH_H
|
|
|
|
|
|
|
|
enum device_path_type {
|
|
|
|
DEVICE_PATH_NONE = 0,
|
2003-10-11 08:20:25 +02:00
|
|
|
DEVICE_PATH_ROOT,
|
2003-09-02 05:36:25 +02:00
|
|
|
DEVICE_PATH_PCI,
|
|
|
|
DEVICE_PATH_PNP,
|
|
|
|
DEVICE_PATH_I2C,
|
2004-10-14 22:54:17 +02:00
|
|
|
DEVICE_PATH_APIC,
|
2013-02-12 23:17:15 +01:00
|
|
|
DEVICE_PATH_DOMAIN,
|
2013-02-13 00:20:54 +01:00
|
|
|
DEVICE_PATH_CPU_CLUSTER,
|
2004-11-18 23:38:08 +01:00
|
|
|
DEVICE_PATH_CPU,
|
|
|
|
DEVICE_PATH_CPU_BUS,
|
2012-06-21 22:19:48 +02:00
|
|
|
DEVICE_PATH_IOAPIC,
|
2016-02-13 15:10:04 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* When adding path types to this table, please also update the
|
|
|
|
* DEVICE_PATH_NAMES macro below.
|
|
|
|
*/
|
2004-10-16 04:48:37 +02:00
|
|
|
};
|
|
|
|
|
2016-02-13 15:10:04 +01:00
|
|
|
#define DEVICE_PATH_NAMES { \
|
|
|
|
"DEVICE_PATH_NONE", \
|
|
|
|
"DEVICE_PATH_ROOT", \
|
|
|
|
"DEVICE_PATH_PCI", \
|
|
|
|
"DEVICE_PATH_PNP", \
|
|
|
|
"DEVICE_PATH_I2C", \
|
|
|
|
"DEVICE_PATH_APIC", \
|
|
|
|
"DEVICE_PATH_DOMAIN", \
|
|
|
|
"DEVICE_PATH_CPU_CLUSTER", \
|
|
|
|
"DEVICE_PATH_CPU", \
|
|
|
|
"DEVICE_PATH_CPU_BUS", \
|
|
|
|
"DEVICE_PATH_IOAPIC" \
|
|
|
|
}
|
|
|
|
|
2013-02-12 23:17:15 +01:00
|
|
|
struct domain_path
|
2004-10-16 04:48:37 +02:00
|
|
|
{
|
|
|
|
unsigned domain;
|
2003-09-02 05:36:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pci_path
|
|
|
|
{
|
|
|
|
unsigned devfn;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pnp_path
|
|
|
|
{
|
|
|
|
unsigned port;
|
|
|
|
unsigned device;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct i2c_path
|
|
|
|
{
|
|
|
|
unsigned device;
|
2016-05-08 04:49:37 +02:00
|
|
|
unsigned mode_10bit;
|
2003-09-02 05:36:25 +02:00
|
|
|
};
|
|
|
|
|
2004-10-14 22:54:17 +02:00
|
|
|
struct apic_path
|
|
|
|
{
|
|
|
|
unsigned apic_id;
|
2012-08-07 16:12:11 +02:00
|
|
|
unsigned package_id;
|
2005-11-26 17:56:05 +01:00
|
|
|
unsigned node_id;
|
|
|
|
unsigned core_id;
|
2012-08-07 16:12:11 +02:00
|
|
|
unsigned thread_id;
|
2004-10-14 22:54:17 +02:00
|
|
|
};
|
|
|
|
|
2012-06-21 22:19:48 +02:00
|
|
|
struct ioapic_path
|
|
|
|
{
|
|
|
|
unsigned ioapic_id;
|
|
|
|
};
|
|
|
|
|
2013-02-13 00:20:54 +01:00
|
|
|
struct cpu_cluster_path
|
2004-10-16 04:48:37 +02:00
|
|
|
{
|
|
|
|
unsigned cluster;
|
|
|
|
};
|
|
|
|
|
2004-11-18 23:38:08 +01:00
|
|
|
struct cpu_path
|
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cpu_bus_path
|
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
};
|
|
|
|
|
2004-10-16 04:48:37 +02:00
|
|
|
|
2003-09-02 05:36:25 +02:00
|
|
|
struct device_path {
|
|
|
|
enum device_path_type type;
|
|
|
|
union {
|
2013-02-13 00:20:54 +01:00
|
|
|
struct pci_path pci;
|
|
|
|
struct pnp_path pnp;
|
|
|
|
struct i2c_path i2c;
|
|
|
|
struct apic_path apic;
|
|
|
|
struct ioapic_path ioapic;
|
|
|
|
struct domain_path domain;
|
|
|
|
struct cpu_cluster_path cpu_cluster;
|
|
|
|
struct cpu_path cpu;
|
|
|
|
struct cpu_bus_path cpu_bus;
|
2009-02-28 21:10:20 +01:00
|
|
|
};
|
2003-09-02 05:36:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define DEVICE_PATH_MAX 30
|
2005-07-08 04:49:49 +02:00
|
|
|
#define BUS_PATH_MAX (DEVICE_PATH_MAX+10)
|
2003-09-02 05:36:25 +02:00
|
|
|
|
|
|
|
extern int path_eq(struct device_path *path1, struct device_path *path2);
|
2016-02-13 15:10:04 +01:00
|
|
|
extern const char *dev_path_name(enum device_path_type type);
|
2003-09-02 05:36:25 +02:00
|
|
|
|
|
|
|
#endif /* DEVICE_PATH_H */
|