blob: bce0291b9b3856f3efd9e4c1bd01e36ebfd27c92 [file] [log] [blame]
Nico Huber3db76532017-05-18 18:07:34 +02001config NO_EDID_FILL_FB
2 bool
3 default y if !MAINBOARD_DO_NATIVE_VGA_INIT
4 help
5 Don't include default fill_lb_framebuffer() implementation. Select
6 this if your drivers uses MAINBOARD_DO_NATIVE_VGA_INIT but provides
7 its own fill_lb_framebuffer() implementation.
Nico Huberbc652b92017-07-17 23:39:02 +02008
9config RAMSTAGE_ADA
10 bool
11 help
12 Selected by features that use Ada code in ramstage.
13
14config RAMSTAGE_LIBHWBASE
15 bool
16 select RAMSTAGE_ADA
17 help
18 Selected by features that require `libhwbase` in ramstage.
19
20if RAMSTAGE_LIBHWBASE
21
22config HWBASE_DYNAMIC_MMIO
23 def_bool y
24
Nico Huber625160f2017-07-17 23:42:33 +020025config HWBASE_DEFAULT_MMCONF
26 hex
27 default MMCONF_BASE_ADDRESS
28
29config HWBASE_DIRECT_PCIDEV
30 def_bool y
31
Nico Huberbc652b92017-07-17 23:39:02 +020032endif