hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** @file
 
  @copyright
  Copyright 2016 - 2021 Intel Corporation. <BR>
 
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
 
#ifndef _CPUID_REGS_H_
#define _CPUID_REGS_H_
 
#define CPU_FAMILY_SKX     0x5065      // Skylake/CascadeLake CPU
#define CPU_FAMILY_ICX     0x606A      // IceLake CPU
#define EFI_CACHE_UNCACHEABLE                 0
#define EFI_CACHE_WRITEBACK                   6
 
#define APICID_MASK_BIT14_8 0x7F    //current Si support programmable APICID up to 15bits
#endif  //_CPUID_REGS_H_