Improving BKDG implementation of P-states,
[coreboot.git] / src / northbridge / amd / amdht / AsPsDefs.h
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20
21 #ifndef ASPSDEFS_H
22 #define ASPSDEFS_H
23
24 #define APIC_BAR 0x1b                   /* APIC_BAR register */
25 #define APIC_BAR_BP 0x100               /* APIC_BAR BSP bit */
26
27 #define PS_LIM_REG 0xC0010061           /* P-state Current Limit Register */
28 #define PS_CUR_LIM_SHFT 4               /* P-state Current Limit shift position */
29
30 #define PS_CTL_REG 0xC0010062           /* P-state Control Register */
31 #define PS_CMD_MASK_OFF 0xfffffff8      /* P-state Control Register CMD Mask OFF */
32
33 #define PS_STS_REG 0xC0010063           /* P-state Status Register */
34 #define PS_STS_MASK 0x7         /* P-state Status Mask */
35
36 #define PS_REG_BASE 0xC0010064          /* P-state Register base */
37 #define PS_MAX_REG 0xC0010068           /* Maximum P-State Register */
38 #define PS_MIN_REG 0xC0010064           /* Mimimum P-State Register */
39
40 /* P-state register offset */
41 #define PS_REG0 0                       /* offset for P0 */
42 #define PS_REG1 1                       /* offset for P1 */
43 #define PS_REG2 2                       /* offset for P2 */
44 #define PS_REG3 3                       /* offset for P3 */
45 #define PS_REG4 4                       /* offset for P4 */
46
47 #define PS_IDD_VALUE_SHFT 0            /* IddValue: current value
48                                           field offset for msr.hi */
49 #define PS_IDD_VALUE_MASK 0xFF         /* IddValue: current value
50                                           field mask for msr.hi */
51 #define PS_PSDIS_MASK   0x7fffffff      /* disable P-state register */
52 #define PS_EN_MASK  0x80000000          /* P-state register enable mask */
53 #define PS_NB_DID_MASK 0x400000 /* P-state Reg[NbDid] Mask */
54 #define PS_NB_VID_M_OFF 0x01ffffff      /* P-state Reg[NbVid] Mask OFF */
55 #define PS_CPU_VID_M_ON 0x0fe00 /* P-state Reg[CpuVid] Mask On */
56 #define PS_NB_VID_M_ON 0x0fe000000      /* P-state Reg[NbVid] Mask On */
57 #define PS_CPU_VID_SHFT 9               /* P-state bit shift for CpuVid */
58 #define PS_NB_VID_SHFT 25               /* P-state bit shift for NbVid */
59 #define PS_BOTH_VID_OFF 0x01ff01ff      /* Mask NbVid & CpuVid */
60 #define PS_CPU_NB_VID_SHFT 16           /* P-state bit shift from CpuVid to NbVid */
61 #define PS_NB_VID_SHFT 25               /* P-state NBVID shift */
62 #define PS_DIS 0x7fffffff               /* disable P-state reg */
63 #define PS_EN 0x80000000                /* enable P-state reg */
64 #define PS_CPU_FID_MASK 0x03f           /* MSRC001_00[68:64][CpuFid]
65                                            Core Frequency Id */
66 #define PS_CURDIV_SHFT 8                /* P-state Current Divisor shift position */
67 #define PS_CPUDID_SHIFT 6               /* P-state CPU DID shift position */
68
69 /* for unfused parts */
70 #define PS_NB_VID_110V 0x48000000
71 #define PS_NB_VID_1175V 0x3c000000
72 /* NB VID 1.100V =0x12[PVI]=0x24[SVI] = 0100100b 7-bit code */
73
74 #define PS_NB_DID0 0                    /* NB DID 0 */
75 #define PS_NB_DID1 0x400000             /* NB DID 1 */
76 #define PS_CPU_VID_110V 0x4800          /* CPU VID 1.100V */
77 #define PS_CPU_VID_1175V 0x3c00 /* CPU VID 1.175V */
78 #define PS_CPU_DID 0x40         /* CPU DID 1 = divisor of 2 */
79 #define PS_CPU_DID0 0                   /* CPU DID 0 = divisor of 1 */
80 #define PS_CPU_FID_16G 0x00             /* CPU FID of 00 = 1.6GHz */
81 #define PS_CPU_FID_16G1 0x10            /* CPU FId of 16 COF = 16+16/2 = 16 */
82 #define PS_CPU_FID_18G 20               /* CPU FId of 20 COF = 20+16/2 = 18 */
83 #define PS_CPU_FID_19G 22               /* CPU FId of 20 COF = 22+16/2 = 19 */
84 #define PS_CPU_FID_20G 24               /* CPU FId of 20 COF = 24+16/2 = 20 */
85 #define PS_CPU_FID_22G 28               /* CPU FId of 2C COF = 28+16/2 = 22 */
86 #define PS_CPU_FID_30G 44               /* CPU FId of 2C COF = 44+16/2 = 30 */
87
88
89
90 #define PCI_DEV_BASE 24         /* System PCI device ID base */
91 #define LOCAL_APIC_ID_SHIFT 24          /* Local APIC ID shift bit # */
92 #define APIC_CID_SIZE_SHIFT 12          /* ApicCoreIdSize shift bit # */
93 #define FN_0 0                          /* Function 0 */
94 #define FN_1 1                          /* Function 1 */
95 #define FN_2 2                          /* Function 2 */
96 #define FN_3 3                          /* Function 3 */
97 #define FN_4 4                          /* Function 4 */
98 #define FN_5 5                          /* Function 5 */
99 #define FN_80000000 0x80000000          /* Function 8000_0000 */
100 #define FN_80000001 0x80000001          /* Function 8000_0001 */
101 #define FN_80000008 0x80000008          /* Function 8000_0008 */
102
103 #define LNK_INIT_REG 0x6C               /* F0x6C link initialization control register */
104 #define WARM_RESET_BIT 0x10             /* bit 4 =1 : warm reset */
105
106 #define HTC_REG 0x64                    /* hardware thermal control reg */
107 #define HTC_PS_LMT_MASK 0x8fffffff      /* HtcPstateLimit mask off */
108 #define PS_LIMIT_POS 28         /* PstateLimit position for HTC & STC */
109
110 #define STC_REG 0x68                    /* software thermal control reg */
111 #define STC_PS_LMT_MASK 0x8fffffff      /* StcPstateLimit mask off */
112
113 #define CPTC0 0x0d4                     /* Clock Power/Timing Control0 Register*/
114 #define CPTC0_MASK 0x000c0fff           /* Reset mask for this register */
115 #define CPTC0_NBFID_MASK 0xffffffe0     /* NbFid mask off for this register */
116 #define CPTC0_NBFID_MON 0x1f            /* NbFid mask on for this register */
117 #define NB_FID_EN 0x20                  /* NbFidEn bit ON */
118 #define NB_CLKDID_ALL 0x80000000        /* NbClkDidApplyAll bit ON */
119 #define NB_CLKDID     0x40000000        /* NbClkDid value set by BIOS */
120 #define NB_CLKDID_SHIFT   28            /* NbClkDid bit shift */
121 #define PW_STP_UP50   0x08000000        /* PowerStepUp 50nS(1000b) */
122 #define PW_STP_DN50   0x00800000        /* PowerStepDown 50nS (1000b)*/
123 #define PW_STP_UP100  0x03000000        /* PowerStepUp 100nS(0011b) */
124 #define PW_STP_DN100  0x00300000        /* PowerStepDown 100nS (0011b)*/
125 #define PW_STP_UP200  0x02000000        /* PowerStepUp 200nS(0010b) */
126 #define PW_STP_DN200  0x00200000        /* PowerStepDown 200nS (0010b)*/
127 #define PW_STP_UP400  0x00000000        /* PowerStepUp 400nS(0000b) */
128 #define PW_STP_DN400  0x00000000        /* PowerStepDown 400nS (0000b)*/
129 #define CLK_RAMP_HYST_SEL_VAL 0x00000f00 /* value mask for clock ramp
130                                             hysteresis select. BIOS
131                                             should program
132                                             F3xC4[ClkRampHystSel] to
133                                             1111b */
134
135
136 #define LNK_PLL_LOCK  0x00010000        /* LnkPllLock value set (01b) by BIOS */
137
138
139
140 #define PSTATE_CTL 0xC0010070           /* P-state Control Register */
141 #define NB_VID_POS 25                   /* NbVid bit shift for position */
142 #define NB_VID_MASK_OFF 0x01ffffff      /* NbVid bits mask off */
143 #define NB_VID_MASK_ON 0xfe000000       /* NbVid bits mask on */
144 #define CPU_VID_POS 0x9         /* CpuVid bit shift for position */
145 #define CPU_VID_MASK_OFF 0xffff01ff     /* CpuVid bits mask off */
146 #define CPU_VID_MASK_ON 0x0000fe00      /* CpuVid bits mask on */
147 #define CPU_FID_DID_M_ON 0x000001ff     /* CpuFid & CpuDid mask on */
148 #define CPU_FID_DID_M_OFF 0xfffffe00    /* CpuFid & CpuDid mask off */
149 #define NB_DID_VID_M_ON 0xfe400000      /* NbDid & NbVid mask on */
150 #define NB_DID_M_ON 0x00400000          /* NbDid mask on */
151 #define NB_DID_M_OFF 0xffbfffff /* NbDid mask off */
152 #define NB_DID_POS 22                   /* NbDid bit shift for position */
153 #define PS_M_OFF 0xfff8ffff             /* Cur Pstate mask off */
154 #define PS_1 0x00010000         /* P-state 1 */
155 #define PS_2 0x00020000         /* P-state 2 */
156 #define PS_CPU_DID_1 0x40               /* Cpu Did 1 */
157
158 #define NB_VID1_MASK  0x00003f80      /* F3x1F4[NbVid1]*/
159 #define NB_VID1_SHIFT  7      /* F3x1F4[NbVid1] */
160
161
162
163 #define PSTATE_STS 0xC0010071           /* P-state Status Register */
164 #define STARTUP_PS_MASK 0x7             /* StartupPstate Mask */
165
166 /* define for NB VID & CPU VID transition functions */
167 #define IS_NB 1
168 #define IS_CPU 0
169
170 /* F3xD8 Clock Power/Timing Control 1 Register */
171 #define CPTC1 0xd8                      /* Clock Power/Timing Control1 Register*/
172 #define VSRAMP_SLAM_MASK 0xffffff88     /* MaskOff [VSRampTime]&[VSSlamTime] */
173 #define VSRAMP_SLAM_VALUE 0x16          /* [VSRampTime]=001b&[VSSlamTime]=110b */
174 #define VSRAMP_MASK 0xffffff8f          /* MaskOff [VSRampTime] */
175 #define VSRAMP_VALUE 0x10               /* [VSRampTime]=001b */
176 #define VS_RAMP_T 4                     /* VSRampTime bit position */
177 #define VSSLAM_MASK 0xfffffff8          /* MaskOff [VSSlamTime] */
178 #define PWR_PLN_SHIFT 28                /* PwrPlanes bit shift */
179 #define PWR_PLN_ON 0x10000000           /* PwrPlanes bit ON */
180 #define PWR_PLN_OFF 0x0efffffff /* PwrPlanes bit OFF */
181
182
183
184 /* Northbridge Capability Register */
185 #define NB_CAP 0xe8                     /* Northbridge Cap Reg */
186 #define CMP_CAP_SHFT 12         /* CMP CAP - number of enabled cores */
187
188 /* F3xDC Clock Power/Timing Control 2 Register */
189 #define CPTC2 0xdc                      /* Clock Power/Timing Control2 Register*/
190 #define PS_MAX_VAL_POS 8                /* PstateMaxValue bit shift */
191 #define PS_MAX_VAL_MASK 0xfffff8ff      /* PstateMaxValue Mask off */
192 #define NB_SYN_PTR_ADJ_POS 12            /* NbsynPtrAdj bit shift */
193 #define NB_SYN_PTR_ADJ_MASK (0x7 << NB_SYN_PTR_ADJ_POS)  /* NbsynPtrAdj bit mask */
194
195 #define PRCT_INFO 0x1fc         /* Product Info Register */
196 #define DUAL_PLANE_ONLY_MASK 0x80000000  /* F3x1FC[DualPlaneOnly] */
197 #define UNI_NB_FID_BIT 2                /* UniNbFid bit position */
198 #define UNI_NB_VID_BIT 7                /* UniNbVid bit position */
199 #define SPLT_NB_FID_OFFSET 14           /* SpltNbFidOffset value bit position */
200 #define SPLT_NB_VID_OFFSET 17           /* SpltNbVidOffset value bit position */
201 #define NB_CV_UPDATE 0x01               /* F3x1FC[NbCofVidUpdated] bit mask */
202 #define NB_VID_UPDATE_ALL 0x02          /* F3x1FC[NbVidUpdatedAll] bit mask */
203 #define C_FID_DID_M_OFF  0xfffffe00     /* mask off Core FID & DID */
204
205 #define CPB_MASK 0x00000020             /* core performance
206                                            boost. CPUID Fn8000 0007 edx */
207 #define NC_MASK 0x000000FF              /* number of cores - 1. CPUID
208                                            Fn8000 0008 ecx */
209 #define PW_CTL_MISC 0x0a0               /* Power Control Miscellaneous Register */
210 #define COF_VID_PROG_BIT 0x80000000     /* CofVidProg bit. 0= unfused part */
211 #define DUAL_VDD_BIT 0x40000000 /* DualVdd bit. */
212 #define NB_COFVID_UPDATE_BIT 0x01       /* NbCOFVIDUpdated bit */
213 #define PVI_MODE 0x100                  /* PviMode bit mask */
214 #define VID_SLAM_OFF 0x0dfffffff        /* set VidSlamMode OFF */
215 #define VID_SLAM_ON 0x020000000 /* set VidSlamMode ON */
216 #define NB_PSTATE_FORCE_ON 0x010000000 /* set Northbridge P-state
217                                           force on next LDTSTOP
218                                           assertion on, in F3xA0 */
219 #define BP_INS_TRI_EN_ON 0x00004000   /* breakpoint pins tristate
220                                          enable in F3xA0 */
221 #define PLLLOCK_OFF 0x0ffffc7ff /* PllLockTime Mask OFF */
222 #define PLLLOCK_DFT 0x00001800          /* PllLockTime default value = 011b */
223 #define PLLLOCK_DFT_L 0x00002800        /* PllLockTime long value = 101b */
224
225 #define SVI_HIGH_FREQ_ON 0x00000200     /* F3xA0[SviHighFreqSel] for
226                                            3.4 MHz SVI in rev. C3 */
227
228 /* P-state Specification register base in PCI space */
229 #define PS_SPEC_REG 0x1e0               /* PS Spec register base address */
230 #define PCI_REG_LEN 4                   /* PCI register length */
231 #define NB_DID_MASK 0x10000             /* NbDid bit mask */
232 #define NB_DID_2 2                      /* NbDid = 2 */
233 #define NB_DID_1 1                      /* NbDid = 1 */
234 #define SPEC_PWRDIV_M_ON 0x06000000     /* PwrDiv mask on */
235 #define SPEC_PWRVAL_M_ON 0x01e00000     /* PwrValue mask on */
236 #define SPEC_PWRDIV_SHFT 25             /* PwrDiv shift */
237 #define SPEC_PWRVAL_SHFT 17             /* PwrValue shift */
238
239 /* F4x1F4 Northbridge P-state spec register */
240 #define NB_PS_SPEC_REG 0x1f4            /* Nb PS spec reg */
241
242 /* F3x1F0 Product Information Register */
243 #define NB_PSTATE_MASK 0x00070000 /* NbPstate for CPU rev C3 */
244
245 /* F3x1FC Product Information Register */
246 #define NB_COF_VID_UPDATE_MASK 1 /* for CPU rev <= C */
247 #define SINGLE_PLANE_NB_FID_MASK 0x007c/* for CPU rev <= C */
248 #define SINGLE_PLANE_NB_FID_SHIFT 2/* for CPU rev <= C */
249 #define SINGLE_PLANE_NB_VID_MASK 0x3f80/* for CPU rev <= C */
250 #define SINGLE_PLANE_NB_VID_SHIFT 7/* for CPU rev <= C */
251
252 #define DUAL_PLANE_NB_FID_OFF_MASK 0x001c000/* for CPU rev <= C */
253 #define DUAL_PLANE_NB_FID_SHIFT 14/* for CPU rev <= C */
254 #define DUAL_PLANE_NB_VID_OFF_MASK 0x3e0000/* for CPU rev <= C */
255 #define DUAL_PLANE_NB_VID_SHIFT 17/* for CPU rev <= C */
256
257
258 #define NM_PS_REG 5                     /* number of P-state MSR registers */
259
260 /* sFidVidInit.outFlags defines */
261 #define PWR_CK_OK 0                     /* System board check OK */
262 #define PWR_CK_NO_PS 1                  /* All P-state registers are over
263                                            the limit */
264
265 /* bit mask */
266 #define BIT_MASK_1 0x1
267 #define BIT_MASK_2 0x3
268 #define BIT_MASK_3 0x7
269 #define BIT_MASK_4 0x0f
270 #define BIT_MASK_5 0x1f
271 #define BIT_MASK_6 0x3f
272 #define BIT_MASK_7 0x7f
273 #define BIT_MASK_8 0x0ff
274
275 /* VID Code */
276 #define VID_1_100V 0x12         /* 1.100V */
277 #define VID_1_175V 0x1E         /* 1.175V */
278
279
280 /* Nb Fid Code */
281 #define NB_FID_800M 0x00                /* 800MHz */
282
283 /* Nb DID Code */
284 #define NB_DID_0 0
285 #define NB_DID_1 1
286
287 /* GH Logical ID */
288
289 #define GH_REV_A2 0x4                   /* GH Rev A2 logical ID, Upper half */
290
291
292 #define TSC_MSR 0x10
293 #define CUR_PSTATE_MSR 0xc0010063
294
295 #define  WAIT_PSTATE_TIMEOUT 80000000  /* 0.1 s , unit : 1.25 ns */
296
297 #endif