diff options
| author | Simon Glass <sjg@chromium.org> | 2020-09-22 12:45:03 -0600 |
|---|---|---|
| committer | Bin Meng <bmeng.cn@gmail.com> | 2020-09-25 11:27:15 +0800 |
| commit | c9cc37de2c71ebbf953c290144c3efc18145ded9 (patch) | |
| tree | 0288df4ef4140ad3c4e22513e0ecb3907c2a3b76 /arch/x86/cpu/intel_common/Makefile | |
| parent | e4f09f97c96b123aa0a334a7f6fc38f6a14154aa (diff) | |
| download | u-boot-c9cc37de2c71ebbf953c290144c3efc18145ded9.tar.gz u-boot-c9cc37de2c71ebbf953c290144c3efc18145ded9.tar.xz u-boot-c9cc37de2c71ebbf953c290144c3efc18145ded9.zip | |
x86: apl: Support writing the IntelGraphicsMem table
This table is needed by the Linux graphics driver to handle graphics
correctly. Write it to ACPI.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/intel_common/Makefile')
| -rw-r--r-- | arch/x86/cpu/intel_common/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/cpu/intel_common/Makefile b/arch/x86/cpu/intel_common/Makefile index 374803b876..207d541396 100644 --- a/arch/x86/cpu/intel_common/Makefile +++ b/arch/x86/cpu/intel_common/Makefile @@ -9,6 +9,10 @@ obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += report_platform.o obj-$(CONFIG_$(SPL_TPL_)X86_32BIT_INIT) += mrc.o endif +ifndef CONFIG_SPL_BUILD +obj-$(CONFIG_INTEL_GMA_ACPI) += intel_opregion.o +endif + ifdef CONFIG_INTEL_CAR_CQOS obj-$(CONFIG_TPL_BUILD) += car2.o ifndef CONFIG_SPL_BUILD |
