mirror of https://github.com/acidanthera/audk.git
OvmfPkg: add parallel port to the DSDT
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13624 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ba01f3b98f
commit
cc2f2c41c8
|
@ -526,6 +526,19 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "OVMF ", 3) {
|
|||
DMA (Compatibility, NotBusMaster, Transfer8) {2}
|
||||
})
|
||||
}
|
||||
|
||||
//
|
||||
// parallel port -- no DMA for now
|
||||
//
|
||||
Device (PAR1) {
|
||||
Name (_HID, EISAID ("PNP0400"))
|
||||
Name (_DDN, "LPT1")
|
||||
Name (_UID, 0x01)
|
||||
Name(_CRS, ResourceTemplate() {
|
||||
IO (Decode16, 0x0378, 0x0378, 0x00, 0x08)
|
||||
IRQNoFlags () {7}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue