/** @file
Common Pch information library for Client PCH silicon.
All function in this library is available for PEI, DXE, and SMM,
But do not support UEFI RUNTIME environment call.
Copyright (c) 2019 Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include
#include
#include
/**
Get Pch Maximum Pcie Clock Number
@retval Pch Maximum Pcie Clock Number
**/
UINT8
GetPchMaxPcieClockNum (
VOID
)
{
if (IsPchH ()) {
return 16;
} else {
return 6;
}
}
/**
Get Pch Maximum Serial IO controllers number
@retval Pch Maximum Serial IO controllers number
**/
UINT8
GetPchMaxSerialIoControllersNum (
VOID
)
{
return 12;
}
/**
Get Pch Maximum Serial IO I2C controllers number
@retval Pch Maximum Serial IO I2C controllers number
**/
UINT8
GetPchMaxSerialIoI2cControllersNum (
VOID
)
{
if (IsPchH ()) {
return 4;
} else {
return 6;
}
}
/**
Get Pch Maximum Serial IO SPI controllers number
@retval Pch Maximum Serial IO SPI controllers number
**/
UINT8
GetPchMaxSerialIoSpiControllersNum (
VOID
)
{
return 3;
}
/**
Get Pch Maximum Serial IO UART controllers number
@retval Pch Maximum Serial IO UART controllers number
**/
UINT8
GetPchMaxSerialIoUartControllersNum (
VOID
)
{
return 3;
}