summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2015-11-09 12:00:52 -0500
committerKevin O'Connor <kevin@koconnor.net>2015-11-17 09:19:18 -0500
commit45b594ab1d0d05903482e818e7c6b2c81b850e54 (patch)
tree03db0cb3ed00a7e6566ba4b56dad5c336baee7cc /docs
parent01a84bea2d28a19d2405c1ecac4bdef17683cc0c (diff)
downloadqemu-seabios-45b594ab1d0d05903482e818e7c6b2c81b850e54.tar.gz
usb: Allow configuration of sigatt time (in etc/usb-time-sigatt)
Several users have reported devices that take more than 100ms to announce their presence on a USB port. Allow the sigatt timeout to be specified at runtime as a way to extend the default timeout. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r--docs/Runtime_config.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/Runtime_config.md b/docs/Runtime_config.md
index d6fea28..483c375 100644
--- a/docs/Runtime_config.md
+++ b/docs/Runtime_config.md
@@ -189,3 +189,4 @@ There are several additional configuration options available in the
| floppy1 | The type of the second floppy drive in the system. See the description of **floppy0** for more info.
| threads | By default, SeaBIOS will parallelize hardware initialization during bootup to reduce boot time. Multiple hardware devices can be initialized in parallel between vga initialization and option rom initialization. One can set this file to a value of zero to force hardware initialization to run serially. Alternatively, one can set this file to 2 to enable early hardware initialization that runs in parallel with vga, option rom initialization, and the boot menu.
| sdcard* | One may create one or more files with an "sdcard" prefix (eg, "etc/sdcard0") with the physical memory address of an SDHCI controller (one memory address per file). This may be useful for SDHCI controllers that do not appear as PCI devices, but are mapped to a consistent memory address.
+| usb-time-sigatt | The USB2 specification requires devices to signal that they are attached within 100ms of the USB port being powered on. Some USB devices are known to require more time. Prior to receiving an attachment signal there is no way to know if a USB port is empty or if it has a device attached. One may specify an amount of time here (in milliseconds, default 100) to wait for a USB device attachment signal. Increasing this value will also increase the overall machine bootup time.