Instead of manually including udelay_io.c in each romstage, select UDELAY_IO for all i830 boards in the chipset. Change-Id: I0a63ddd3c5e43ea65f776385f54eceb6569751ac Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/13783 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
30 lines
606 B
Plaintext
30 lines
606 B
Plaintext
config NORTHBRIDGE_INTEL_I82830
|
|
bool
|
|
select HAVE_DEBUG_RAM_SETUP
|
|
select LATE_CBMEM_INIT
|
|
select UDELAY_IO
|
|
|
|
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
|