blob: 06c373687b027e2c60e0c7e72a27d46450023730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#ifndef STOUT_ONBOARD_H
#define STOUT_ONBOARD_H
#include <arch/smp/mpspec.h>
#define STOUT_NIC_VENDOR_ID 0x10EC
#define STOUT_NIC_DEVICE_ID 0x8168
#define XHCI_MODE 2 // Auto
#define XHCI_PORTS 3 // Port 0 & 1
#define XHCI_PREBOOT 0 // No PreOS boot support
#define XHCI_STREAMS 1 // Sure, lets have streams
#endif
|