summaryrefslogtreecommitdiff
path: root/src/southbridge/amd
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-06-09 19:07:19 +0000
committerStefan Reinauer <stepan@openbios.org>2010-06-09 19:07:19 +0000
commit42e5f649ede7c931b25feb854b3f78dffc1e5d15 (patch)
treeb0c417dbed2713d70e66925be052d40121fa53ba /src/southbridge/amd
parenta06f950c27651d82e2e1b95fa2690a3cab70750b (diff)
downloadcoreboot-42e5f649ede7c931b25feb854b3f78dffc1e5d15.tar.xz
The interrupt controller lives at I/O 0x4d0/0x4d1.
However on these platforms we were causing a resource conflict by letting the resource allocator start allocations at 0x400. Change the constraints to start at 0x1000 so we avoid allocating over LPT ports (0x778-0x77f), PCI (0xcf8-0xcff) and some other fixed resources that might live down there (smbus base, acpi base,...) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5624 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd')
-rw-r--r--src/southbridge/amd/cs5530/cs5530_isa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/cs5530/cs5530_isa.c b/src/southbridge/amd/cs5530/cs5530_isa.c
index ad41bd20cd..c949cbf681 100644
--- a/src/southbridge/amd/cs5530/cs5530_isa.c
+++ b/src/southbridge/amd/cs5530/cs5530_isa.c
@@ -33,7 +33,7 @@ static void cs5530_read_resources(device_t dev)
res = new_resource(dev, 1);
res->base = 0x0UL;
- res->size = 0x400UL;
+ res->size = 0x1000UL;
res->limit = 0xffffUL;
res->flags = IORESOURCE_IO | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;