diff options
author | Edwin Beasant <edwin_beasant@virtensys.com> | 2010-01-26 15:34:15 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2010-01-26 15:34:15 +0000 |
commit | 47afa44a9f66cb1e8d80b1bc3b7c5aa0f4cd91f0 (patch) | |
tree | 9b334dd9f5a7ae2eeb873d150a48d47d0677f12b | |
parent | c6d3ff6cdd6f34a4a1d41a2db4ef450067cdc5ea (diff) | |
download | coreboot-47afa44a9f66cb1e8d80b1bc3b7c5aa0f4cd91f0.tar.xz |
Mark c0000-fffff as usable on geode-lx. SeaBIOS needs it.
a0000-bffff might be usable as well, but it won't hurt to
keep that range excluded.
Signed-off-by: Edwin Beasant <edwin_beasant@virtensys.com>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5057 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/northbridge/amd/lx/northbridge.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/northbridge/amd/lx/northbridge.c b/src/northbridge/amd/lx/northbridge.c index adc5db1461..837f0779ea 100644 --- a/src/northbridge/amd/lx/northbridge.c +++ b/src/northbridge/amd/lx/northbridge.c @@ -414,6 +414,7 @@ static void pci_domain_set_resources(device_t dev) /* Report the memory regions */ idx = 10; ram_resource(dev, idx++, 0, 640); + ram_resource(dev, idx++, 768, 1024); // c0000-fffff are usable ram_resource(dev, idx++, 1024, tomk - 1024); // Systop - 1 MB -> KB #if CONFIG_WRITE_HIGH_TABLES==1 |