Add hints for i8254 timer on i386 and amd64. Some people report about

systems with PnP/ACPI not reporting i8254 timer. In some cases it can be
fatal, as i8254 can be the only available time counter hardware. From other
side we are now heavily depend on i8254 timer and till the last time it's
init/usage was completely hardcoded. So this change just restores previous
behavior in more regular fashion.
This commit is contained in:
Alexander Motin 2010-07-16 23:21:46 +00:00
parent 2cf552b115
commit 060d7431b5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=210179
2 changed files with 6 additions and 0 deletions

View File

@ -27,3 +27,6 @@ hint.ppc.0.irq="7"
hint.atrtc.0.at="isa"
hint.atrtc.0.port="0x70"
hint.atrtc.0.irq="8"
hint.attimer.0.at="isa"
hint.attimer.0.port="0x40"
hint.attimer.0.irq="0"

View File

@ -35,3 +35,6 @@ hint.ppc.0.irq="7"
hint.atrtc.0.at="isa"
hint.atrtc.0.port="0x70"
hint.atrtc.0.irq="8"
hint.attimer.0.at="isa"
hint.attimer.0.port="0x40"
hint.attimer.0.irq="0"