diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-07-10 14:26:43 +0300 |
---|---|---|
committer | Rudolf Marek <r.marek@assembler.cz> | 2012-07-23 17:44:13 +0200 |
commit | 505414a6cfb2aeef455b5144e4b96fc27f19eb39 (patch) | |
tree | 25ecfec62c9340f62a502b50f89f5dc58000657b /src/mainboard/amd/persimmon | |
parent | ce6e9fed2e1e0e5a493d1133caf5c6b9f713b7fc (diff) |
AMD and GFXUMA: drop redundant use of lb_add_memory_range()
Use of uma_resource() in AMD northbridge code created a memory
resource marked as reserved. Such resources are removed
from system memory in write_coreboot_table().
Change-Id: Ib5e49e851d6622d8ece9d6d612e245b3962b9167
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/1233
Tested-by: build bot (Jenkins)
Reviewed-by: Rudolf Marek <r.marek@assembler.cz>
Diffstat (limited to 'src/mainboard/amd/persimmon')
-rw-r--r-- | src/mainboard/amd/persimmon/mainboard.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mainboard/amd/persimmon/mainboard.c b/src/mainboard/amd/persimmon/mainboard.c index 32190bdab6..86172ba1f1 100644 --- a/src/mainboard/amd/persimmon/mainboard.c +++ b/src/mainboard/amd/persimmon/mainboard.c @@ -72,15 +72,6 @@ static void persimmon_enable(device_t dev) int add_mainboard_resources(struct lb_memory *mem) { - /* UMA is removed from system memory in the northbridge code, but - * in some circumstances we want the memory mentioned as reserved. - */ -#if CONFIG_GFXUMA - printk(BIOS_INFO, "uma_memory_start=0x%llx, uma_memory_size=0x%llx \n", - uma_memory_base, uma_memory_size); - lb_add_memory_range(mem, LB_MEM_RESERVED, uma_memory_base, - uma_memory_size); -#endif return 0; } |