blob: 9d81968c5534082560ebe5b39b7dd27e11b56a06 [file] [log] [blame]
Angel Pons89ab2502020-04-03 01:22:28 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Patrick Rudolphaae6e9c2016-12-30 17:02:04 +01003
Patrick Rudolphaae6e9c2016-12-30 17:02:04 +01004#include <northbridge/intel/sandybridge/sandybridge.h>
5#include <northbridge/intel/sandybridge/raminit_native.h>
6#include <southbridge/intel/bd82x6x/pch.h>
7#include <southbridge/intel/common/gpio.h>
8
Patrick Rudolphaae6e9c2016-12-30 17:02:04 +01009const struct southbridge_usb_port mainboard_usb_ports[] = {
10 { 1, 0, -1 },
11 { 1, 0, -1 },
12 { 1, 0, -1 },
13 { 1, 0, -1 },
14 { 1, 0, -1 },
15 { 1, 0, -1 },
16 { 1, 0, -1 },
17 { 1, 0, -1 },
18 { 1, 0, -1 },
19 { 1, 0, -1 },
20 { 1, 0, -1 },
21 { 1, 0, -1 },
22 { 1, 0, -1 },
23 { 1, 0, -1 },
24};
25
Patrick Rudolphaae6e9c2016-12-30 17:02:04 +010026void mainboard_get_spd(spd_raw_data *spd, bool id_only)
27{
28 read_spd(&spd[0], 0x50, id_only);
29 read_spd(&spd[2], 0x52, id_only);
30}