1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
4 #include <drivers/intel/gma/int15.h>
5 #include <drivers/lenovo/lenovo.h>
7 static void fill_ssdt(const struct device
*device
)
9 drivers_lenovo_serial_ports_ssdt_generate("\\_SB.PCI0.LPCB", 0);
12 static void mainboard_enable(struct device
*dev
)
14 install_intel_vga_int15_handler(GMA_INT15_ACTIVE_LFP_INT_LVDS
,
15 GMA_INT15_PANEL_FIT_CENTERING
,
16 GMA_INT15_BOOT_DISPLAY_DEFAULT
, 2);
18 dev
->ops
->acpi_fill_ssdt
= fill_ssdt
;
21 struct chip_operations mainboard_ops
= {
22 .enable_dev
= mainboard_enable
,