diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-05-21 20:40:38 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-05-21 20:40:38 +0000 |
commit | 36de0424f2dd7376cf801a6f02d9842d59d9fac2 (patch) | |
tree | 1faa98262e8fdf4b5356ac7d1034a4002ea245c6 /src/mainboard/amd/dbm690t | |
parent | 1c0c6372a9ecbaec6ee9504e47824d6481a0e977 (diff) | |
download | coreboot-36de0424f2dd7376cf801a6f02d9842d59d9fac2.tar.xz |
Add "reasonable" values in ASL at places we overwrite from
coreboot later. Current ASL compilers check for validity
and complain about the dummy values.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5579 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd/dbm690t')
-rw-r--r-- | src/mainboard/amd/dbm690t/dsdt.asl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mainboard/amd/dbm690t/dsdt.asl b/src/mainboard/amd/dbm690t/dsdt.asl index 70b553a5fa..bb235fc647 100644 --- a/src/mainboard/amd/dbm690t/dsdt.asl +++ b/src/mainboard/amd/dbm690t/dsdt.asl @@ -1348,10 +1348,10 @@ DefinitionBlock ( Name(_CRS, ResourceTemplate() { DMA(Compatibility,BusMaster,Transfer8){4} IO(Decode16, 0x0000, 0x0000, 0x10, 0x10) - IO(Decode16, 0x0081, 0x0081, 0x10, 0x03) - IO(Decode16, 0x0087, 0x0087, 0x10, 0x01) - IO(Decode16, 0x0089, 0x0089, 0x10, 0x03) - IO(Decode16, 0x008F, 0x008F, 0x10, 0x01) + IO(Decode16, 0x0081, 0x0081, 0x01, 0x03) + IO(Decode16, 0x0087, 0x0087, 0x01, 0x01) + IO(Decode16, 0x0089, 0x0089, 0x01, 0x03) + IO(Decode16, 0x008F, 0x008F, 0x01, 0x01) IO(Decode16, 0x00C0, 0x00C0, 0x10, 0x20) }) /* End Name(_SB.PCI0.LpcIsaBr.MAD._CRS) */ } /* End Device(_SB.PCI0.LpcIsaBr.MAD) */ @@ -1502,29 +1502,29 @@ DefinitionBlock ( 0x00000000, /* Min */ 0x00000000, /* Max */ 0x00000000, /* Translation */ - 0x00000000, /* Max-Min, RLEN */ + 0x00000001, /* Max-Min, RLEN */ ,, PCBM ) /* DRAM memory from 4GB to TopMem2 */ QWORDMemory(ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, - 0xFFFFFFFF, /* Granularity */ - 0x00000000, /* Min */ + 0x00000000, /* Granularity */ + 0x00000000, /* Min */ 0x00000000, /* Max */ 0x00000000, /* Translation */ - 0x00000000, /* Max-Min, RLEN */ + 0x00000001, /* Max-Min, RLEN */ ,, DMHI ) /* BIOS space just below 16EB */ QWORDMemory(ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, - 0xFFFFFFFF, /* Granularity */ + 0x00000000, /* Granularity */ 0x00000000, /* Min */ - 0x00000000, /* Max */ + 0x00000000, /* Max */ 0x00000000, /* Translation */ - 0x00000000, /* Max-Min, RLEN */ + 0x00000001, /* Max-Min, RLEN */ ,, PEBM ) |