diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device/device.h | 1 | ||||
-rw-r--r-- | src/include/device/path.h | 11 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h index 62460aea6a..d9af64adf5 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -232,6 +232,7 @@ void fixed_mem_resource(device_t dev, unsigned long index, unsigned long basek, unsigned long sizek, unsigned long type); void scan_smbus(device_t bus); +void scan_static_bus(device_t bus); void scan_lpc_bus(device_t bus); /* It is the caller's responsibility to adjust regions such that ram_resource() diff --git a/src/include/device/path.h b/src/include/device/path.h index 8421a38473..9d7fb38d42 100644 --- a/src/include/device/path.h +++ b/src/include/device/path.h @@ -13,6 +13,7 @@ enum device_path_type { DEVICE_PATH_CPU, DEVICE_PATH_CPU_BUS, DEVICE_PATH_IOAPIC, + DEVICE_PATH_GENERIC, /* * When adding path types to this table, please also update the @@ -31,7 +32,8 @@ enum device_path_type { "DEVICE_PATH_CPU_CLUSTER", \ "DEVICE_PATH_CPU", \ "DEVICE_PATH_CPU_BUS", \ - "DEVICE_PATH_IOAPIC" \ + "DEVICE_PATH_IOAPIC", \ + "DEVICE_PATH_GENERIC" \ } struct domain_path @@ -85,6 +87,12 @@ struct cpu_bus_path unsigned id; }; +struct generic_path +{ + unsigned id; + unsigned subid; +}; + struct device_path { enum device_path_type type; @@ -98,6 +106,7 @@ struct device_path { struct cpu_cluster_path cpu_cluster; struct cpu_path cpu; struct cpu_bus_path cpu_bus; + struct generic_path generic; }; }; |