summaryrefslogtreecommitdiff
path: root/OvmfPkg
diff options
context:
space:
mode:
authorjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2012-08-13 15:41:07 +0000
committerjljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524>2012-08-13 15:41:07 +0000
commitcc2f2c41c8b27060824b54a17b4c254dc9f3aeba (patch)
tree096ea8e0b5a30127cfdef38e5747dff7a6a31c0b /OvmfPkg
parentba01f3b98fa0fd18c1aa28a003b336d0d3720d10 (diff)
downloadedk2-platforms-cc2f2c41c8b27060824b54a17b4c254dc9f3aeba.tar.xz
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
Diffstat (limited to 'OvmfPkg')
-rw-r--r--OvmfPkg/AcpiTables/Dsdt.asl13
1 files changed, 13 insertions, 0 deletions
diff --git a/OvmfPkg/AcpiTables/Dsdt.asl b/OvmfPkg/AcpiTables/Dsdt.asl
index be6fc71d78..93e84bcfa7 100644
--- a/OvmfPkg/AcpiTables/Dsdt.asl
+++ b/OvmfPkg/AcpiTables/Dsdt.asl
@@ -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}
+ })
+ }
}
}
}