aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cs5535
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2010-06-07 15:39:04 +0000
committerMyles Watson <mylesgw@gmail.com>2010-06-07 15:39:04 +0000
commit81af48e4913af3fdd5cbe5f9a12954a5fa4c928f (patch)
tree4d85162e349b211aa09ba2a145acd9371beffa12 /src/southbridge/amd/cs5535
parent7923c495015ecb271da6e48b28cf5c065fcdd4bc (diff)
This patch extends the reserved resources for the cs5536 to avoid the excluded
range as detailed on p104 of the cs5536 Device Data Book. Extended to 0x1000. Same change for cs5535. Signed-off by: Edwin Beasant edwin_beasant@virtensys.com Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5618 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/amd/cs5535')
-rw-r--r--src/southbridge/amd/cs5535/cs5535.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/amd/cs5535/cs5535.c b/src/southbridge/amd/cs5535/cs5535.c
index 50b62df0c3..c1fed9f815 100644
--- a/src/southbridge/amd/cs5535/cs5535.c
+++ b/src/southbridge/amd/cs5535/cs5535.c
@@ -71,13 +71,13 @@ static void southbridge_enable(struct device *dev)
static void cs5535_read_resources(device_t dev)
{
- struct resource* res;
+ struct resource *res;
pci_dev_read_resources(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;
@@ -89,7 +89,7 @@ static void cs5535_read_resources(device_t dev)
static void cs5535_pci_dev_enable_resources(device_t dev)
{
- printk(BIOS_SPEW, "cs5535.c: %s()\n", __func__);
+ printk(BIOS_DEBUG, "%s()\n", __func__);
pci_dev_enable_resources(dev);
enable_childrens_resources(dev);
}