Add support to enable/disable builtin GbE
In case we are going to use this in future designs. BUG=none TEST=none BRANCH=none Change-Id: I750addf10e4fe6f8240f8c8262253f8af7027e29 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: https://gerrit.chromium.org/gerrit/55844 Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
8a7e1b4900
commit
7f588e7d62
2 changed files with 4 additions and 2 deletions
|
|
@ -31,7 +31,7 @@
|
|||
#define PEI_DATA_H
|
||||
|
||||
typedef void (*tx_byte_func)(unsigned char byte);
|
||||
#define PEI_VERSION 10
|
||||
#define PEI_VERSION 11
|
||||
|
||||
struct pei_data
|
||||
{
|
||||
|
|
@ -53,6 +53,7 @@ struct pei_data
|
|||
uint8_t spd_addresses[4];
|
||||
int boot_mode;
|
||||
int ec_present;
|
||||
int gbe_enable;
|
||||
// 0 = leave channel enabled
|
||||
// 1 = disable dimm 0 on channel
|
||||
// 2 = disable dimm 1 on channel
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ typedef struct {
|
|||
} pch_usb3_controller_settings;
|
||||
|
||||
typedef void (*tx_byte_func)(unsigned char byte);
|
||||
#define PEI_VERSION 5
|
||||
#define PEI_VERSION 6
|
||||
|
||||
struct pei_data
|
||||
{
|
||||
|
|
@ -61,6 +61,7 @@ struct pei_data
|
|||
uint8_t ts_addresses[4];
|
||||
int boot_mode;
|
||||
int ec_present;
|
||||
int gbe_enable;
|
||||
// 0 = leave channel enabled
|
||||
// 1 = disable dimm 0 on channel
|
||||
// 2 = disable dimm 1 on channel
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue