diff options
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/device.h | 1 | ||||
-rw-r--r-- | src/include/device/hypertransport.h | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h index 5529abc7f2..e7b0317db3 100644 --- a/src/include/device/device.h +++ b/src/include/device/device.h @@ -110,5 +110,6 @@ extern void root_dev_read_resources(device_t dev); extern void root_dev_set_resources(device_t dev); extern unsigned int walk_static_devices(device_t bus, unsigned int max); extern void enable_childrens_resources(device_t dev); +extern unsigned int root_dev_scan_pci_bus(device_t root, unsigned int max); #endif /* DEVICE_H */ diff --git a/src/include/device/hypertransport.h b/src/include/device/hypertransport.h new file mode 100644 index 0000000000..281f50e505 --- /dev/null +++ b/src/include/device/hypertransport.h @@ -0,0 +1,9 @@ +#ifndef DEVICE_HYPERTRANSPORT_H +#define DEVICE_HYPERTRANSPORT_H + +unsigned int hypertransport_scan_chain(struct bus *bus, unsigned min_unitid, unsigned int max); + +#define HT_IO_HOST_ALIGN 4096 +#define HT_MEM_HOST_ALIGN (1024*1024) + +#endif /* DEVICE_HYPERTRANSPORT_H */ |