coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
cpu.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _SOC_TIGERLAKE_CPU_H_
4 #define _SOC_TIGERLAKE_CPU_H_
5 
6 #include <intelblocks/msr.h>
7 
8 /* Latency times in us */
9 #define C1_LATENCY 1
10 #define C6_LATENCY 121
11 #define C7_LATENCY 152
12 #define C8_LATENCY 256
13 #define C9_LATENCY 340
14 #define C10_LATENCY 1034
15 
16 /* Power in units of mW */
17 #define C1_POWER 0x3e8
18 #define C6_POWER 0x15e
19 #define C7_POWER 0xc8
20 #define C8_POWER 0xc8
21 #define C9_POWER 0xc8
22 #define C10_POWER 0xc8
23 
24 #endif