In preparation to remove the static CBMEM allocator, tag the chipsets that still do not implement get_top_of_ram() for romstage. LATE_CBMEM_INIT also implies BROKEN_CAR_MIGRATE. Change-Id: Iad359db2e65ac15c54ff6e9635429628e4db6fde Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/7850 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins)
30 lines
589 B
Plaintext
30 lines
589 B
Plaintext
config NORTHBRIDGE_INTEL_I82830
|
|
bool
|
|
select HAVE_DEBUG_RAM_SETUP
|
|
select LATE_CBMEM_INIT
|
|
|
|
choice
|
|
prompt "Onboard graphics"
|
|
default I830_VIDEO_MB_8MB
|
|
depends on NORTHBRIDGE_INTEL_I82830
|
|
|
|
config I830_VIDEO_MB_OFF
|
|
bool "Disabled, 0KB"
|
|
config I830_VIDEO_MB_512KB
|
|
bool "Enabled, 512KB"
|
|
config I830_VIDEO_MB_1MB
|
|
bool "Enabled, 1MB"
|
|
config I830_VIDEO_MB_8MB
|
|
bool "Enabled, 8MB"
|
|
|
|
endchoice
|
|
|
|
config VIDEO_MB
|
|
int
|
|
default 0 if I830_VIDEO_MB_OFF
|
|
default 512 if I830_VIDEO_MB_512KB
|
|
default 1 if I830_VIDEO_MB_1MB
|
|
default 8 if I830_VIDEO_MB_8MB
|
|
depends on NORTHBRIDGE_INTEL_I82830
|
|
|