blob: dbc05ade80be8ce358255058efb4e5845dc200c8 [file] [log] [blame]
Dtrain Hsu1017a8f2022-04-28 14:28:54 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <console/console.h>
4#include <drivers/intel/gma/opregion.h>
5#include <fw_config.h>
6
7const char *mainboard_vbt_filename(void)
8{
9 if (fw_config_probe(FW_CONFIG(DB_DISPLAY, DB_HDMI))) {
10 printk(BIOS_INFO, "Use vbt-kinox_HDMI.bin\n");
11 return "vbt-kinox_HDMI.bin";
12 }
13 printk(BIOS_INFO, "Use vbt.bin\n");
14 return "vbt.bin";
15}