]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/PchRegs/PchRegsPcu.h
Vlv2DeviceRefCodePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / ValleyView2Soc / SouthCluster / Include / PchRegs / PchRegsPcu.h
1 /*++
2
3 Copyright (c) 2012 - 2014, Intel Corporation. All rights reserved
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8
9 Module Name:
10
11 PchRegsPcu.h
12
13 Abstract:
14
15 Register names for VLV PCU device.
16
17 Conventions:
18
19 - Prefixes:
20 Definitions beginning with "R_" are registers
21 Definitions beginning with "B_" are bits within registers
22 Definitions beginning with "V_" are meaningful values of bits within the registers
23 Definitions beginning with "S_" are register sizes
24 Definitions beginning with "N_" are the bit position
25 - In general, PCH registers are denoted by "_PCH_" in register names
26 - Registers / bits that are different between PCH generations are denoted by
27 "_PCH_<generation_name>_" in register/bit names. e.g., "_PCH_VLV_"
28 - Registers / bits that are different between SKUs are denoted by "_<SKU_name>"
29 at the end of the register/bit names
30 - Registers / bits of new devices introduced in a PCH generation will be just named
31 as "_PCH_" without <generation_name> inserted.
32
33 --*/
34 #ifndef _PCH_REGS_LPC_H_
35 #define _PCH_REGS_LPC_H_
36
37 //
38 // VLV PCU Registers (D31:F0)
39 //
40 #define PCI_DEVICE_NUMBER_PCH_LPC 31
41 #define PCI_FUNCTION_NUMBER_PCH_LPC 0
42
43 // Silicon Steppings
44 typedef enum {
45 PchA0 = 0,
46 PchA1 = 1,
47 PchB0 = 2,
48 PchB1 = 3,
49 PchB2 = 4,
50 PchB3 = 5,
51 PchC0 = 6,
52 PchD0 = 7,
53 PchSteppingMax
54 } PCH_STEPPING;
55
56 #define R_PCH_LPC_REG_ID 0x00 // Identifiers Register
57 #define B_PCH_LPC_DEVICE_ID 0xFFFF0000 // Device Identification
58 #define B_PCH_LPC_VENDOR_ID 0x0000FFFF // Vendor Identification
59 #define V_PCH_LPC_VENDOR_ID V_PCH_INTEL_VENDOR_ID // Vendor ID for Intel
60 //
61 // General VLV PCU Device ID
62 //
63 #define V_PCH_LPC_DEVICE_ID_0 0x0F1C
64 #define V_PCH_LPC_DEVICE_ID_1 0x0F1D
65 #define V_PCH_LPC_DEVICE_ID_2 0x0F1E
66 #define V_PCH_LPC_DEVICE_ID_3 0x0F1F
67
68 #define R_PCH_LPC_COMMAND 0x04 // Command
69 #define B_PCH_LPC_COMMAND_ID BIT10 // Interrupt Disable
70 #define B_PCH_LPC_COMMAND_FBE BIT9 // Fast Back to Back Enable
71 #define B_PCH_LPC_COMMAND_SERR_EN BIT8 // SERR# Enable
72 #define B_PCH_LPC_COMMAND_WCC BIT7 // Wait Cycle Control
73 #define B_PCH_LPC_COMMAND_PER BIT6 // Parity Error Response Enable
74 #define B_PCH_LPC_COMMAND_VPS BIT5 // VGA Palette Snoop
75 #define B_PCH_LPC_COMMAND_MWIE BIT4 // Memory Write and Invalidate Enable
76 #define B_PCH_LPC_COMMAND_SCE BIT3 // Special Cycle Enable
77 #define B_PCH_LPC_COMMAND_BME BIT2 // Bus Master Enable
78 #define B_PCH_LPC_COMMAND_MSE BIT1 // Memory Space Enable
79 #define B_PCH_LPC_COMMAND_IOSE BIT0 // I/O Space Enable
80
81 #define R_PCH_LPC_DEV_STS 0x06 // Status
82 #define B_PCH_LPC_DEV_STS_DPE BIT15 // Detected Parity Error
83 #define B_PCH_LPC_DEV_STS_SSE BIT14 // Signaled System Error
84 #define B_PCH_LPC_DEV_STS_RMA BIT13 // Received Master Abort
85 #define B_PCH_LPC_DEV_STS_RTA BIT12 // Received Target Abort
86 #define B_PCH_LPC_DEV_STS_STA BIT11 // Signaled Target Abort
87 #define B_PCH_LPC_DEV_STS_DEVT_STS (BIT10 | BIT9) // DEVSEL# Timing Status
88 #define B_PCH_LPC_DEV_STS_MDPED BIT8 // Data Parity Error
89 #define B_PCH_LPC_DEV_STS_FB2B BIT7 // Fast Back to Back Capable
90 #define B_PCH_LPC_DEV_STS_66MHZ_CAP BIT5 // 66 MHz capable
91 #define B_PCH_LPC_DEV_STS_CAP_LIST BIT4 // Capabilities List
92 #define B_PCH_LPC_DEV_STS_INT_STS BIT3 // Interrupt Status
93
94 #define R_PCH_LPC_RID_CC 0x08 // Revision ID & Class Code
95 #define B_PCH_LPC_RID_CC_BCC 0xFF000000 // Base Class Code
96 #define B_PCH_LPC_RID_CC_SCC 0x00FF0000 // Sub-Class Code
97 #define B_PCH_LPC_RID_CC_PI 0x0000FF00 // Programming Interface
98 #define B_PCH_LPC_RID_CC_RID 0x000000FF // Revision ID
99
100 // Silicon Steppings
101
102 #define V_PCH_LPC_RID_0 0x01 // A0 Stepping (17 x 17)
103 #define V_PCH_LPC_RID_1 0x02 // A0 Stepping (25 x 27)
104 #define V_PCH_LPC_RID_2 0x03 // A1 Stepping (17 x 17)
105 #define V_PCH_LPC_RID_3 0x04 // A1 Stepping (25 x 27)
106 #define V_PCH_LPC_RID_4 0x05 // B0 Stepping (17 x 17)
107 #define V_PCH_LPC_RID_5 0x06 // B0 Stepping (25 x 27)
108 #define V_PCH_LPC_RID_6 0x07 // B1 Stepping (17 x 17)
109 #define V_PCH_LPC_RID_7 0x08 // B1 Stepping (25 x 27)
110 #define V_PCH_LPC_RID_8 0x09 // B2 Stepping (17 x 17)
111 #define V_PCH_LPC_RID_9 0x0A // B2 Stepping (25 x 27)
112 #define V_PCH_LPC_RID_A 0x0B // B3 Stepping (17 x 17)
113 #define V_PCH_LPC_RID_B 0x0C // B3 Stepping (25 x 27)
114 #define V_PCH_LPC_RID_C 0x0D // C0 Stepping (17 x 17)
115 #define V_PCH_LPC_RID_D 0x0E // C0 Stepping (25 x 27)
116 #define V_PCH_LPC_RID_E 0x10 // D0 Stepping (17 x 17)
117 #define V_PCH_LPC_RID_F 0x11 // D0 Stepping (25 x 27)
118
119 #define R_PCH_LPC_MLT 0x0D // Master Latency Timer
120 #define B_PCH_LPC_MLT_MLC 0xF8 // Master Latency Count
121
122 #define R_PCH_LPC_HEADTYP 0x0E // Header Type
123 #define B_PCH_LPC_HEADTYP_MFD BIT7 // Multi-function Device
124 #define B_PCH_LPC_HEADTYP_HT 0x7F // Header Type
125
126 #define R_PCH_LPC_SS 0x2C // Subsystem ID & Vendor ID
127 #define B_PCH_LPC_SS_SSID 0xFFFF0000 // Subsystem ID
128 #define B_PCH_LPC_SS_SSVID 0x0000FFFF // Subsystem Vendor ID
129
130 #define R_PCH_LPC_CAP_LIST 0x34 // Capability List
131 #define B_PCH_LPC_CAP_LIST_CP 0xFF // Capability Pointer
132
133 #define R_PCH_LPC_ACPI_BASE 0x40 // ABASE, 16bit
134 #define B_PCH_LPC_ACPI_BASE_BAR 0x0000FF80 // Base Address, 128 Bytes
135 #define B_PCH_LPC_ACPI_BASE_EN BIT1 // Enable Bit
136 #define B_PCH_LPC_ACPI_BASE_MEMI BIT0 // Memory Space Indication
137
138 #define R_PCH_LPC_PMC_BASE 0x44 // PBASE, 32bit, 512 Bytes
139 #define B_PCH_LPC_PMC_BASE_BAR 0xFFFFFE00 // Base Address
140 #define B_PCH_LPC_PMC_BASE_PREF BIT3 // Prefetchable
141 #define B_PCH_LPC_PMC_BASE_ADDRNG BIT2 // Address Range
142 #define B_PCH_LPC_PMC_BASE_EN BIT1 // Enable Bit
143 #define B_PCH_LPC_PMC_BASE_MEMI BIT0 // Memory Space Indication
144
145 #define R_PCH_LPC_GPIO_BASE 0x48 // GBASE, 16bit
146 #define B_PCH_LPC_GPIO_BASE_BAR 0xFF00 // Base Address, 256 Bytes
147 #define B_PCH_LPC_GPIO_BASE_EN BIT1 // Enable Bit
148 #define B_PCH_LPC_GPIO_BASE_MEMI BIT0 // Memory Space Indication
149
150 #define R_PCH_LPC_IO_BASE 0x4C // IOBASE, 32bit
151 #define B_PCH_LPC_IO_BASE_BAR 0xFFFFC000 // Base Address, 16 KiloBytes
152 #define B_PCH_LPC_IO_BASE_PREF BIT3 // Prefetchable
153 #define B_PCH_LPC_IO_BASE_ADDRNG BIT2 // Address Range
154 #define B_PCH_LPC_IO_BASE_EN BIT1 // Enable Bit
155 #define B_PCH_LPC_IO_BASE_MEMI BIT0 // Memory Space Indication
156
157 #define R_PCH_LPC_ILB_BASE 0x50 // IBASE, 32bit
158 #define B_PCH_LPC_ILB_BASE_BAR 0xFFFFFE00 // Base Address, 512 bytes
159 #define B_PCH_LPC_ILB_BASE_PREF BIT3 // Prefetchable
160 #define B_PCH_LPC_ILB_BASE_ADDRNG BIT2 // Address Range
161 #define B_PCH_LPC_ILB_BASE_EN BIT1 // Enable Bit
162 #define B_PCH_LPC_ILB_BASE_MEMI BIT0 // Memory Space Indication
163
164 #define R_PCH_LPC_SPI_BASE 0x54 // SBASE, 32bit
165 #define B_PCH_LPC_SPI_BASE_BAR 0xFFFFFE00 // Base Address, 512 bytes
166 #define B_PCH_LPC_SPI_BASE_PREF BIT3 // Prefetchable
167 #define B_PCH_LPC_SPI_BASE_ADDRNG BIT2 // Address Range
168 #define B_PCH_LPC_SPI_BASE_EN BIT1 // Enable Bit
169 #define B_PCH_LPC_SPI_BASE_MEMI BIT0 // Memory Space Indicator
170
171 #define R_PCH_LPC_MPHY_BASE 0x58 // MPBASE, 32bit
172 #define B_PCH_LPC_MPHY_BASE_BAR 0xFFF00000 // Base Address, 1 MegaByte
173 #define B_PCH_LPC_MPHY_BASE_PREF BIT3 // Prefetchable
174 #define B_PCH_LPC_MPHY_BASE_ADDRNG BIT2 // Address Range
175 #define B_PCH_LPC_MPHY_BASE_EN BIT1 // Enable Bit
176 #define B_PCH_LPC_MPHY_BASE_MEMI BIT0 // Memory Space Indicator
177
178 #define R_PCH_LPC_PUNIT_BASE 0x5C // PUBASE, 32bit
179 #define B_PCH_LPC_PUNIT_BASE_BAR 0xFFFFF800 // Base Address, 2K bytes
180 #define B_PCH_LPC_PUNIT_BASE_PREF BIT3 // Prefetchable
181 #define B_PCH_LPC_PUNIT_BASE_ADDRNG BIT2 // Address Range
182 #define B_PCH_LPC_PUNIT_BASE_EN BIT1 // Enable Bit
183 #define B_PCH_LPC_PUNIT_BASE_MEMI BIT0 // Memory Space Indicator
184
185 #define R_PCH_LPC_UART_CTRL 0x80 // UART Control
186 #define B_PCH_LPC_UART_CTRL_COM1_EN BIT0 // COM1 Enable
187
188 #define R_PCH_LPC_FWH_BIOS_DEC 0xD8 // BIOS Decode Enable
189 #define B_PCH_LPC_FWH_BIOS_DEC_EF8 BIT15 // F8-FF Enable
190 #define B_PCH_LPC_FWH_BIOS_DEC_EF0 BIT14 // F0-F8 Enable
191 #define B_PCH_LPC_FWH_BIOS_DEC_EE8 BIT13 // E8-EF Enable
192 #define B_PCH_LPC_FWH_BIOS_DEC_EE0 BIT12 // E0-E8 Enable
193 #define B_PCH_LPC_FWH_BIOS_DEC_ED8 BIT11 // D8-DF Enable
194 #define B_PCH_LPC_FWH_BIOS_DEC_ED0 BIT10 // D0-D8 Enable
195 #define B_PCH_LPC_FWH_BIOS_DEC_EC8 BIT9 // C8-CF Enable
196 #define B_PCH_LPC_FWH_BIOS_DEC_EC0 BIT8 // C0-C8 Enable
197 #define B_PCH_LPC_FWH_BIOS_DEC_LFE BIT7 // Legacy F Segment Enable
198 #define B_PCH_LPC_FWH_BIOS_DEC_LEE BIT6 // Legacy E Segment Enable
199 #define B_PCH_LPC_FWH_BIOS_DEC_E70 BIT3 // 70-7F Enable
200 #define B_PCH_LPC_FWH_BIOS_DEC_E60 BIT2 // 60-6F Enable
201 #define B_PCH_LPC_FWH_BIOS_DEC_E50 BIT1 // 50-5F Enable
202 #define B_PCH_LPC_FWH_BIOS_DEC_E40 BIT0 // 40-4F Enable
203
204 #define R_PCH_LPC_FDCAP 0xE0 // Feature Detection Capability ID
205 #define B_PCH_LPC_FDCAP_NEXT 0xFF00 // Next Capability
206 #define B_PCH_LPC_FDCAP_CAPID 0x00FF // Capability ID
207
208 #define R_PCH_LPC_FDLEN 0xE2 // Feature Detection Capability Length
209 #define B_PCH_LPC_FDLEN_CAPLEN 0xFF // Capability Length
210
211 #define R_PCH_LPC_FDVER 0xE3 // Feature Detection Capability Version
212 #define B_PCH_LPC_FDVER_VSCID 0xF0 // Vendor Specific Capability ID
213 #define B_PCH_LPC_FDVER_CAPVER 0x0F // Capability Version
214
215 #define R_PCH_LPC_FVECTIDX 0xE4 // Feature Vector Index
216
217 #define R_PCH_LPC_FVECTD 0xE8 // Feature Vector Data
218
219 #define R_PCH_LPC_RCBA 0xF0 // RCBA, 32bit
220 #define B_PCH_LPC_RCBA_BAR 0xFFFFFC00 // Base Address, 1 KiloByte
221 #define B_PCH_LPC_RCBA_EN BIT0 // Enable Bit
222
223 #define R_PCH_LPC_ULT_OBS 0xF4 // ULT Observability
224 #define B_PCH_LPC_ULT_OBS_WNUM 0x3FF000 // Reserved Wafer Number
225 #define B_PCH_LPC_ULT_OBS_XLOC 0xFC0 // Reserved X Loc
226 #define B_PCH_LPC_ULT_OBS_YLOC 0x3F // Reserved Y Loc
227
228 #define R_PCH_LPC_MAN_ID 0xF8 // Manufacturer ID
229 #define B_PCH_LPC_MAN_ID_DPID 0xF000000 // Dot Portion of Process ID
230 #define B_PCH_LPC_MAN_ID_MSID 0xFF0000 // Manufacturing Stepping Identifier
231 #define B_PCH_LPC_MAN_ID_MID 0xFF00 // Manufacturing Identifier
232 #define B_PCH_LPC_MAN_ID_PPID 0xFF // Process Portion of Process ID
233
234 #define R_PCH_LPC_CGC 0xFC // Clock Gating Control
235 #define B_PCH_LPC_CGC_SBLCG BIT9 // IOSF-SB Local Clock Gating Disable
236 #define B_PCH_LPC_CGC_SBTCG BIT8 // IOSF-SB Trunk Clock Gating (Request) Disable
237 #define B_PCH_LPC_CGC_PRILCG BIT1 // IOSF-PRI Local Clock Gating Disable
238 #define B_PCH_LPC_CGC_PRITCG BIT0 // IOSF-PRI Trunk Clock Gating (Request) Disable
239
240 //
241 // iLB Memory Space Registers (IBASE)
242 //
243 #define R_PCH_ILB_ACPI_CNT 0x00 // ACPI Control
244 #define B_PCH_ILB_ACPI_CNT_SCI_IRQ_SEL (BIT2 | BIT1 | BIT0) // SCI IRQ Select
245 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_9 0 // IRQ9
246 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_10 BIT0 // IRQ10
247 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_11 BIT1 // IRQ11
248 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_20 BIT2 // IRQ20 (Only if APIC enabled)
249 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_21 (BIT2 | BIT0) // IRQ21 (Only if APIC enabled)
250 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_22 (BIT2 | BIT1) // IRQ22 (Only if APIC enabled)
251 #define V_PCH_ILB_ACPI_CNT_SCI_IRQ_23 (BIT2 | BIT1 | BIT0) // IRQ23 (Only if APIC enabled)
252
253 #define R_PCH_ILB_MC 0x04 // Miscellaneous Control
254 #define B_PCH_ILB_MC_DRTC BIT3 // Disable RTC
255 #define B_PCH_ILB_MC_D8259 BIT2 // Disable 8259
256 #define B_PCH_ILB_MC_D8254 BIT1 // Disable 8254
257 #define B_PCH_ILB_MC_AME BIT0 // Alternate Access Mode Enable
258
259 #define R_PCH_ILB_PIRQA_ROUT 0x08 // PIRQA Routing Control
260 #define R_PCH_ILB_PIRQB_ROUT 0x09 // PIRQB Routing Control
261 #define R_PCH_ILB_PIRQC_ROUT 0x0A // PIRQC Routing Control
262 #define R_PCH_ILB_PIRQD_ROUT 0x0B // PIRQD Routing Control
263 #define R_PCH_ILB_PIRQE_ROUT 0x0C // PIRQE Routing Control
264 #define R_PCH_ILB_PIRQF_ROUT 0x0D // PIRQF Routing Control
265 #define R_PCH_ILB_PIRQG_ROUT 0x0E // PIRQG Routing Control
266 #define R_PCH_ILB_PIRQH_ROUT 0x0F // PIRQH Routing Control
267 //
268 // Bit values are the same for R_PCH_ILB_PIRQA_ROUT to R_PCH_ILB_PIRQH_ROUT
269 //
270 #define B_PCH_ILB_PIRQX_ROUT_IRQEN BIT7 // Interrupt Routing Enable
271 #define B_PCH_ILB_PIRQX_ROUT 0x0F // IRQ Routing
272 #define V_PCH_ILB_PIRQX_ROUT_IRQ_3 0x03 // Route to IRQ3
273 #define V_PCH_ILB_PIRQX_ROUT_IRQ_4 0x04 // Route to IRQ4
274 #define V_PCH_ILB_PIRQX_ROUT_IRQ_5 0x05 // Route to IRQ5
275 #define V_PCH_ILB_PIRQX_ROUT_IRQ_6 0x06 // Route to IRQ6
276 #define V_PCH_ILB_PIRQX_ROUT_IRQ_7 0x07 // Route to IRQ7
277 #define V_PCH_ILB_PIRQX_ROUT_IRQ_9 0x09 // Route to IRQ9
278 #define V_PCH_ILB_PIRQX_ROUT_IRQ_10 0x0A // Route to IRQ10
279 #define V_PCH_ILB_PIRQX_ROUT_IRQ_11 0x0B // Route to IRQ11
280 #define V_PCH_ILB_PIRQX_ROUT_IRQ_12 0x0C // Route to IRQ12
281 #define V_PCH_ILB_PIRQX_ROUT_IRQ_14 0x0E // Route to IRQ14
282 #define V_PCH_ILB_PIRQX_ROUT_IRQ_15 0x0F // Route to IRQ15
283
284 #define R_PCH_ILB_SERIRQ_CNT 0x10 // Serial IRQ Control
285 #define B_PCH_ILB_SERIRQ_CNT_SIRQMD BIT7 // Mode
286
287 #define R_PCH_ILB_ULKMC 0x14 // USB Legacy Keyboard / Mouse Control
288 #define B_PCH_ILB_ULKMC_TRAPBY64W BIT11 // SMI Caused by Port 64 Write
289 #define B_PCH_ILB_ULKMC_TRAPBY64R BIT10 // SMI Caused by Port 64 Read
290 #define B_PCH_ILB_ULKMC_TRAPBY60W BIT9 // SMI Caused by Port 60 Write
291 #define B_PCH_ILB_ULKMC_TRAPBY60R BIT8 // SMI Caused by Port 60 Read
292 #define B_PCH_ILB_ULKMC_64WEN BIT3 // SMI on Port 64 Writes Enable
293 #define B_PCH_ILB_ULKMC_64REN BIT2 // SMI on Port 64 Reads Enable
294 #define B_PCH_ILB_ULKMC_60WEN BIT1 // SMI on Port 60 Writes Enable
295 #define B_PCH_ILB_ULKMC_60REN BIT0 // SMI on Port 60 Reads Enable
296
297 #define R_PCH_ILB_FWH_BIOS_SEL 0x18 // FWH ID Select
298 #define B_PCH_ILB_FWH_BIOS_SEL_F8 0xF0000000 // F8-FF ID Select
299 #define B_PCH_ILB_FWH_BIOS_SEL_F0 0x0F000000 // F0-F7 ID Select
300 #define B_PCH_ILB_FWH_BIOS_SEL_E8 0x00F00000 // E8-EF ID Select
301 #define B_PCH_ILB_FWH_BIOS_SEL_E0 0x000F0000 // E0-E7 ID Select
302 #define B_PCH_ILB_FWH_BIOS_SEL_D8 0x0000F000 // D8-DF ID Select
303 #define B_PCH_ILB_FWH_BIOS_SEL_D0 0x00000F00 // D0-D7 ID Select
304 #define B_PCH_ILB_FWH_BIOS_SEL_C8 0x000000F0 // C8-CF ID Select
305 #define B_PCH_ILB_FWH_BIOS_SEL_C0 0x0000000F // C0-C7 ID Select
306
307 #define R_PCH_ILB_BIOS_CNTL 0x1C // BIOS Control
308 #define S_PCH_ILB_BIOS_CNTL 4
309 #define B_PCH_ILB_BIOS_CNTL_PFE BIT8 // Prefetch Enable
310 #define B_PCH_ILB_BIOS_CNTL_LE BIT1 // Lock Enable
311 #define N_PCH_ILB_BIOS_CNTL_LE 1
312 #define B_PCH_ILB_BIOS_CNTL_WP BIT0 // Write Protect
313
314 #define R_PCH_ILB_D0IR 0x20 // Device 0 Interrupt Route
315 #define R_PCH_ILB_D1IR 0x22 // Device 1 Interrupt Route
316 #define R_PCH_ILB_D2IR 0x24 // Device 2 Interrupt Route
317 #define R_PCH_ILB_D3IR 0x26 // Device 3 Interrupt Route
318 #define R_PCH_ILB_D4IR 0x28 // Device 4 Interrupt Route
319 #define R_PCH_ILB_D5IR 0x2A // Device 5 Interrupt Route
320 #define R_PCH_ILB_D6IR 0x2C // Device 6 Interrupt Route
321 #define R_PCH_ILB_D7IR 0x2E // Device 7 Interrupt Route
322 #define R_PCH_ILB_D8IR 0x30 // Device 8 Interrupt Route
323 #define R_PCH_ILB_D9IR 0x32 // Device 9 Interrupt Route
324 #define R_PCH_ILB_D10IR 0x34 // Device 10 Interrupt Route
325 #define R_PCH_ILB_D11IR 0x36 // Device 11 Interrupt Route
326 #define R_PCH_ILB_D12IR 0x38 // Device 12 Interrupt Route
327 #define R_PCH_ILB_D13IR 0x3A // Device 13 Interrupt Route
328 #define R_PCH_ILB_D14IR 0x3C // Device 14 Interrupt Route
329 #define R_PCH_ILB_D15IR 0x3E // Device 15 Interrupt Route
330 #define R_PCH_ILB_D16IR 0x40 // Device 16 Interrupt Route
331 #define R_PCH_ILB_D17IR 0x42 // Device 17 Interrupt Route
332 #define R_PCH_ILB_D18IR 0x44 // Device 18 Interrupt Route
333 #define R_PCH_ILB_D19IR 0x46 // Device 19 Interrupt Route
334 #define R_PCH_ILB_D20IR 0x48 // Device 20 Interrupt Route
335 #define R_PCH_ILB_D21IR 0x4A // Device 21 Interrupt Route
336 #define R_PCH_ILB_D22IR 0x4C // Device 22 Interrupt Route
337 #define R_PCH_ILB_D23IR 0x4E // Device 23 Interrupt Route
338 #define R_PCH_ILB_D24IR 0x50 // Device 24 Interrupt Route
339 #define R_PCH_ILB_D25IR 0x52 // Device 25 Interrupt Route
340 #define R_PCH_ILB_D26IR 0x54 // Device 26 Interrupt Route
341 #define R_PCH_ILB_D27IR 0x56 // Device 27 Interrupt Route
342 #define R_PCH_ILB_D28IR 0x58 // Device 28 Interrupt Route
343 #define R_PCH_ILB_D29IR 0x5A // Device 29 Interrupt Route
344 #define R_PCH_ILB_D30IR 0x5C // Device 30 Interrupt Route
345 #define R_PCH_ILB_D31IR 0x5E // Device 31 Interrupt Route
346
347 #define B_PCH_ILB_DXXIR_IDR_MASK (BIT14 | BIT13 | BIT12) // INTD Mask
348 #define V_PCH_ILB_DXXIR_IDR_PIRQA 0 // INTD Mapping to IRQ A
349 #define V_PCH_ILB_DXXIR_IDR_PIRQB BIT12 // INTD Mapping to IRQ B
350 #define V_PCH_ILB_DXXIR_IDR_PIRQC BIT13 // INTD Mapping to IRQ C
351 #define V_PCH_ILB_DXXIR_IDR_PIRQD (BIT13 | BIT12) // INTD Mapping to IRQ D
352 #define V_PCH_ILB_DXXIR_IDR_PIRQE BIT14 // INTD Mapping to IRQ E
353 #define V_PCH_ILB_DXXIR_IDR_PIRQF (BIT14 | BIT12) // INTD Mapping to IRQ F
354 #define V_PCH_ILB_DXXIR_IDR_PIRQG (BIT14 | BIT13) // INTD Mapping to IRQ G
355 #define V_PCH_ILB_DXXIR_IDR_PIRQH (BIT14 | BIT13 | BIT12) // INTD Mapping to IRQ H
356
357 #define B_PCH_ILB_DXXIR_ICR_MASK (BIT10 | BIT9 | BIT8) // INTC Mask
358 #define V_PCH_ILB_DXXIR_ICR_PIRQA 0 // INTC Mapping to IRQ A
359 #define V_PCH_ILB_DXXIR_ICR_PIRQB BIT8 // INTC Mapping to IRQ B
360 #define V_PCH_ILB_DXXIR_ICR_PIRQC BIT9 // INTC Mapping to IRQ C
361 #define V_PCH_ILB_DXXIR_ICR_PIRQD (BIT9 | BIT8) // INTC Mapping to IRQ D
362 #define V_PCH_ILB_DXXIR_ICR_PIRQE BIT10 // INTC Mapping to IRQ E
363 #define V_PCH_ILB_DXXIR_ICR_PIRQF (BIT10 | BIT8) // INTC Mapping to IRQ F
364 #define V_PCH_ILB_DXXIR_ICR_PIRQG (BIT10 | BIT9) // INTC Mapping to IRQ G
365 #define V_PCH_ILB_DXXIR_ICR_PIRQH (BIT10 | BIT9 | BIT8) // INTC Mapping to IRQ H
366
367 #define B_PCH_ILB_DXXIR_IBR_MASK (BIT6 | BIT5 | BIT4) // INTB Mask
368 #define V_PCH_ILB_DXXIR_IBR_PIRQA 0 // INTB Mapping to IRQ A
369 #define V_PCH_ILB_DXXIR_IBR_PIRQB BIT4 // INTB Mapping to IRQ B
370 #define V_PCH_ILB_DXXIR_IBR_PIRQC BIT5 // INTB Mapping to IRQ C
371 #define V_PCH_ILB_DXXIR_IBR_PIRQD (BIT5 | BIT4) // INTB Mapping to IRQ D
372 #define V_PCH_ILB_DXXIR_IBR_PIRQE BIT6 // INTB Mapping to IRQ E
373 #define V_PCH_ILB_DXXIR_IBR_PIRQF (BIT6 | BIT4) // INTB Mapping to IRQ F
374 #define V_PCH_ILB_DXXIR_IBR_PIRQG (BIT6 | BIT5) // INTB Mapping to IRQ G
375 #define V_PCH_ILB_DXXIR_IBR_PIRQH (BIT6 | BIT5 | BIT4) // INTB Mapping to IRQ H
376
377 #define B_PCH_ILB_DXXIR_IAR_MASK (BIT2 | BIT1 | BIT0) // INTA Mask
378 #define V_PCH_ILB_DXXIR_IAR_PIRQA 0 // INTA Mapping to IRQ A
379 #define V_PCH_ILB_DXXIR_IAR_PIRQB BIT0 // INTA Mapping to IRQ B
380 #define V_PCH_ILB_DXXIR_IAR_PIRQC BIT1 // INTA Mapping to IRQ C
381 #define V_PCH_ILB_DXXIR_IAR_PIRQD (BIT1 | BIT0) // INTA Mapping to IRQ D
382 #define V_PCH_ILB_DXXIR_IAR_PIRQE BIT2 // INTA Mapping to IRQ E
383 #define V_PCH_ILB_DXXIR_IAR_PIRQF (BIT2 | BIT0) // INTA Mapping to IRQ F
384 #define V_PCH_ILB_DXXIR_IAR_PIRQG (BIT2 | BIT1) // INTA Mapping to IRQ G
385 #define V_PCH_ILB_DXXIR_IAR_PIRQH (BIT2 | BIT1 | BIT0) // INTA Mapping to IRQ H
386
387 #define R_PCH_ILB_OIC 0x60 // Other Interrupt Controller
388 #define B_PCH_ILB_OIC_SIRQEN BIT12 // Serial IRQ Enable
389 #define B_PCH_ILB_OIC_AEN BIT8 // APIC Enable
390
391 #define R_PCH_ILB_RTC_CONF 0x64 // RTC Control
392 #define B_PCH_ILB_RTC_CONF_UCMOS_LOCK BIT1 // Upper 128 Byte Lock
393 #define B_PCH_ILB_RTC_CONF_LCMOS_LOCK BIT0 // Lower 128 Byte Lock
394
395 #define R_PCH_ILB_RTM 0x68 // RTC Test Mode
396 #define B_PCH_ILB_RTM_RTM1 (BIT2 | BIT1 | BIT0)
397
398 #define R_PCH_ILB_BCS 0x6C // BIOS Control Status
399 #define B_PCH_ILB_BCS_SMIWPEN BIT1 // SMI WPD Enable
400 #define B_PCH_ILB_BCS_SMIWPST BIT0 // SMI WPD Status
401
402 #define R_PCH_ILB_LE 0x70 // LE
403 #define B_PCH_ILB_LE_IRQ12C BIT1 // IRQ12 Cause
404 #define B_PCH_ILB_LE_IRQ1C BIT0 // IRQ1 Cause
405
406 #define R_PCH_ILB_RTCC 0x74 // RTC HIP Configuration
407 #define B_PCH_ILB_RTCC_RTCB4 BIT6 // RTC Bias Resistor 4, Adds 480 Kohm
408 #define B_PCH_ILB_RTCC_RTCB3 BIT5 // RTC Bias Resistor 3, Adds 240 Kohm
409 #define B_PCH_ILB_RTCC_RTCB2 BIT4 // RTC Bias Resistor 2, Adds 120 Kohm
410 #define B_PCH_ILB_RTCC_RTCB1 BIT3 // RTC Bias Resistor 1, Adds 60 Kohm
411 #define B_PCH_ILB_RTCC_RTCB0 BIT2 // RTC Bias Resistor 0, Adds 30 Kohm
412 #define B_PCH_ILB_RTCC_DSWEN BIT1 // Deep Sleep Well Enable
413 #define B_PCH_ILB_RTCC_FEN BIT0 // Enable the Fast Oscillator Bypass Mode
414
415 #define R_PCH_ILB_DEF0 0x78 // Defeature Register 0
416 #define B_PCH_ILB_DEF0_SHRTSYNC BIT22 // Short Sync Abort Defeature
417 #define B_PCH_ILB_DEF0_SDD BIT21 // Sub Decode Disable
418
419 #define R_PCH_ILB_DEF1 0x7C // Defeature Register 1
420 #define B_PCH_ILB_DEF1_TPMPF BIT10 // usb2leg_chknbit_TPM_PF
421 #define B_PCH_ILB_DEF1_HPETDEF BIT8 // usb2leg_chknbit_hpet
422 #define B_PCH_ILB_DEF1_ECWS BIT6 // 8254 Early CW Select
423 #define B_PCH_ILB_DEF1_FOF BIT5 // 8254 Freeze on first on 1st rd wr11
424 #define B_PCH_ILB_DEF1_FOAR BIT4 // 8254 Freeze_On_AnyRead
425 #define B_PCH_ILB_DEF1_LMOO BIT3 // 8259 L2L0_Match_On_OCW2
426 #define B_PCH_ILB_DEF1_DFP BIT2 // 8259 Disable_Freeze_Priority
427 #define B_PCH_ILB_DEF1_EETI BIT1 // 8259 Extend_EdgeTrig_IRQ
428 #define B_PCH_ILB_DEF1_DSAEOI BIT0 // 8259 Disable_Slave_AEOI
429
430 #define R_PCH_ILB_GNMI 0x80 // NMI Register
431 #define S_PCH_ILB_GNMI 4
432 #define B_PCH_ILB_GNMI_NMI2SMIEN BIT6 // NMI to SMI Enable
433 #define N_PCH_ILB_GNMI_NMI2SMIEN 6
434 #define B_PCH_ILB_GNMI_NMI2SMIST BIT5 // NMI to SMI Status
435 #define N_PCH_ILB_GNMI_NMI2SMIST 5
436 #define B_PCH_ILB_GNMI_NMIN BIT4 // NMI NOW
437 #define B_PCH_ILB_GNMI_NMINS BIT3 // NMI NOW Status
438 #define B_PCH_ILB_GNMI_GNMIED BIT2 // GPIO NMI Edge Detection
439 #define B_PCH_ILB_GNMI_GNMIE BIT1 // GPIO NMI Enable
440 #define B_PCH_ILB_GNMI_GNMIS BIT0 // GPIO NMI Status
441
442 #define R_PCH_ILB_LPCC 0x84 // LPC Control
443 #define B_PCH_ILB_LPCC_LPCCLK_SLC BIT8 // iLPCCLK Mux Select
444 #define B_PCH_ILB_LPCC_LPCCLK_FORCE_OFF BIT3
445 #define B_PCH_ILB_LPCC_CLKRUN_EN BIT2 // LPC CLKRUN Protocol Enable
446 #define B_PCH_ILB_LPCC_LPCCLK1EN BIT1 // Clock 1 Enable
447 #define B_PCH_ILB_LPCC_LPCCLK0EN BIT0 // Clock 0 Enable
448
449 #define R_PCH_ILB_IRQE 0x88 // IRQ Enable Control
450 #define B_PCH_ILB_IRQE_IRQ4TO7EN (BIT7 | BIT6 | BIT5 | BIT4) // IRQ4 - IRQ7 Enable
451 #define B_PCH_ILB_IRQE_UARTIRQEN_IRQ3 BIT3 // UART IRQ3 Enable
452
453 //
454 // ACPI and Legacy I/O Registers (ABASE)
455 //
456 #define R_PCH_ACPI_PM1_STS 0x00 // Power Management 1 Status
457 #define S_PCH_ACPI_PM1_STS 2
458 #define B_PCH_ACPI_PM1_STS_WAK BIT15 // Wake Status
459 #define B_PCH_ACPI_PM1_STS_WAK_PCIE0 BIT14 // PCI Express 0 Wake Status
460 #define B_PCH_ACPI_PM1_STS_USB_CLKLESS BIT13 // USB Clockless Status
461 #define B_PCH_ACPI_PM1_STS_PRBTNOR BIT11 // Power Button Override Status
462 #define B_PCH_ACPI_PM1_STS_RTC BIT10 // RTC Status
463 #define B_PCH_ACPI_PM1_STS_PWRBTN BIT8 // Power Button Status
464 #define B_PCH_ACPI_PM1_STS_GBL BIT5 // Global Status
465 #define B_PCH_ACPI_PM1_STS_WAK_PCIE3 BIT4 // PCI Express 3 Wake Status
466 #define B_PCH_ACPI_PM1_STS_WAK_PCIE2 BIT3 // PCI Express 2 Wake Status
467 #define B_PCH_ACPI_PM1_STS_WAK_PCIE1 BIT2 // PCI Express 1 Wake Status
468 #define B_PCH_ACPI_PM1_STS_TMROF BIT0 // Timer Overflow Status
469 #define N_PCH_ACPI_PM1_STS_WAK 15
470 #define N_PCH_ACPI_PM1_STS_PRBTNOR 11
471 #define N_PCH_ACPI_PM1_STS_RTC 10
472 #define N_PCH_ACPI_PM1_STS_PWRBTN 8
473 #define N_PCH_ACPI_PM1_STS_GBL 5
474 #define N_PCH_ACPI_PM1_STS_TMROF 0
475
476 #define R_PCH_ACPI_PM1_EN 0x02 // Power Management 1 Enables
477 #define S_PCH_ACPI_PM1_EN 2
478 #define B_PCH_ACPI_PM1_WAK_DIS_PCIE0 BIT14 // PCI Express 0 Disable
479 #define B_PCH_ACPI_PM1_EN_USB_CLKLESS BIT13 // USB Clockless Enable Bit
480 #define B_PCH_ACPI_PM1_EN_RTC BIT10 // RTC Alarm Enable Bit
481 #define B_PCH_ACPI_PM1_EN_PWRBTN BIT8 // Power Button Enable Bit
482 #define B_PCH_ACPI_PM1_EN_GBL BIT5 // Global Enable Bit
483 #define B_PCH_ACPI_PM1_WAK_DIS_PCIE3 BIT4 // PCI Express 3 Disable
484 #define B_PCH_ACPI_PM1_WAK_DIS_PCIE2 BIT3 // PCI Express 2 Disable
485 #define B_PCH_ACPI_PM1_WAK_DIS_PCIE1 BIT2 // PCI Express 1 Disable
486 #define B_PCH_ACPI_PM1_EN_TMROF BIT0 // Timer Overflow Interrupt Enable Bit
487 #define N_PCH_ACPI_PM1_EN_RTC 10
488 #define N_PCH_ACPI_PM1_EN_PWRBTN 8
489 #define N_PCH_ACPI_PM1_EN_GBL 5
490 #define N_PCH_ACPI_PM1_EN_TMROF 0
491
492 #define R_PCH_ACPI_PM1_CNT 0x04 // Power Management 1 Control
493 #define S_PCH_ACPI_PM1_CNT 4
494 #define B_PCH_ACPI_PM1_CNT_SLP_EN BIT13 // Sleep enable
495 #define B_PCH_ACPI_PM1_CNT_SLP_TYP (BIT12 | BIT11 | BIT10) // Sleep Type
496 #define V_PCH_ACPI_PM1_CNT_S0 0x00000000 // ON (S0)
497 #define V_PCH_ACPI_PM1_CNT_S1 0x00000400 // Puts CPU in S1 state (S1)
498 #define V_PCH_ACPI_PM1_CNT_S3 0x00001400 // Suspend-to-RAM (S3)
499 #define V_PCH_ACPI_PM1_CNT_S4 0x00001800 // Suspend-to-Disk (S4)
500 #define V_PCH_ACPI_PM1_CNT_S5 0x00001C00 // Soft Off (S5)
501 #define B_PCH_ACPI_PM1_CNT_GBL_RLS BIT2
502 #define B_PCH_ACPI_PM1_CNT_BM_RLD BIT1 // Treated as Scratchpad Bit
503 #define B_PCH_ACPI_PM1_CNT_SCI_EN BIT0 // SCI Enable
504
505 #define R_PCH_ACPI_PM1_TMR 0x08 // Power Management 1 Timer
506 #define B_PCH_ACPI_PM1_TMR_VAL 0xFFFFFF // The timer value mask
507 #define V_PCH_ACPI_PM1_TMR_MAX_VAL 0x1000000 // The timer is 24 bit overflow
508 #define V_PCH_ACPI_PM1_TMR_FREQUENCY 3579545 // Timer Frequency
509 #define V_PCH_ACPI_PM1_TMR_NUM_BITS 24 // Programmed to 24 not 32
510 #define V_PCH_ACPI_PM1_TMR_MAX_BITS 32
511
512 #define R_PCH_ACPI_GPE0a_STS 0x20 // General Purpose Event 0a Status
513 #define S_PCH_ACPI_GPE0a_STS 4
514 #define B_PCH_ACPI_GPE0a_STS_CORE_GPIO 0xFF000000 // CORE GPIO Status
515 #define B_PCH_ACPI_GPE0a_STS_SUS_GPIO 0x00FF0000 // SUS GPIO Status
516 #define B_PCH_ACPI_GPE0a_STS_PME_B0 BIT13 // Power Management Event Bus 0 Status
517 #define B_PCH_ACPI_GPE0a_STS_BATLOW BIT10 // Battery Low Status
518 #define B_PCH_ACPI_GPE0a_STS_PCI_EXP BIT9 // PCI Express Status
519 #define B_PCH_ACPI_GPE0a_STS_GUNIT_SCI BIT5 // GUNIT SCI Status
520 #define B_PCH_ACPI_GPE0a_STS_PUNIT_SCI BIT4 // PUNIT SCI Status
521 #define B_PCH_ACPI_GPE0a_STS_SWGPE BIT2 // Software GPE Status
522 #define B_PCH_ACPI_GPE0a_STS_HOT_PLUG BIT1 // Hot Plug Status
523 #define N_PCH_ACPI_GPE0a_STS_PME_B0 13
524 #define N_PCH_ACPI_GPE0a_STS_BATLOW 10
525 #define N_PCH_ACPI_GPE0a_STS_PCI_EXP 9
526 #define N_PCH_ACPI_GPE0a_STS_GUNIT_SCI 5
527 #define N_PCH_ACPI_GPE0a_STS_PUNIT_SCI 4
528 #define N_PCH_ACPI_GPE0a_STS_SWGPE 2
529 #define N_PCH_ACPI_GPE0a_STS_HOT_PLUG 1
530
531 #define R_PCH_ACPI_GPE0a_EN 0x28 // General Purpose Event 0a Enables
532 #define S_PCH_ACPI_GPE0a_EN 4
533 #define B_PCH_ACPI_GPE0a_EN_CORE_GPIO 0xFF000000 // CORE GPIO Enable
534 #define B_PCH_ACPI_GPE0a_EN_SUS_GPIO 0x00FF0000 // SUS GPIO Enable
535 #define B_PCH_ACPI_GPE0a_EN_PME_B0 BIT13 // Power Management Event Bus 0 Enable
536 #define B_PCH_ACPI_GPE0a_EN_BATLOW BIT10 // Battery Low Enable
537 #define B_PCH_ACPI_GPE0a_EN_PCI_EXP BIT9 // PCI Express Enable
538 #define B_PCH_ACPI_GPE0a_EN_SWGPE BIT2 // Software GPE Enable
539 #define B_PCH_ACPI_GPE0a_EN_HOT_PLUG BIT1 // Hot Plug Enable
540 #define N_PCH_ACPI_GPE0a_EN_PME_B0 13
541 #define N_PCH_ACPI_GPE0a_EN_BATLOW 10
542 #define N_PCH_ACPI_GPE0a_EN_PCI_EXP 9
543 #define N_PCH_ACPI_GPE0a_EN_SWGPE 2
544 #define N_PCH_ACPI_GPE0a_EN_HOT_PLUG 1
545
546 #define R_PCH_SMI_EN 0x30 // SMI Control and Enable
547 #define S_PCH_SMI_EN 4
548 #define B_PCH_SMI_EN_LEGACY_USB3 BIT31 // Legacy USB 3 Enable
549 #define B_PCH_SMI_EN_INTEL_USB2 BIT18 // Intel USB 2 Enable
550 #define B_PCH_SMI_EN_LEGACY_USB2 BIT17 // Legacy USB 2 Enable
551 #define B_PCH_SMI_EN_PERIODIC BIT14 // Periodic Enable
552 #define B_PCH_SMI_EN_TCO BIT13 // TCO Enable
553 #define B_PCH_SMI_EN_BIOS_RLS BIT7 // BIOS RLS
554 #define B_PCH_SMI_EN_SWSMI_TMR BIT6 // Software SMI Timer Enable
555 #define B_PCH_SMI_EN_APMC BIT5 // APMC Enable
556 #define B_PCH_SMI_EN_ON_SLP_EN BIT4 // SMI On Sleep Enable
557 #define B_PCH_SMI_EN_BIOS BIT2 // BIOS Enable
558 #define B_PCH_SMI_EN_EOS BIT1 // End of SMI
559 #define B_PCH_SMI_EN_GBL_SMI BIT0 // Global SMI Enable
560 #define N_PCH_SMI_EN_LEGACY_USB3 31
561 #define N_PCH_SMI_EN_GPIO_UNLOCK 27
562 #define N_PCH_SMI_EN_INTEL_USB2 18
563 #define N_PCH_SMI_EN_LEGACY_USB2 17
564 #define N_PCH_SMI_EN_PERIODIC 14
565 #define N_PCH_SMI_EN_TCO 13
566 #define N_PCH_SMI_EN_BIOS_RLS 7
567 #define N_PCH_SMI_EN_SWSMI_TMR 6
568 #define N_PCH_SMI_EN_APMC 5
569 #define N_PCH_SMI_EN_ON_SLP_EN 4
570 #define N_PCH_SMI_EN_BIOS 2
571 #define N_PCH_SMI_EN_EOS 1
572 #define N_PCH_SMI_EN_GBL_SMI 0
573
574 #define R_PCH_SMI_STS 0x34 // SMI Status Register
575 #define S_PCH_SMI_STS 4
576 #define B_PCH_SMI_STS_LEGACY_USB3 BIT31 // Legacy USB 3 Status
577 #define B_PCH_SMI_STS_GUNIT_SMI BIT29 // GUNIT SMI Status
578 #define B_PCH_SMI_STS_PUNIT_SMI BIT28 // PUNIT SMI Status
579 #define B_PCH_SMI_STS_SPI BIT26 // SPI SMI Status
580 #define B_PCH_SMI_STS_PCI_EXP BIT20 // PCI Express SMI Status
581 #define B_PCH_SMI_STS_INTEL_USB2 BIT18 // Intel USB 2 Status
582 #define B_PCH_SMI_STS_LEGACY_USB2 BIT17 // Legacy USB 2 Status
583 #define N_PCH_SMI_STS_TCO 13
584 #define B_PCH_SMI_STS_SMBUS BIT16 // SMBUS SMI Status
585 #define B_PCH_SMI_STS_ILB BIT15 // ILB SMI Status
586 #define B_PCH_SMI_STS_PERIODIC BIT14 // Periodic Status
587 #define B_PCH_SMI_STS_TCO BIT13 // TCO Status
588 #define B_PCH_SMI_STS_GPE0 BIT9 // GPE0 Status
589 #define B_PCH_SMI_STS_PM1_STS_REG BIT8 // PM1 Status Register
590 #define B_PCH_SMI_STS_SWSMI_TMR BIT6 // Software SMI Timer Status
591 #define B_PCH_SMI_STS_APM BIT5 // APM Status
592 #define B_PCH_SMI_STS_ON_SLP_EN BIT4 // SMI On Sleep Enable Status
593 #define B_PCH_SMI_STS_BIOS BIT2 // BIOS Status
594 #define N_PCH_SMI_STS_LEGACY_USB3 31
595 #define N_PCH_SMI_STS_SPI 26
596 #define N_PCH_SMI_STS_PCI_EXP 20
597 #define N_PCH_SMI_STS_INTEL_USB2 18
598 #define N_PCH_SMI_STS_LEGACY_USB2 17
599 #define N_PCH_SMI_STS_SMBUS 16
600 #define N_PCH_SMI_STS_ILB 15
601 #define N_PCH_SMI_STS_PERIODIC 14
602 #define N_PCH_SMI_STS_TCO 13
603 #define N_PCH_SMI_STS_GPE0 9
604 #define N_PCH_SMI_STS_PM1_STS_REG 8
605 #define N_PCH_SMI_STS_SWSMI_TMR 6
606 #define N_PCH_SMI_STS_APM 5
607 #define N_PCH_SMI_STS_ON_SLP_EN 4
608 #define N_PCH_SMI_STS_BIOS 2
609
610 #define R_PCH_ALT_GP_SMI_EN 0x38 // Alternate GPI SMI Enable
611 #define S_PCH_ALT_GP_SMI_EN 2
612 #define B_PCH_ALT_GP_SMI_EN_CORE_GPIO 0xFF00 // SUS GPIO SMI Enable
613 #define B_PCH_ALT_GP_SMI_EN_SUS_GPIO 0x00FF // CORE GPIO SMI Enable
614
615 #define R_PCH_ALT_GP_SMI_STS 0x3A // Alternate GPI SMI Status
616 #define S_PCH_ALT_GP_SMI_STS 2
617 #define B_PCH_ALT_GP_SMI_STS_CORE_GPIO 0xFF00 // SUS GPIO SMI Status
618 #define B_PCH_ALT_GP_SMI_STS_SUS_GPIO 0x00FF // CORE GPIO SMI Status
619
620 #define R_PCH_UPRWC 0x3C // USB Per-Port Registers Write Control
621 #define S_PCH_UPRWC 2
622 #define B_PCH_UPRWC_WR_EN_SMI_STS BIT8 // Write Enable Status
623 #define B_PCH_UPRWC_WR_EN BIT1 // USB Per-Port Registers Write Enable
624 #define B_PCH_UPRWC_WR_EN_SMI_EN BIT0 // Write Enable SMI Enable
625
626 #define R_PCH_ACPI_GPE_CNTL 0x40 // General Purpose Event Control
627 #define B_PCH_ACPI_GPE_CNTL_SWGPE_CTRL BIT17 // Software GPE Control
628 #define B_PCH_ACPI_GPE_CNTL_PCIE3_SCI_EN BIT3
629 #define B_PCH_ACPI_GPE_CNTL_PCIE2_SCI_EN BIT2
630 #define B_PCH_ACPI_GPE_CNTL_PCIE1_SCI_EN BIT1
631 #define B_PCH_ACPI_GPE_CNTL_PCIE0_SCI_EN BIT0
632
633 #define R_PCH_ACPI_PM2_CNT 0x50 // PM2a Control Block
634 #define B_PCH_ACPI_PM2_CNT_ARB_DIS BIT0 // Scratchpad Bit
635
636 #define R_PCH_TCO_RLD 0x60 // TCO Reload
637 #define B_PCH_TCO_RLD_VAL 0x3FF // TCO Timer Count Value
638
639 #define R_PCH_TCO_STS 0x64 // TCO Timer Status
640 #define S_PCH_TCO_STS 4
641 #define B_PCH_TCO_STS_SECOND_TO BIT17 // Second Timeout Status
642 #define B_PCH_TCO_STS_TIMEOUT BIT3 // Timeout
643 #define N_PCH_TCO_STS_TIMEOUT 3
644
645 #define R_PCH_TCO_CNT 0x68 // TCO Control
646 #define S_PCH_TCO_CNT 2
647 #define B_PCH_TCO_CNT_OS_POLICY (BIT21 | BIT20) // OS Policy
648 #define B_PCH_TCO_CNT_LOCK BIT12 // TCO Enable Lock
649 #define B_PCH_TCO_CNT_TMR_HLT BIT11 // TCO Timer Halt
650
651 #define R_PCH_TCO_TMR 0x70 // TCO Timer
652 #define B_PCH_TCO_TMR_TCO_TRLD 0x3FF0000
653
654 //
655 // PMC Memory Space Registers (PBASE)
656 //
657 #define R_PCH_PMC_PRSTS 0x00 // Power and Reset Status
658 #define B_PCH_PMC_PRSTS_PRODID 0xFF000000 // Power Management Controller Product ID
659 #define B_PCH_PMC_PRSTS_REVID 0x00FF0000 // Power Management Controller Revision ID
660 #define B_PCH_PMC_PRSTS_PM_WD_TMR BIT15 // PMC Watchdog Timer Status
661 #define B_PCH_PMC_PRSTS_CODE_COPIED_STS BIT11 // Patch Copied Over Status
662 #define B_PCH_PMC_PRSTS_CODE_LOAD_TO BIT9 // Patch Load Timeout Status
663 #define B_PCH_PMC_PRSTS_OP_STS BIT8 // PMC Operational Status
664 #define B_PCH_PMC_PRSTS_SEC_GBLRST_STS BIT7 // SEC Global Reset Status
665 #define B_PCH_PMC_PRSTS_SEC_WD_TMR_STS BIT6 // SEC Watchdog Timer Status
666 #define B_PCH_PMC_PRSTS_WOL_OVR_WK_STS BIT5 // Wake On LAN Override Wake Status
667 #define B_PCH_PMC_PRSTS_HOST_WAKE_STS BIT4 // PMC Host Wake Status
668
669 #define R_PCH_PMC_PM_CFG 0x08 // Power Management Configuration
670 #define B_PCH_PMC_PM_CFG_SPS BIT5 // Shutdown Policy Select
671 #define B_PCH_PMC_PM_CFG_NO_REBOOT BIT4 // No Reboot Strap
672 #define B_PCH_PMC_PM_CFG_SX_ENT_TO_EN BIT3 // S1 / 3 / 4 / 5 Entry Timeout Enable
673 #define B_PCH_PMC_PM_CFG_TIMING_T581 (BIT1 | BIT0) // Timing t581
674
675 #define R_PCH_PMC_PM_STS 0x0C // Power Management Status
676 #define B_PCH_PMC_PM_STS_PMC_MSG_FULL BIT24 // PMC Message Full Status
677 #define B_PCH_PMC_PM_STS_PMC_MSG_4_FULL BIT23 // PMC 4 Message Full Status
678 #define B_PCH_PMC_PM_STS_PMC_MSG_3_FULL BIT22 // PMC 3 Message Full Status
679 #define B_PCH_PMC_PM_STS_PMC_MSG_2_FULL BIT21 // PMC 2 Message Full Status
680 #define B_PCH_PMC_PM_STS_PMC_MSG_1_FULL BIT20 // PMC 1 Message Full Status
681 #define B_PCH_PMC_PM_STS_CODE_REQ BIT8 // Patch Request Status
682 #define B_PCH_PMC_PM_STS_HPR_ENT_TO BIT2 // Host partition Reset Entry Timeout Status
683 #define B_PCH_PMC_PM_STS_SX_ENT_TO BIT1 // S3 / 4 / 5 Entry Timeout Status
684
685 #define R_PCH_PMC_MTPMC 0x10 // Message to PMC
686
687 #define R_PCH_PMC_GEN_PMCON_1 0x20 // General PM Configuration 1
688 #define B_PCH_PMC_GEN_PMCON_UART_EN BIT24 // UART Debug Port Enable
689 #define B_PCH_PMC_GEN_PMCON_DRAM_INIT BIT23 // DRAM Initialization Scratchpad Bit
690 #define B_PCH_PMC_GEN_PMCON_MEM_SR BIT21 // Memory Placed in Self-Refresh
691 #define B_PCH_PMC_GEN_PMCON_SRS BIT20 // System Reset Status
692 #define B_PCH_PMC_GEN_PMCON_CTS BIT19 // CPU Thermal Trip Status
693 #define B_PCH_PMC_GEN_PMCON_MIN_SLP_S4 BIT18 // Minimum SLP_S4# Assertion Width Violation Status
694 #define B_PCH_PMC_GEN_PMCON_PWROK_FLR BIT16 // PWROK Failure
695 #define B_PCH_PMC_GEN_PMCON_PME_B0_S5_DIS BIT15 // PME B0 S5 Disable
696 #define B_PCH_PMC_GEN_PMCON_SUS_PWR_FLR BIT14 // SUS Well Power Failure
697 #define B_PCH_PMC_GEN_PMCON_WOL_ENABLE_OVERRIDE BIT13 // WOL Enable Override
698 #define B_PCH_PMC_GEN_PMCON_DISABLE_SX_STRETCH BIT12 // Disable SLP_X Scretching After SUS Well Power Up
699 #define B_PCH_PMC_GEN_PMCON_SLP_S3_MAW (BIT11 | BIT10) // SLP_S3# Minimum Assertion Width
700 #define V_PCH_PMC_GEN_PMCON_SLP_S3_MAW_60US 0x000 // 60 micro seconds
701 #define V_PCH_PMC_GEN_PMCON_SLP_S3_MAW_1MS 0x400 // 1 milli second
702 #define V_PCH_PMC_GEN_PMCON_SLP_S3_MAW_50MS 0x800 // 50 milli seconds
703 #define V_PCH_PMC_GEN_PMCON_SLP_S3_MAW_2S 0xC00 // 2 seconds
704 #define B_PCH_PMC_GEN_PMCON_GEN_RST_STS BIT9 // General Reset Status
705 #define B_PCH_PMC_GEN_PMCON_RTC_RESERVED BIT8 // RTC Reserved
706 #define B_PCH_PMC_GEN_PMCON_SWSMI_RTSL (BIT7 | BIT6) // SWSMI Rate Select
707 #define V_PCH_PMC_GEN_PMCON_SWSMI_RTSL_64MS 0xC0 // 64ms +/- 4ms
708 #define V_PCH_PMC_GEN_PMCON_SWSMI_RTSL_32MS 0x80 // 32ms +/- 4ms
709 #define V_PCH_PMC_GEN_PMCON_SWSMI_RTSL_16MS 0x40 // 16ms +/- 4ms
710 #define V_PCH_PMC_GEN_PMCON_SWSMI_RTSL_1_5MS 0x00 // 1.5ms +/- 0.6ms
711 #define B_PCH_PMC_GEN_PMCON_SLP_S4_MAW (BIT5 | BIT4) // SLP_S4# Minimum Assertion Width
712 #define V_PCH_PMC_GEN_PMCON_SLP_S4_MAW_1S 0x30 // 1 second
713 #define V_PCH_PMC_GEN_PMCON_SLP_S4_MAW_2S 0x20 // 2 seconds
714 #define V_PCH_PMC_GEN_PMCON_SLP_S4_MAW_3S 0x10 // 3 seconds
715 #define V_PCH_PMC_GEN_PMCON_SLP_S4_MAW_4S 0x00 // 4 seconds
716 #define B_PCH_PMC_GEN_PMCON_SLP_S4_ASE BIT3 // SLP_S4# Assertion Scretch Enable
717 #define B_PCH_PMC_GEN_PMCON_RTC_PWR_STS BIT2 // RTC Power Status
718 #define B_PCH_PMC_GEN_PMCON_AFTERG3_EN BIT0 // After G3 State Enable
719
720 #define R_PCH_PMC_GEN_PMCON_2 0x24 // General PM Configuration 2
721 #define B_PCH_PMC_GEN_PMCON_LOCK_S4_STRET_LD BIT18 // SLP_S3 / SLP_S4 Stretching Policy Lock-Down
722 #define B_PCH_PMC_GEN_PMCON_BIOS_PCI_EXP_EN BIT10 // BIOS PCI Express Enable
723 #define B_PCH_PMC_GEN_PMCON_PWRBTN_LVL BIT9 // Power Button Level
724 #define B_PCH_PMC_GEN_PMCON_SMI_LOCK BIT4 // SMI Lock
725 #define B_PCH_PMC_GEN_PMCON_PER_SMI_SEL (BIT1 | BIT0) // Period SMI Select
726 #define V_PCH_PMC_GEN_PMCON_PER_SMI_64S 0x0000 // 64 seconds
727 #define V_PCH_PMC_GEN_PMCON_PER_SMI_32S 0x0001 // 32 seconds
728 #define V_PCH_PMC_GEN_PMCON_PER_SMI_16S 0x0002 // 16 seconds
729 #define V_PCH_PMC_GEN_PMCON_PER_SMI_8S 0x0003 // 8 seconds
730
731 #define R_PCH_PMC_MFPMC 0x28 // Message from PMC
732
733 #define R_PCH_PMC_SEC_STS 0x2C // SEC Status
734 #define B_PCH_PMC_SEC_STS_SEC (BIT3 | BIT2 | BIT1 | BIT0) // SEC Exclusion Cause
735
736 #define R_PCH_PMC_CRID 0x30 // Configured Revision ID
737 #define B_PCH_PMC_CRID_RID_SEL (BIT1 | BIT0) // Revision ID Select
738
739 #define R_PCH_PMC_FUNC_DIS 0x34 // Function Disable Register
740 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC7 BIT31 // LPSS2 I2C #7
741 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC6 BIT30 // LPSS2 I2C #6
742 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC5 BIT29 // LPSS2 I2C #5
743 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC4 BIT28 // LPSS2 I2C #4
744 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC3 BIT27 // LPSS2 I2C #3
745 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC2 BIT26 // LPSS2 I2C #2
746 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC1 BIT25 // LPSS2 I2C #1
747 #define B_PCH_PMC_FUNC_DIS_LPSS2_FUNC0 BIT24 // LPSS2 DMA Disable
748 #define B_PCH_PMC_FUNC_DIS_PCI_EX_FUNC3 BIT23 // PCI Express Function 3 Disable
749 #define B_PCH_PMC_FUNC_DIS_PCI_EX_FUNC2 BIT22 // PCI Express Function 2 Disable
750 #define B_PCH_PMC_FUNC_DIS_PCI_EX_FUNC1 BIT21 // PCI Express Function 1 Disable
751 #define B_PCH_PMC_FUNC_DIS_PCI_EX_FUNC0 BIT20 // PCI Express Function 0 Disable
752 #define N_PCH_PMC_FUNC_DIS_PCI_EX_FUNC0 20
753 #define B_PCH_PMC_FUNC_DIS_SEC BIT19 // SEC Disable
754 #define B_PCH_PMC_FUNC_DIS_USB BIT18 // USB Disable
755 #define B_PCH_PMC_FUNC_DIS_SATA BIT17 // SATA Disable
756 #define B_PCH_PMC_FUNC_DIS_USH BIT15 // USH (USB3) Disable
757 #define B_PCH_PMC_FUNC_DIS_OTG BIT14 // USB OTG Disable
758 #define B_PCH_PMC_FUNC_DIS_LPE BIT13 // LPE Disable
759 #define B_PCH_PMC_FUNC_DIS_AZALIA BIT12 // Azalia Disable
760 #define B_PCH_PMC_FUNC_DIS_MIPI BIT11 // MIPI-HSI Disable
761 #define B_PCH_PMC_FUNC_DIS_SDIO4 BIT11 // SCC SDIO #4 (Device 23, eMMC4.5) Disable
762 #define B_PCH_PMC_FUNC_DIS_SDIO3 BIT10 // SCC SDIO #3 (Device 18, SD Card) Disable
763 #define B_PCH_PMC_FUNC_DIS_SDIO2 BIT9 // SCC SDIO #2 (Device 17, SDIO) Disable
764 #define B_PCH_PMC_FUNC_DIS_SDIO1 BIT8 // SCC SDIO #1 (Device 16, eMMC) Disable
765 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC7 BIT7 // LPSS1 Spare #2 Disable
766 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC6 BIT6 // LPSS1 Spare #1 Disable
767 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC5 BIT5 // LPSS1 SPI Disable
768 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC4 BIT4 // LPSS1 HS-UART #2 Disable
769 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC3 BIT3 // LPSS1 HS-UART #1 Disable
770 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC2 BIT2 // LPSS1 PWM #2 Disable
771 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC1 BIT1 // LPSS1 PWM #1 Disable
772 #define B_PCH_PMC_FUNC_DIS_LPSS1_FUNC0 BIT0 // LPSS1 DMA Disable
773
774 #define R_PCH_PMC_FUNC_DIS2 0x38 // Function Disable 2 Register
775 #define B_PCH_PMC_FUNC_DIS2_USH_SS_PHY BIT2 // USH Super Speed PHY Disable
776 #define B_PCH_PMC_FUNC_DIS2_OTG_SS_PHY BIT1 // OTG Super Speed PHY Disable
777 #define B_PCH_PMC_FUNC_DIS2_SMBUS BIT0 // SMBus Disable
778
779 #define R_PCH_PMC_PMIR 0x48 // Extended Test Mode Register (ETR)
780 #define B_PCH_PMC_PMIR_CF9LOCK BIT31 // CF9h Lockdown
781 #define B_PCH_PMC_PMIR_LTR_DEF BIT22 // LTR Default
782 #define B_PCH_PMC_PMIR_IGNORE_HPET BIT21 // Ignore HPET Disable Check Before Going to S0i2
783 #define B_PCH_PMC_PMIR_CF9GR BIT20 // CF9h Global Reset
784
785 #define R_PCH_PMC_VLT 0x50 // Voltage Detect Register
786 #define B_PCH_PMC_VLT_FUSES 0xFF // Voltage Detect Fuses
787
788 #define R_PCH_PMC_GPI_ROUT 0x58 // GPI Rout
789 #define B_PCH_PMC_GPI_ROUT_0 (BIT1 | BIT0)
790 #define B_PCH_PMC_GPI_ROUT_1 (BIT3 | BIT2)
791 #define B_PCH_PMC_GPI_ROUT_2 (BIT5 | BIT4)
792 #define B_PCH_PMC_GPI_ROUT_3 (BIT7 | BIT6)
793 #define B_PCH_PMC_GPI_ROUT_4 (BIT9 | BIT8)
794 #define B_PCH_PMC_GPI_ROUT_5 (BIT11 | BIT10)
795 #define B_PCH_PMC_GPI_ROUT_6 (BIT13 | BIT12)
796 #define B_PCH_PMC_GPI_ROUT_7 (BIT15 | BIT14)
797 #define B_PCH_PMC_GPI_ROUT_8 (BIT17 | BIT16)
798 #define B_PCH_PMC_GPI_ROUT_9 (BIT19 | BIT18)
799 #define B_PCH_PMC_GPI_ROUT_10 (BIT21 | BIT20)
800 #define B_PCH_PMC_GPI_ROUT_11 (BIT23 | BIT22)
801 #define B_PCH_PMC_GPI_ROUT_12 (BIT25 | BIT24)
802 #define B_PCH_PMC_GPI_ROUT_13 (BIT27 | BIT26)
803 #define B_PCH_PMC_GPI_ROUT_14 (BIT29 | BIT28)
804 #define B_PCH_PMC_GPI_ROUT_15 (BIT31 | BIT30)
805
806 #define R_PCH_PMC_PCC0 0x60 // Platform Clock Control 0
807 #define B_PCH_PMC_PCC0_CLK_FREQ BIT2 // Clock Frequency
808 #define B_PCH_PMC_PCC0_CLK_CTL (BIT1 | BIT0) // Clock Gating
809
810 #define R_PCH_PMC_PCC1 0x64 // Platform Clock Control 1
811 #define B_PCH_PMC_PCC1_CLK_FREQ BIT2 // Clock Frequency
812 #define B_PCH_PMC_PCC1_CLK_CTL (BIT1 | BIT0) // Clock Gating
813
814 #define R_PCH_PMC_PCC2 0x68 // Platform Clock Control 2
815 #define B_PCH_PMC_PCC2_CLK_FREQ BIT2 // Clock Frequency
816 #define B_PCH_PMC_PCC2_CLK_CTL (BIT1 | BIT0) // Clock Gating
817
818 #define R_PCH_PMC_PCC3 0x6C // Platform Clock Control 3
819 #define B_PCH_PMC_PCC3_CLK_FREQ BIT2 // Clock Frequency
820 #define B_PCH_PMC_PCC3_CLK_CTL (BIT1 | BIT0) // Clock Gating
821
822 #define R_PCH_PMC_PCC4 0x70 // Platform Clock Control 4
823 #define B_PCH_PMC_PCC4_CLK_FREQ BIT2 // Clock Frequency
824 #define B_PCH_PMC_PCC4_CLK_CTL (BIT1 | BIT0) // Clock Gating
825
826 #define R_PCH_PMC_PCC5 0x74 // Platform Clock Control 5
827 #define B_PCH_PMC_PCC5_CLK_FREQ BIT2 // Clock Frequency
828 #define B_PCH_PMC_PCC5_CLK_CTL (BIT1 | BIT0) // Clock Gating
829
830 #define R_PCH_PMC_S0IR_TMR 0x80 // S0I Ready Residency Timer
831 #define B_PCH_PMC_S0IR_TMR_RTIME 0xFFFFFFFF // Time Spent in S0I Ready State
832
833 #define R_PCH_PMC_S0I1_TMR 0x84 // S0I1 Ready Residency Timer
834 #define B_PCH_PMC_S0I1_TMR_RTIME 0xFFFFFFFF // Time Spent in S0I1 Ready State
835
836 #define R_PCH_PMC_S0I2_TMR 0x88 // S0I2 Ready Residency Timer
837 #define B_PCH_PMC_S0I2_TMR_RTIME 0xFFFFFFFF // Time Spent in S0I2 Ready State
838
839 #define R_PCH_PMC_S0I3_TMR 0x8C // S0I3 Ready Residency Timer
840 #define B_PCH_PMC_S0I3_TMR_RTIME 0xFFFFFFFF // Time Spent in S0I3 Ready State
841
842 #define R_PCH_PMC_S0_TMR 0x90 // S0 Residency Timer
843 #define B_PCH_PMC_S0_TMR_RTIME 0xFFFFFFFF // Time Spent in S0 State
844
845 #define R_PCH_PMC_PSS 0x98 // Power Island Power Status
846 #define B_PCH_PMC_PSS_PG_STS 0x3FFFF // Power Gate Status of All Power Islands
847 #define B_PCH_PMC_PSS_PG_STS_USB_SUS BIT17 // USB SUS
848 #define B_PCH_PMC_PSS_PG_STS_USB BIT16 // USB
849 #define B_PCH_PMC_PSS_PG_STS_OTG_VCCACLK BIT15 // OTG VCCACLK
850 #define B_PCH_PMC_PSS_PG_STS_OTG VCCA BIT14 // OTG VCCA
851 #define B_PCH_PMC_PSS_PG_STS_OTG_VCCS BIT13 // OTG VCCS
852 #define B_PCH_PMC_PSS_PG_STS_OTG_CTL BIT12 // OTG Control
853 #define B_PCH_PMC_PSS_PG_STS_USH_VCCA BIT11 // USH VCCA
854 #define B_PCH_PMC_PSS_PG_STS_USH_VCCS BIT10 // USH VCCS
855 #define B_PCH_PMC_PSS_PG_STS_USH_SUS BIT9 // USH SUS
856 #define B_PCH_PMC_PSS_PG_STS_USH_CTL BIT8 // USH Control
857 #define B_PCH_PMC_PSS_PG_STS_DFX BIT7 // DFX
858 #define B_PCH_PMC_PSS_PG_STS_LPE BIT6 // LPE Audio
859 #define B_PCH_PMC_PSS_PG_STS_LPSS BIT5 // LPSS
860 #define B_PCH_PMC_PSS_PG_STS_PCIE BIT4 // PCIe
861 #define B_PCH_PMC_PSS_PG_STS_HDA BIT2 // HDA
862 #define B_PCH_PMC_PSS_PG_STS_SATA BIT1 // SATA
863
864 #define R_PCH_PMC_D3_STS_0 0xA0 // D3 Status 0
865 #define B_PCH_PMC_D3_STS_0_LPSS1F7 BIT31 // LPSS 1 Function 7
866 #define B_PCH_PMC_D3_STS_0_LPSS1F6 BIT30 // LPSS 1 Function 6
867 #define B_PCH_PMC_D3_STS_0_LPSS1F5 BIT29 // LPSS 1 Function 5
868 #define B_PCH_PMC_D3_STS_0_LPSS1F4 BIT28 // LPSS 1 Function 4
869 #define B_PCH_PMC_D3_STS_0_LPSS1F3 BIT27 // LPSS 1 Function 3
870 #define B_PCH_PMC_D3_STS_0_LPSS1F2 BIT26 // LPSS 1 Function 2
871 #define B_PCH_PMC_D3_STS_0_LPSS1F1 BIT25 // LPSS 1 Function 1
872 #define B_PCH_PMC_D3_STS_0_LPSS1F0 BIT24 // LPSS 1 Function 0
873 #define B_PCH_PMC_D3_STS_0_PCIEF3 BIT23 // PCIe Function 3
874 #define B_PCH_PMC_D3_STS_0_PCIEF2 BIT22 // PCIe Function 2
875 #define B_PCH_PMC_D3_STS_0_PCIEF1 BIT21 // PCIe Function 1
876 #define B_PCH_PMC_D3_STS_0_PCIEF0 BIT20 // PCIe Function 0
877 #define B_PCH_PMC_D3_STS_0_USB BIT18 // USB
878 #define B_PCH_PMC_D3_STS_0_SATA BIT17 // SATA
879 #define B_PCH_PMC_D3_STS_0_USH BIT15 // USH
880 #define B_PCH_PMC_D3_STS_0_OTG BIT14 // OTG
881 #define B_PCH_PMC_D3_STS_0_LPE BIT13 // LPE
882 #define B_PCH_PMC_D3_STS_0_HDA BIT12 // HDA
883 #define B_PCH_PMC_D3_STS_0_MIPI BIT11 // MIPI-HSI
884 #define B_PCH_PMC_D3_STS_0_SCCF2 BIT10 // SCC Function 2
885 #define B_PCH_PMC_D3_STS_0_SCCF1 BIT9 // SCC Function 1
886 #define B_PCH_PMC_D3_STS_0_SCCF0 BIT8 // SCC Function 0
887 #define B_PCH_PMC_D3_STS_0_LPSS0F7 BIT7 // LPSS 0 Function 7
888 #define B_PCH_PMC_D3_STS_0_LPSS0F6 BIT6 // LPSS 0 Function 6
889 #define B_PCH_PMC_D3_STS_0_LPSS0F5 BIT5 // LPSS 0 Function 5
890 #define B_PCH_PMC_D3_STS_0_LPSS0F4 BIT4 // LPSS 0 Function 4
891 #define B_PCH_PMC_D3_STS_0_LPSS0F3 BIT3 // LPSS 0 Function 3
892 #define B_PCH_PMC_D3_STS_0_LPSS0F2 BIT2 // LPSS 0 Function 2
893 #define B_PCH_PMC_D3_STS_0_LPSS0F1 BIT1 // LPSS 0 Function 1
894 #define B_PCH_PMC_D3_STS_0_LPSS0F0 BIT0 // LPSS 0 Function 0
895
896 #define R_PCH_PMC_D3_STS_1 0xA4 // D3 Status 1
897 #define B_PCH_PMC_D3_STS_1_DFX BIT3 // DFX
898 #define B_PCH_PMC_D3_STS_1_OTG_SS BIT2 // OTG SS
899 #define B_PCH_PMC_D3_STS_1_USH_SS BIT1 // USH SS
900 #define B_PCH_PMC_D3_STS_1_SMB BIT0 // SMBus
901 #define R_PCH_PMC_D3_STDBY_STS_0 0xA8 // D3 Standby Status 0
902 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F7 BIT31 // LPSS 1 Function 7
903 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F6 BIT30 // LPSS 1 Function 6
904 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F5 BIT29 // LPSS 1 Function 5
905 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F4 BIT28 // LPSS 1 Function 4
906 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F3 BIT27 // LPSS 1 Function 3
907 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F2 BIT26 // LPSS 1 Function 2
908 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F1 BIT25 // LPSS 1 Function 1
909 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS1F0 BIT24 // LPSS 1 Function 0
910 #define B_PCH_PMC_D3_STDBY_STS_0_PCIEF3 BIT23 // PCIe Function 3
911 #define B_PCH_PMC_D3_STDBY_STS_0_PCIEF2 BIT22 // PCIe Function 2
912 #define B_PCH_PMC_D3_STDBY_STS_0_PCIEF1 BIT21 // PCIe Function 1
913 #define B_PCH_PMC_D3_STDBY_STS_0_PCIEF0 BIT20 // PCIe Function 0
914 #define B_PCH_PMC_D3_STDBY_STS_0_USB BIT18 // USB
915 #define B_PCH_PMC_D3_STDBY_STS_0_SATA BIT17 // SATA
916 #define B_PCH_PMC_D3_STDBY_STS_0_USH BIT15 // USH
917 #define B_PCH_PMC_D3_STDBY_STS_0_OTG BIT14 // OTG
918 #define B_PCH_PMC_D3_STDBY_STS_0_LPE BIT13 // LPE
919 #define B_PCH_PMC_D3_STDBY_STS_0_HDA BIT12 // HDA
920 #define B_PCH_PMC_D3_STDBY_STS_0_MIPI BIT11 // MIPI-HSI
921 #define B_PCH_PMC_D3_STDBY_STS_0_SCCF2 BIT10 // SCC Function 2
922 #define B_PCH_PMC_D3_STDBY_STS_0_SCCF1 BIT9 // SCC Function 1
923 #define B_PCH_PMC_D3_STDBY_STS_0_SCCF0 BIT8 // SCC Function 0
924 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F7 BIT7 // LPSS 0 Function 7
925 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F6 BIT6 // LPSS 0 Function 6
926 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F5 BIT5 // LPSS 0 Function 5
927 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F4 BIT4 // LPSS 0 Function 4
928 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F3 BIT3 // LPSS 0 Function 3
929 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F2 BIT2 // LPSS 0 Function 2
930 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F1 BIT1 // LPSS 0 Function 1
931 #define B_PCH_PMC_D3_STDBY_STS_0_LPSS0F0 BIT0 // LPSS 0 Function 0
932
933 #define R_PCH_PMC_D3_STDBY_STS_1 0xAC // D3 Standby Status 1
934 #define B_PCH_PMC_D3_STDBY_STS_1_DFX BIT3 // DFX
935 #define B_PCH_PMC_D3_STDBY_STS_1_OTG_SS BIT2 // OTG SS
936 #define B_PCH_PMC_D3_STDBY_STS_1_USH_SS BIT1 // USH SS
937 #define B_PCH_PMC_D3_STDBY_STS_1_SMB BIT0 // SMBus
938
939 #define R_PCH_PMC_MTPMC1 0xB0 // Message to PMC 1
940
941 #define R_PCH_PMC_MTPMC2 0xB4 // Message to PMC 2
942
943 #define R_PCH_PMC_MTPMC3 0xB8 // Message to PMC 3
944
945 #define R_PCH_PMC_MTPMC4 0xBC // Message to PMC 4
946
947 //
948 // IO Memory Space Registers (IOBASE)
949 //
950 #define R_PCH_CFIO_PAD_CONF0 0x00 // CFIO PAD_CONF0
951 #define R_PCH_CFIO_PAD_CONF1 0x04 // CFIO PAD_CONF1
952 #define R_PCH_CFIO_PAD_VAL 0x08 // CFIO PAD_VAL
953 #define R_PCH_CFIO_PAD_DFT 0x0C // CFIO PAD_CFT
954
955 //
956 // GPIO Register Offsets from GBASE
957 //
958 #define R_PCH_GPIO_SC_USE_SEL 0x00 // GPIO South Usage Select [31:0]
959 #define R_PCH_GPIO_SC_IO_SEL 0x04 // GPIO South Input / Output Select [31:0]
960 #define R_PCH_GPIO_SC_LVL 0x08 // GPIO South Level for Input or Output [31:0]
961
962 #define R_PCH_GPIO_SC_TPE 0x0C // GPIO South Trigger Positive Edge Enable [31:0]
963 #define R_PCH_GPIO_SC_TNE 0x10 // GPIO South Trigger Negative Edge Enable [31:0]
964 #define R_PCH_GPIO_SC_TS 0x14 // GPIO South Trigger Status [31:0]
965
966 #define R_PCH_GPIO_SC_USE_SEL2 0x20 // GPIO South Usage Select 2 [63:32]
967 #define R_PCH_GPIO_SC_IO_SEL2 0x24 // GPIO South Input / Output Select 2 [63:32]
968 #define R_PCH_GPIO_SC_LVL2 0x28 // GPIO South Level for Input or Output 2 [63:32]
969
970 #define R_PCH_GPIO_SC_TPE2 0x2C // GPIO South Trigger Positive Edge Enable 2 [63:32]
971 #define R_PCH_GPIO_SC_TNE2 0x30 // GPIO South Trigger Negative Edge Enable 2 [63:32]
972 #define R_PCH_GPIO_SC_TS2 0x34 // GPIO South Trigger Status 2 [63:32]
973
974 #define R_PCH_GPIO_SC_USE_SEL3 0x40 // GPIO South Usage Select 3 [95:64]
975 #define R_PCH_GPIO_SC_IO_SEL3 0x44 // GPIO South Input / Output Select 3 [95:64]
976 #define R_PCH_GPIO_SC_LVL3 0x48 // GPIO South Level for Input or Output 3 [95:64]
977
978 #define R_PCH_GPIO_SC_TPE3 0x4C // GPIO South Trigger Positive Edge Enable 3 [95:64]
979 #define R_PCH_GPIO_SC_TNE3 0x50 // GPIO South Trigger Negative Edge Enable 3 [95:64]
980 #define R_PCH_GPIO_SC_TS3 0x54 // GPIO South Trigger Status 3 [95:64]
981
982 #define R_PCH_GPIO_SC_USE_SEL4 0x60 // GPIO South Usage Select 4 [127:96]
983 #define R_PCH_GPIO_SC_IO_SEL4 0x64 // GPIO South Input / Output Select 4 [127:96]
984 #define R_PCH_GPIO_SC_LVL4 0x68 // GPIO South Level for Input or Output 4 [127:96]
985
986 #define R_PCH_GPIO_SC_TPE4 0x6C // GPIO South Trigger Positive Edge Enable 4 [127:96]
987 #define R_PCH_GPIO_SC_TNE4 0x70 // GPIO South Trigger Negative Edge Enable 4 [127:96]
988 #define R_PCH_GPIO_SC_TS4 0x74 // GPIO South Trigger Status 4 [127:96]
989
990 #define R_PCH_GPIO_SUS_USE_SEL 0x80 // GPIO Suspend Use Select [31:0]
991 #define R_PCH_GPIO_SUS_IO_SEL 0x84 // GPIO Suspend Input / Output Select [31:0]
992 #define R_PCH_GPIO_SUS_LVL 0x88 // GPIO Suspend Level for Input or Output [31:0]
993
994 #define R_PCH_GPIO_SUS_TPE 0x8C // GPIO Suspend Trigger Positive Edge Enable [31:0]
995 #define R_PCH_GPIO_SUS_TNE 0x90 // GPIO Suspend Trigger Negative Edge Enable [31:0]
996 #define R_PCH_GPIO_SUS_TS 0x94 // GPIO Suspend Trigger Status [31:0]
997
998 #define R_PCH_GPIO_SUS_WAKE_EN 0x98 // GPIO Suspend Wake Enable [31:0]
999
1000 #define R_PCH_GPIO_SUS_USE_SEL2 0x100 // GPIO Suspend Use Select 2 [42:32]
1001 #define R_PCH_GPIO_SUS_IO_SEL2 0x104 // GPIO Suspend Input / Output Select 2 [42:32]
1002 #define R_PCH_GPIO_SUS_LVL2 0x108 // GPIO Suspend Level for Input or Output 2 [42:32]
1003
1004 #define R_PCH_GPIO_SUS_TPE2 0x10C // GPIO Suspend Trigger Positive Edge Enable [42:32]
1005 #define R_PCH_GPIO_SUS_TNE2 0x110 // GPIO Suspend Trigger Negative Edge Enable [42:32]
1006 #define R_PCH_GPIO_SUS_TS2 0x114 // GPIO Suspend Trigger Status [42:32]
1007
1008 #define R_PCH_GPIO_SUS_WAKE_EN2 0x118 // GPIO Suspend Wake Enable 2 [42:32]
1009
1010 //
1011 // Fixed IO Space
1012 //
1013
1014 //
1015 // Processor Interface Registers
1016 //
1017 #define R_PCH_NMI_SC 0x61 // NMI Status and Control
1018 #define B_PCH_NMI_SC_SERR_NMI_STS BIT7 // SERR# NMI Status
1019 #define B_PCH_NMI_SC_IOCHK_NMI_STS BIT6 // IOCHK NMI Status
1020 #define B_PCH_NMI_SC_TMR2_OUT_STS BIT5 // Timer Counter 2 Status
1021 #define B_PCH_NMI_SC_REF_TOGGLE BIT4 // Refresh Cycle toggle Status
1022 #define B_PCH_NMI_SC_IOCHK_NMI_EN BIT3 // IOCHK NMI Enable
1023 #define B_PCH_NMI_SC_PCI_SERR_EN BIT2 // SERR# NMI Enable
1024 #define B_PCH_NMI_SC_SPKR_DAT_EN BIT1 // Speaker Data Enable
1025 #define B_PCH_NMI_SC_TIM_CNT2_EN BIT0 // Timer Counter 2 Enable
1026
1027 #define R_PCH_NMI_EN 0x70 // NMI Enable and Real Time Clock Index, Co-function with R_PCH_RTC_INDEX
1028 #define B_PCH_NMI_EN_NMI_EN BIT7 // NMI Enable, must preserve this bit first before writing to IO port 0x70
1029
1030 //
1031 // RTC Registers
1032 //
1033 #define R_PCH_RTC_INDEX 0x70 // NMI Enable and Real Time Clock Index, Co-function with R_PCH_NMI_EN
1034 #define R_PCH_RTC_TARGET 0x71 // Real-Time Clock Target Register
1035 #define R_PCH_RTC_EXT_INDEX 0x72 // Extended RAM Index Register
1036 #define R_PCH_RTC_EXT_TARGET 0x73 // Extended RAM Target Register
1037 #define R_PCH_RTC_INDEX2 0x74 // Real-Time Clock Index Register
1038 #define R_PCH_RTC_TARGET2 0x75 // Real-Time Clock Target Register
1039 #define R_PCH_RTC_EXT_INDEX2 0x76 // Extended RAM Index Register
1040 #define R_PCH_RTC_EXT_TARGET2 0x77 // Extended RAM Target Register
1041
1042 #define R_PCH_RTC_SECONDS 0x00 // Seconds, Range 0..59
1043 #define R_PCH_RTC_SECONDSALARM 0x01 // Seconds Alarm, Range 0..59
1044 #define R_PCH_RTC_MINUTES 0x02 // Minutes, Range 0..59
1045 #define R_PCH_RTC_MINUTESALARM 0x03 // Minutes Alarm, Range 0..59
1046 #define R_PCH_RTC_HOURS 0x04 // Hours, Range 1..12 or 0..23 Bit 7 is AM/PM
1047 #define R_PCH_RTC_HOURSALARM 0x05 // Hours Alarm, Range 1..12 or 0..23 Bit 7 is AM/PM
1048 #define R_PCH_RTC_DAYOFWEEK 0x06 // Day of Week, Range 1..7
1049 #define R_PCH_RTC_DAYOFMONTH 0x07 // Day of Month, Range 1..31
1050 #define R_PCH_RTC_MONTH 0x08 // Month, Range 1..12
1051 #define R_PCH_RTC_YEAR 0x09 // Year, Range 0..99
1052
1053 #define R_PCH_RTC_REGISTERA 0x0A // RTC Register A
1054 #define B_PCH_RTC_REGISTERA_UIP BIT7 // Update In Progress
1055 #define B_PCH_RTC_REGISTERA_DV (BIT6 | BIT5 | BIT4) // Division Chain Select
1056 #define V_PCH_RTC_REGISTERA_DV_NORM_OP 0x20 // Normal Operation
1057 #define V_PCH_RTC_REGISTERA_DV_BYP_5 0x30 // Bypass 5 Stages (Test mode only)
1058 #define V_PCH_RTC_REGISTERA_DV_BYP_10 0x40 // Bypass 10 Stages (Test mode only)
1059 #define V_PCH_RTC_REGISTERA_DV_BYP_15 0x50 // Bypass 15 Stages (Test mode only)
1060 #define V_PCH_RTC_REGISTERA_DV_DIV_RST1 0x60 // Divider Reset
1061 #define V_PCH_RTC_REGISTERA_DV_DIV_RST2 0x70 // Divider Reset
1062 #define B_PCH_RTC_REGISTERA_RS (BIT3 | BIT2 | BIT1 | BIT0) // Rate Select
1063 #define V_PCH_RTC_REGISTERA_RS_INT_NV_TGL 0x00 // Interrupt Never Toggles
1064 #define V_PCH_RTC_REGISTERA_RS_3P906MS1 0x01 // 3.90625 ms
1065 #define V_PCH_RTC_REGISTERA_RS_7P812MS1 0x02 // 7.8125 ms
1066 #define V_PCH_RTC_REGISTERA_RS_122P0US 0x03 // 122.070 us
1067 #define V_PCH_RTC_REGISTERA_RS_244P1US 0x04 // 244.141 us
1068 #define V_PCH_RTC_REGISTERA_RS_488P2US 0x05 // 488.281 us
1069 #define V_PCH_RTC_REGISTERA_RS_976P5US 0x06 // 976.5625 us
1070 #define V_PCH_RTC_REGISTERA_RS_1P953MS 0x07 // 1.953125 ms
1071 #define V_PCH_RTC_REGISTERA_RS_3P906MS 0x08 // 3.90625 ms
1072 #define V_PCH_RTC_REGISTERA_RS_7P812MS 0x09 // 7.8125 ms
1073 #define V_PCH_RTC_REGISTERA_RS_15P62MS 0x0A // 15.625 ms
1074 #define V_PCH_RTC_REGISTERA_RS_31P25MS 0x0B // 31.25 ms
1075 #define V_PCH_RTC_REGISTERA_RS_62P5MS 0x0C // 62.5 ms
1076 #define V_PCH_RTC_REGISTERA_RS_125MS 0x0D // 125 ms
1077 #define V_PCH_RTC_REGISTERA_RS_250MS 0x0E // 250 ms
1078 #define V_PCH_RTC_REGISTERA_RS_500MS 0x0F // 500 ms
1079
1080 #define R_PCH_RTC_REGISTERB 0x0B // RTC Register B
1081 #define B_PCH_RTC_REGISTERB_SET BIT7 // Update Cycle Inhibit 1: Stop auto update, begin set value; 0: Update cycle occurs
1082 #define B_PCH_RTC_REGISTERB_PIE BIT6 // Periodic Interrupt Enable
1083 #define B_PCH_RTC_REGISTERB_AIE BIT5 // Alarm Interrupt Enable
1084 #define B_PCH_RTC_REGISTERB_UIE BIT4 // Update-ended Interrupt Enable
1085 #define B_PCH_RTC_REGISTERB_SQWE BIT3 // Square Wave Enable (Not implemented)
1086 #define B_PCH_RTC_REGISTERB_DM BIT2 // Data Mode 1: Binary; 0:BCD
1087 #define B_PCH_RTC_REGISTERB_HF BIT1 // Hour Format 1: 24 mode; 0: 12 mode.
1088 #define B_PCH_RTC_REGISTERB_DSE BIT0 // Daylight Savings Enable (Not Implemented)
1089
1090 #define R_PCH_RTC_REGISTERC 0x0C // RTC Register C
1091 #define B_PCH_RTC_REGISTERC_IRQF BIT7 // Interrupt Request Flag
1092 #define B_PCH_RTC_REGISTERC_PF BIT6 // Periodic Interrupt Flag
1093 #define B_PCH_RTC_REGISTERC_AF BIT5 // Alarm Flag
1094 #define B_PCH_RTC_REGISTERC_UF BIT4 // Update-ended Flag
1095 #define B_PCH_RTC_REGISTERC_RESERVED (BIT3 | BIT2 | BIT1 | BIT0)
1096
1097 #define R_PCH_RTC_REGISTERD 0x0D // RTC Register D
1098 #define B_PCH_RTC_REGISTERD_VRT BIT7 // Valid RAM and Time Bit
1099 #define B_PCH_RTC_REGISTERD_RESERVED BIT6
1100 #define B_PCH_RTC_REGISTERD_DA 0x3F // Date Alarm
1101
1102 #define B_PCH_RTC_CENTURY 0x32 // Century Data
1103
1104 //
1105 // APM Registers
1106 //
1107 #define R_PCH_APM_CNT 0xB2 // Advanced Power Management Control Port
1108 #define R_PCH_APM_STS 0xB3 // Advanced Power Management Status Port
1109
1110 //
1111 // INIT Register
1112 //
1113 #define R_PCH_PORT92 0x92
1114 #define B_PCH_PORT92_ALT_A20_GATE BIT1 // Alternate A20 Gate
1115 #define B_PCH_PORT92_INIT_NOW BIT0 // Init Now
1116
1117 //
1118 // PCU UART
1119 //
1120 #define R_PCH_COM1_BASE 0x3F8 // COM1 IO BASE
1121
1122 //
1123 // Reset Control Register
1124 //
1125 #define R_PCH_RST_CNT 0xCF9 // Reset Control
1126 #define B_PCH_RST_CNT_FULL_RST BIT3
1127 #define B_PCH_RST_CNT_RST_CPU BIT2
1128 #define B_PCH_RST_CNT_SYS_RST BIT1
1129 #define V_PCH_RST_CNT_FULLRESET 0x0E
1130 #define V_PCH_RST_CNT_HARDRESET 0x06
1131 #define V_PCH_RST_CNT_SOFTRESET 0x04 // Not supported by VLV
1132 #define V_PCH_RST_CNT_HARDSTARTSTATE 0x02
1133 #define V_PCH_RST_CNT_SOFTSTARTSTATE 0x00
1134
1135 //
1136 // Fixed Memory Region
1137 //
1138
1139 //
1140 // IO APIC Registers
1141 //
1142 #define R_PCH_IO_APIC_INDEX 0xFEC00000 // IOAPIC Index Register, 8bit
1143 #define R_PCH_IO_APIC_WINDOW 0xFEC00010 // IOAPIC Window Register, 32bit
1144 #define R_PCH_IO_APIC_EOI 0xFEC00040 // IOAPIC EOI Register, 8bit
1145
1146 #define R_PCH_IO_APIC_ID 0x00 // Identification
1147 #define B_PCH_IO_APIC_ID_AID (BIT27 | BIT26 | BIT25 | BIT24) // APIC Identification
1148
1149 #define R_PCH_IO_APIC_VS 0x01 // Version
1150 #define B_PCH_IO_APIC_VS_MRE 0xFF0000 // Maximum Redirection Entries
1151 #define B_PCH_IO_APIC_VS_PRQ BIT15 // Pin Assertion Register Supported
1152 #define B_PCH_IO_APIC_VS_VS 0xFF // Version
1153
1154 //
1155 // HPET Registers
1156 //
1157 #define R_PCH_PCH_HPET 0xFED00000 // HPET Base Address
1158
1159 #define R_PCH_PCH_HPET_GCID 0x00 // HPET General Capabilities and ID, 64bit
1160 #define B_PCH_PCH_HPET_GCID_CTP 0xFFFFFFFF00000000 // Counter Tick Period
1161 #define B_PCH_PCH_HPET_GCID_VID 0xFFFF0000 // Vendor ID
1162 #define B_PCH_PCH_HPET_GCID_LRC BIT15 // Legacy Rout Capable
1163 #define B_PCH_PCH_HPET_GCID_CS BIT13 // Counter Size
1164 #define B_PCH_PCH_HPET_GCID_NT 0x1F00 // Number of Timers
1165 #define B_PCH_PCH_HPET_GCID_RID 0xFF // Revision ID
1166 #define N_PCH_HPET_ADDR_ASEL 12
1167
1168 #define R_PCH_PCH_HPET_GCFG 0x10 // HPET General Configuration
1169 #define B_PCH_PCH_HPET_GCFG_LRE BIT1 // Legacy Rout Enable
1170 #define B_PCH_PCH_HPET_GCFG_EN BIT0 // Overall Enable
1171
1172 #define R_PCH_PCH_HPET_GIS 0x20 // HPET General Interrupt Status
1173 #define B_PCH_PCH_HPET_GIS_T2 BIT2 // Timer 2 Status
1174 #define B_PCH_PCH_HPET_GIS_T1 BIT1 // Timer 1 Status
1175 #define B_PCH_PCH_HPET_GIS_T0 BIT0 // Timer 0 Status
1176
1177 #define R_PCH_PCH_HPET_MCV 0xF0 // HPET Main Counter Value, 64bit
1178
1179 #define R_PCH_PCH_HPET_T0C 0x100 // HPET Timer 0 Config and Capabilities
1180 #define R_PCH_PCH_HPET_T0CV_L 0x108 // HPET Timer 0 Lower Comparator Value
1181 #define R_PCH_PCH_HPET_T0CV_H 0x10C // HPET Timer 0 Upper Comparator Value
1182
1183 #define R_PCH_PCH_HPET_T1C 0x120 // HPET Timer 1 Config and Capabilities
1184 #define R_PCH_PCH_HPET_T1CV 0x128 // HPET Timer 1 Comparator Value
1185
1186 #define R_PCH_PCH_HPET_T2C 0x140 // HPET Timer 2 Config and Capabilities
1187 #define R_PCH_PCH_HPET_T2CV 0x148 // HPET Timer 2 Comparator Value
1188
1189 #define B_PCH_PCH_HPET_TXC_IRC 0xFFFFFFFF00000000 // Interrupt Rout Capability
1190 #define B_PCH_PCH_HPET_TXC_FID BIT15 // FSB Interrupt Delivery
1191 #define B_PCH_PCH_HPET_TXC_FE BIT14 // FSB Enable
1192 #define B_PCH_PCH_HPET_TXC_IR 0x3E00 // Interrupt Rout
1193 #define B_PCH_PCH_HPET_TXC_T32M BIT8 // Timer 32-bit Mode
1194 #define B_PCH_PCH_HPET_TXC_TVS BIT6 // Timer Value Set
1195 #define B_PCH_PCH_HPET_TXC_TS BIT5 // Timer Size
1196 #define B_PCH_PCH_HPET_TXC_PIC BIT4 // Periodic Interrupt Capable
1197 #define B_PCH_PCH_HPET_TXC_TYP BIT3 // Timer Type
1198 #define B_PCH_PCH_HPET_TXC_IE BIT2 // Interrupt Enable
1199 #define B_PCH_PCH_HPET_TXC_IT BIT1 // Timer Interrupt Type
1200
1201 #endif