diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-09-30 02:16:47 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-09-30 02:16:47 +0000 |
commit | 99dcf231f48433a07cbd47ecb0c23301a6b5b34e (patch) | |
tree | 0ea4045b3c64e80081c15a706c9308a5b94c4ba6 /src/devices/root_device.c | |
parent | 02360d6672bd95b980f83f464dea4c624b8f8aa2 (diff) | |
download | coreboot-99dcf231f48433a07cbd47ecb0c23301a6b5b34e.tar.xz |
The epia now works.
Now to fix the ram ...
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1159 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/root_device.c')
-rw-r--r-- | src/devices/root_device.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/devices/root_device.c b/src/devices/root_device.c index c05a2cd015..ae02277363 100644 --- a/src/devices/root_device.c +++ b/src/devices/root_device.c @@ -11,6 +11,7 @@ void root_dev_read_resources(device_t root) { int res = 0; + printk_spew("%s . Root is %p\n", __FUNCTION__, root); /* Initialize the system wide io space constraints */ root->resource[res].base = 0x400; root->resource[res].size = 0; @@ -19,6 +20,8 @@ void root_dev_read_resources(device_t root) root->resource[res].limit = 0xffffUL; root->resource[res].flags = IORESOURCE_IO; root->resource[res].index = 0; + printk_spew("%s . link %p, resource %p\n", __FUNCTION__, + &root->link[0], &root->resource[res]); compute_allocate_resource(&root->link[0], &root->resource[res], IORESOURCE_IO, IORESOURCE_IO); res++; @@ -31,11 +34,14 @@ void root_dev_read_resources(device_t root) root->resource[res].limit = 0xffffffffUL; root->resource[res].flags = IORESOURCE_MEM; root->resource[res].index = 1; + printk_spew("%s . link %p, resource %p\n", __FUNCTION__, + &root->link[0], &root->resource[res]); compute_allocate_resource(&root->link[0], &root->resource[res], IORESOURCE_MEM, IORESOURCE_MEM); res++; root->resources = res; + printk_spew("%s DONE\n", __FUNCTION__); } /** |