summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKeith Hui <buurin@gmail.com>2020-01-27 18:08:30 -0500
committerAngel Pons <th3fanbus@gmail.com>2020-04-18 18:52:34 +0000
commit3acf43c336a8ae83200e862aecbc7c2eb3e52893 (patch)
treee4ef060e4db31218f29917860fdaa98791875127 /src
parent5d8ad8598bc5043bde2329aa5be561f6a1e308cd (diff)
downloadcoreboot-3acf43c336a8ae83200e862aecbc7c2eb3e52893.tar.gz
coreboot-3acf43c336a8ae83200e862aecbc7c2eb3e52893.tar.bz2
coreboot-3acf43c336a8ae83200e862aecbc7c2eb3e52893.zip
i82371eb: Drop KB/Mouse/FDC declarations
These are declared by superio. Change-Id: I1db4aca7d682ec298b8f53cfab6ffe661e8ff6e0 Signed-off-by: Keith Hui <buurin@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38600 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/southbridge/intel/i82371eb/acpi/isabridge.asl68
1 files changed, 0 insertions, 68 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi/isabridge.asl b/src/southbridge/intel/i82371eb/acpi/isabridge.asl
index 55a0ca560e73..12986186492a 100644
--- a/src/southbridge/intel/i82371eb/acpi/isabridge.asl
+++ b/src/southbridge/intel/i82371eb/acpi/isabridge.asl
@@ -1,74 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
-/*
- * ISA portions taken from QEMU acpi-dsdt.dsl.
- */
-
-// Intel LPC Bus Device - 0:4.0
-Device (LPCB)
-{
- Name(_ADR, 0x00040000)
-
- OperationRegion(PCIC, PCI_Config, 0x00, 0x100)
-
- /* PS/2 keyboard (seems to be important for WinXP install) */
- Device (KBD)
- {
- Name (_HID, EisaId ("PNP0303"))
- Method (_STA, 0, NotSerialized)
- {
- Return (0x0f)
- }
- Method (_CRS, 0, NotSerialized)
- {
- Name (TMP, ResourceTemplate () {
- IO (Decode16, 0x0060, 0x0060, 0x01, 0x01)
- IO (Decode16, 0x0064, 0x0064, 0x01, 0x01)
- IRQNoFlags () {1}
- })
- Return (TMP)
- }
- }
-
- /* PS/2 mouse */
- Device (MOU)
- {
- Name (_HID, EisaId ("PNP0F13"))
- Method (_STA, 0, NotSerialized)
- {
- Return (0x0f)
- }
- Method (_CRS, 0, NotSerialized)
- {
- Name (TMP, ResourceTemplate () {
- IRQNoFlags () {12}
- })
- Return (TMP)
- }
- }
-
- /* PS/2 floppy controller */
- Device (FDC0)
- {
- Name (_HID, EisaId ("PNP0700"))
- Method (_STA, 0, NotSerialized)
- {
- Return (0x0f)
- }
- Method (_CRS, 0, NotSerialized)
- {
- Name (BUF0, ResourceTemplate () {
- IO (Decode16, 0x03F2, 0x03F2, 0x00, 0x04)
- IO (Decode16, 0x03F7, 0x03F7, 0x00, 0x01)
- IRQNoFlags () {6}
- DMA (Compatibility, NotBusMaster, Transfer8) {2}
- })
- Return (BUF0)
- }
- }
-}
-
Device(MBRS) {
Name (_HID, EisaId ("PNP0C02"))
Name (_UID, 0x01)