blob: eb4c16eb514833f4988d7cd41ed0c740831c808e [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
Patrick Rudolph666c1722018-04-03 09:57:33 +020020config FLATTENED_DEVICE_TREE
21 bool
22 help
23 Selected by features that require to parse and manipulate a flattened
24 devicetree in ramstage.
25
Nico Huberbc652b92017-07-17 23:39:02 +020026if RAMSTAGE_LIBHWBASE
27
28config HWBASE_DYNAMIC_MMIO
29 def_bool y
30
Nico Huber625160f2017-07-17 23:42:33 +020031config HWBASE_DEFAULT_MMCONF
32 hex
33 default MMCONF_BASE_ADDRESS
34
35config HWBASE_DIRECT_PCIDEV
36 def_bool y
37
Nico Huberbc652b92017-07-17 23:39:02 +020038endif