- Timestamp:
- 09/22/08 15:07:20 (4 months ago)
- Location:
- trunk/coreboot-v2/src
- Files:
-
- 10 added
- 3 modified
-
arch/i386/boot/coreboot_table.c (modified) (1 diff)
-
config/Options.lb (modified) (1 diff)
-
include/boot/coreboot_tables.h (modified) (1 diff)
-
southbridge/amd/rs690 (added)
-
southbridge/amd/rs690/Config.lb (added)
-
southbridge/amd/rs690/chip.h (added)
-
southbridge/amd/rs690/rs690.c (added)
-
southbridge/amd/rs690/rs690.h (added)
-
southbridge/amd/rs690/rs690_cmn.c (added)
-
southbridge/amd/rs690/rs690_early_setup.c (added)
-
southbridge/amd/rs690/rs690_gfx.c (added)
-
southbridge/amd/rs690/rs690_ht.c (added)
-
southbridge/amd/rs690/rs690_pcie.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/coreboot-v2/src/arch/i386/boot/coreboot_table.c
r3437 r3588 448 448 rom_table_start, rom_table_end-rom_table_start); 449 449 450 /* AMD rs690 chip, we should remove the UMA from system memory. */ 451 #if (CONFIG_GFXUMA == 1) 452 printk_info("uma_memory_start=0x%x, uma_memory_size=0x%x \n", 453 uma_memory_start, uma_memory_size); 454 lb_add_memory_range(mem, LB_MEM_TABLE, 455 uma_memory_start, uma_memory_size); 456 #endif 457 458 450 459 /* Note: 451 460 * I assume that there is always memory at immediately after -
trunk/coreboot-v2/src/config/Options.lb
r3465 r3588 1074 1074 end 1075 1075 1076 define K8_MEM_BANK_B_ONLY 1077 default 0 1078 export always 1079 comment "use AMD K8's memory bank B only to make a 64bit memory system and memory bank A is free, such as Filbert." 1080 end 1081 1076 1082 define CONFIG_VIDEO_MB 1077 1083 default none 1078 1084 export used 1079 1085 comment "Integrated graphics with UMA has dynamic setup" 1086 end 1087 1088 define CONFIG_GFXUMA 1089 default none 1090 export used 1091 comment "GFX UMA" 1080 1092 end 1081 1093 -
trunk/coreboot-v2/src/include/boot/coreboot_tables.h
r3396 r3588 43 43 * See also: util/lbtdump/lbtdump.c 44 44 */ 45 46 /* AMD rs690 chip, declare global variables. */ 47 #if (CONFIG_GFXUMA == 1) 48 unsigned long uma_memory_start, uma_memory_size; 49 #endif 50 45 51 46 52 struct lb_uint64 {
