hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @file
  SA Platform Lib implementation.
 
  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "SaPlatformLibrary.h"
#include <Library/PciSegmentLib.h>
#include <IndustryStandard/Pci22.h>
#include <CpuPcieInfo.h>
 
 
/**
  Checks if SKU is Mobile
 
  @retval FALSE  SKU is not Mobile
  @retval TRUE   SKU is Mobile
**/
BOOLEAN
EFIAPI
IsMobileSku (
  VOID
  )
{
  UINT16           DeviceId;
 
  DeviceId = PciSegmentRead16 (PCI_SEGMENT_LIB_ADDRESS (SA_SEG_NUM, SA_MC_BUS, SA_MC_DEV, SA_MC_FUN, R_SA_MC_DEVICE_ID));
  if (
      (DeviceId == V_SA_DEVICE_ID_MB_ULT_1) || \
      (DeviceId == V_SA_DEVICE_ID_MB_ULT_2) || \
      (DeviceId == V_SA_DEVICE_ID_MB_ULX_1) || \
      (DeviceId == V_SA_DEVICE_ID_MB_ULX_2) \
    ) {
    return TRUE;
  }
  return FALSE;
}
 
/**
  Checks if SKU is Desktop
 
  @retval FALSE  SKU is not Desktop
  @retval TRUE   SKU is Desktop
**/
BOOLEAN
EFIAPI
IsDesktopSku (
  VOID
  )
{
  return FALSE;
}
 
/**
  Checks if SKU is Server
 
  @retval FALSE  SKU is not Server
  @retval TRUE   SKU is Server
**/
BOOLEAN
EFIAPI
IsServerSku (
  VOID
  )
{
  return FALSE;
}