summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/device/device.h2
-rw-r--r--src/include/device/path.h8
2 files changed, 10 insertions, 0 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 744836d9ed..f3afd60b2c 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -27,6 +27,7 @@ struct i2c_bus_operations;
struct smbus_bus_operations;
struct pnp_mode_ops;
struct spi_bus_operations;
+struct usb_bus_operations;
/* Chip operations */
struct chip_operations {
@@ -276,6 +277,7 @@ void scan_smbus(struct device *bus);
void scan_generic_bus(struct device *bus);
void scan_static_bus(struct device *bus);
void scan_lpc_bus(struct device *bus);
+void scan_usb_bus(struct device *bus);
#endif /* !defined(__ROMCC__) */
diff --git a/src/include/device/path.h b/src/include/device/path.h
index eaa9cc7d67..067a507166 100644
--- a/src/include/device/path.h
+++ b/src/include/device/path.h
@@ -15,6 +15,7 @@ enum device_path_type {
DEVICE_PATH_IOAPIC,
DEVICE_PATH_GENERIC,
DEVICE_PATH_SPI,
+ DEVICE_PATH_USB,
DEVICE_PATH_MMIO,
/*
@@ -37,6 +38,7 @@ enum device_path_type {
"DEVICE_PATH_IOAPIC", \
"DEVICE_PATH_GENERIC", \
"DEVICE_PATH_SPI", \
+ "DEVICE_PATH_USB", \
"DEVICE_PATH_MMIO", \
}
@@ -91,6 +93,11 @@ struct generic_path {
unsigned int subid;
};
+struct usb_path {
+ unsigned int port_type;
+ unsigned int port_id;
+};
+
struct mmio_path {
uintptr_t addr;
};
@@ -109,6 +116,7 @@ struct device_path {
struct cpu_bus_path cpu_bus;
struct generic_path generic;
struct spi_path spi;
+ struct usb_path usb;
struct mmio_path mmio;
};
};