1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/pci_ops.h>
4 #include <northbridge/intel/sandybridge/raminit_native.h>
5 #include <southbridge/intel/common/pmbase.h>
6 #include <southbridge/intel/bd82x6x/pch.h>
8 void mainboard_pch_lpc_setup(void)
11 reg16
= pci_read_config16(PCI_DEV(0, 0x1f, 0), 0xa4);
12 reg16
|= (1 << 13); // WOL Enable Override (WOL_EN_OVRD)
13 pci_write_config16(PCI_DEV(0, 0x1f, 0), 0xa4, reg16
);
16 const struct southbridge_usb_port mainboard_usb_ports
[] = {
33 void mainboard_get_spd(spd_raw_data
*spd
, bool id_only
)
35 read_spd(&spd
[0], 0x50, id_only
);
36 read_spd(&spd
[2], 0x52, id_only
);