Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 1 | /* |
| 2 | * From Coreboot file of same name |
| 3 | * |
| 4 | * Copyright (C) 2007-2009 coresystems GmbH |
| 5 | * Copyright (C) 2011 The Chromium Authors |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0 |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 11 | #include <cpu.h> |
| 12 | #include <dm.h> |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 13 | #include <fdtdec.h> |
| 14 | #include <malloc.h> |
| 15 | #include <asm/acpi.h> |
| 16 | #include <asm/cpu.h> |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 17 | #include <asm/cpu_x86.h> |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 18 | #include <asm/lapic.h> |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 19 | #include <asm/msr.h> |
Simon Glass | 9d95358 | 2016-03-06 19:28:04 -0700 | [diff] [blame^] | 20 | #include <asm/msr-index.h> |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 21 | #include <asm/mtrr.h> |
| 22 | #include <asm/processor.h> |
| 23 | #include <asm/speedstep.h> |
| 24 | #include <asm/turbo.h> |
Bin Meng | c9dea01 | 2015-06-17 11:15:38 +0800 | [diff] [blame] | 25 | #include <asm/arch/bd82x6x.h> |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 26 | #include <asm/arch/model_206ax.h> |
| 27 | |
| 28 | static void enable_vmx(void) |
| 29 | { |
| 30 | struct cpuid_result regs; |
| 31 | #ifdef CONFIG_ENABLE_VMX |
| 32 | int enable = true; |
| 33 | #else |
| 34 | int enable = false; |
| 35 | #endif |
| 36 | msr_t msr; |
| 37 | |
| 38 | regs = cpuid(1); |
| 39 | /* Check that the VMX is supported before reading or writing the MSR. */ |
| 40 | if (!((regs.ecx & CPUID_VMX) || (regs.ecx & CPUID_SMX))) |
| 41 | return; |
| 42 | |
| 43 | msr = msr_read(MSR_IA32_FEATURE_CONTROL); |
| 44 | |
| 45 | if (msr.lo & (1 << 0)) { |
| 46 | debug("VMX is locked, so %s will do nothing\n", __func__); |
| 47 | /* VMX locked. If we set it again we get an illegal |
| 48 | * instruction |
| 49 | */ |
| 50 | return; |
| 51 | } |
| 52 | |
| 53 | /* The IA32_FEATURE_CONTROL MSR may initialize with random values. |
| 54 | * It must be cleared regardless of VMX config setting. |
| 55 | */ |
| 56 | msr.hi = 0; |
| 57 | msr.lo = 0; |
| 58 | |
| 59 | debug("%s VMX\n", enable ? "Enabling" : "Disabling"); |
| 60 | |
| 61 | /* |
| 62 | * Even though the Intel manual says you must set the lock bit in |
| 63 | * addition to the VMX bit in order for VMX to work, it is incorrect. |
| 64 | * Thus we leave it unlocked for the OS to manage things itself. |
| 65 | * This is good for a few reasons: |
| 66 | * - No need to reflash the bios just to toggle the lock bit. |
| 67 | * - The VMX bits really really should match each other across cores, |
| 68 | * so hard locking it on one while another has the opposite setting |
| 69 | * can easily lead to crashes as code using VMX migrates between |
| 70 | * them. |
| 71 | * - Vendors that want to "upsell" from a bios that disables+locks to |
| 72 | * one that doesn't is sleazy. |
| 73 | * By leaving this to the OS (e.g. Linux), people can do exactly what |
| 74 | * they want on the fly, and do it correctly (e.g. across multiple |
| 75 | * cores). |
| 76 | */ |
| 77 | if (enable) { |
| 78 | msr.lo |= (1 << 2); |
| 79 | if (regs.ecx & CPUID_SMX) |
| 80 | msr.lo |= (1 << 1); |
| 81 | } |
| 82 | |
| 83 | msr_write(MSR_IA32_FEATURE_CONTROL, msr); |
| 84 | } |
| 85 | |
| 86 | /* Convert time in seconds to POWER_LIMIT_1_TIME MSR value */ |
| 87 | static const u8 power_limit_time_sec_to_msr[] = { |
| 88 | [0] = 0x00, |
| 89 | [1] = 0x0a, |
| 90 | [2] = 0x0b, |
| 91 | [3] = 0x4b, |
| 92 | [4] = 0x0c, |
| 93 | [5] = 0x2c, |
| 94 | [6] = 0x4c, |
| 95 | [7] = 0x6c, |
| 96 | [8] = 0x0d, |
| 97 | [10] = 0x2d, |
| 98 | [12] = 0x4d, |
| 99 | [14] = 0x6d, |
| 100 | [16] = 0x0e, |
| 101 | [20] = 0x2e, |
| 102 | [24] = 0x4e, |
| 103 | [28] = 0x6e, |
| 104 | [32] = 0x0f, |
| 105 | [40] = 0x2f, |
| 106 | [48] = 0x4f, |
| 107 | [56] = 0x6f, |
| 108 | [64] = 0x10, |
| 109 | [80] = 0x30, |
| 110 | [96] = 0x50, |
| 111 | [112] = 0x70, |
| 112 | [128] = 0x11, |
| 113 | }; |
| 114 | |
| 115 | /* Convert POWER_LIMIT_1_TIME MSR value to seconds */ |
| 116 | static const u8 power_limit_time_msr_to_sec[] = { |
| 117 | [0x00] = 0, |
| 118 | [0x0a] = 1, |
| 119 | [0x0b] = 2, |
| 120 | [0x4b] = 3, |
| 121 | [0x0c] = 4, |
| 122 | [0x2c] = 5, |
| 123 | [0x4c] = 6, |
| 124 | [0x6c] = 7, |
| 125 | [0x0d] = 8, |
| 126 | [0x2d] = 10, |
| 127 | [0x4d] = 12, |
| 128 | [0x6d] = 14, |
| 129 | [0x0e] = 16, |
| 130 | [0x2e] = 20, |
| 131 | [0x4e] = 24, |
| 132 | [0x6e] = 28, |
| 133 | [0x0f] = 32, |
| 134 | [0x2f] = 40, |
| 135 | [0x4f] = 48, |
| 136 | [0x6f] = 56, |
| 137 | [0x10] = 64, |
| 138 | [0x30] = 80, |
| 139 | [0x50] = 96, |
| 140 | [0x70] = 112, |
| 141 | [0x11] = 128, |
| 142 | }; |
| 143 | |
| 144 | int cpu_config_tdp_levels(void) |
| 145 | { |
| 146 | struct cpuid_result result; |
| 147 | msr_t platform_info; |
| 148 | |
| 149 | /* Minimum CPU revision */ |
| 150 | result = cpuid(1); |
| 151 | if (result.eax < IVB_CONFIG_TDP_MIN_CPUID) |
| 152 | return 0; |
| 153 | |
| 154 | /* Bits 34:33 indicate how many levels supported */ |
| 155 | platform_info = msr_read(MSR_PLATFORM_INFO); |
| 156 | return (platform_info.hi >> 1) & 3; |
| 157 | } |
| 158 | |
| 159 | /* |
| 160 | * Configure processor power limits if possible |
| 161 | * This must be done AFTER set of BIOS_RESET_CPL |
| 162 | */ |
| 163 | void set_power_limits(u8 power_limit_1_time) |
| 164 | { |
| 165 | msr_t msr = msr_read(MSR_PLATFORM_INFO); |
| 166 | msr_t limit; |
| 167 | unsigned power_unit; |
| 168 | unsigned tdp, min_power, max_power, max_time; |
| 169 | u8 power_limit_1_val; |
| 170 | |
| 171 | if (power_limit_1_time > ARRAY_SIZE(power_limit_time_sec_to_msr)) |
| 172 | return; |
| 173 | |
| 174 | if (!(msr.lo & PLATFORM_INFO_SET_TDP)) |
| 175 | return; |
| 176 | |
| 177 | /* Get units */ |
| 178 | msr = msr_read(MSR_PKG_POWER_SKU_UNIT); |
| 179 | power_unit = 2 << ((msr.lo & 0xf) - 1); |
| 180 | |
| 181 | /* Get power defaults for this SKU */ |
| 182 | msr = msr_read(MSR_PKG_POWER_SKU); |
| 183 | tdp = msr.lo & 0x7fff; |
| 184 | min_power = (msr.lo >> 16) & 0x7fff; |
| 185 | max_power = msr.hi & 0x7fff; |
| 186 | max_time = (msr.hi >> 16) & 0x7f; |
| 187 | |
| 188 | debug("CPU TDP: %u Watts\n", tdp / power_unit); |
| 189 | |
| 190 | if (power_limit_time_msr_to_sec[max_time] > power_limit_1_time) |
| 191 | power_limit_1_time = power_limit_time_msr_to_sec[max_time]; |
| 192 | |
| 193 | if (min_power > 0 && tdp < min_power) |
| 194 | tdp = min_power; |
| 195 | |
| 196 | if (max_power > 0 && tdp > max_power) |
| 197 | tdp = max_power; |
| 198 | |
| 199 | power_limit_1_val = power_limit_time_sec_to_msr[power_limit_1_time]; |
| 200 | |
| 201 | /* Set long term power limit to TDP */ |
| 202 | limit.lo = 0; |
| 203 | limit.lo |= tdp & PKG_POWER_LIMIT_MASK; |
| 204 | limit.lo |= PKG_POWER_LIMIT_EN; |
| 205 | limit.lo |= (power_limit_1_val & PKG_POWER_LIMIT_TIME_MASK) << |
| 206 | PKG_POWER_LIMIT_TIME_SHIFT; |
| 207 | |
| 208 | /* Set short term power limit to 1.25 * TDP */ |
| 209 | limit.hi = 0; |
| 210 | limit.hi |= ((tdp * 125) / 100) & PKG_POWER_LIMIT_MASK; |
| 211 | limit.hi |= PKG_POWER_LIMIT_EN; |
| 212 | /* Power limit 2 time is only programmable on SNB EP/EX */ |
| 213 | |
| 214 | msr_write(MSR_PKG_POWER_LIMIT, limit); |
| 215 | |
| 216 | /* Use nominal TDP values for CPUs with configurable TDP */ |
| 217 | if (cpu_config_tdp_levels()) { |
| 218 | msr = msr_read(MSR_CONFIG_TDP_NOMINAL); |
| 219 | limit.hi = 0; |
| 220 | limit.lo = msr.lo & 0xff; |
| 221 | msr_write(MSR_TURBO_ACTIVATION_RATIO, limit); |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | static void configure_c_states(void) |
| 226 | { |
| 227 | struct cpuid_result result; |
| 228 | msr_t msr; |
| 229 | |
| 230 | msr = msr_read(MSR_PMG_CST_CONFIG_CTL); |
| 231 | msr.lo |= (1 << 28); /* C1 Auto Undemotion Enable */ |
| 232 | msr.lo |= (1 << 27); /* C3 Auto Undemotion Enable */ |
| 233 | msr.lo |= (1 << 26); /* C1 Auto Demotion Enable */ |
| 234 | msr.lo |= (1 << 25); /* C3 Auto Demotion Enable */ |
| 235 | msr.lo &= ~(1 << 10); /* Disable IO MWAIT redirection */ |
| 236 | msr.lo |= 7; /* No package C-state limit */ |
| 237 | msr_write(MSR_PMG_CST_CONFIG_CTL, msr); |
| 238 | |
| 239 | msr = msr_read(MSR_PMG_IO_CAPTURE_ADR); |
| 240 | msr.lo &= ~0x7ffff; |
| 241 | msr.lo |= (PMB0_BASE + 4); /* LVL_2 base address */ |
| 242 | msr.lo |= (2 << 16); /* CST Range: C7 is max C-state */ |
| 243 | msr_write(MSR_PMG_IO_CAPTURE_ADR, msr); |
| 244 | |
| 245 | msr = msr_read(MSR_MISC_PWR_MGMT); |
| 246 | msr.lo &= ~(1 << 0); /* Enable P-state HW_ALL coordination */ |
| 247 | msr_write(MSR_MISC_PWR_MGMT, msr); |
| 248 | |
| 249 | msr = msr_read(MSR_POWER_CTL); |
| 250 | msr.lo |= (1 << 18); /* Enable Energy Perf Bias MSR 0x1b0 */ |
| 251 | msr.lo |= (1 << 1); /* C1E Enable */ |
| 252 | msr.lo |= (1 << 0); /* Bi-directional PROCHOT# */ |
| 253 | msr_write(MSR_POWER_CTL, msr); |
| 254 | |
| 255 | /* C3 Interrupt Response Time Limit */ |
| 256 | msr.hi = 0; |
| 257 | msr.lo = IRTL_VALID | IRTL_1024_NS | 0x50; |
| 258 | msr_write(MSR_PKGC3_IRTL, msr); |
| 259 | |
| 260 | /* C6 Interrupt Response Time Limit */ |
| 261 | msr.hi = 0; |
| 262 | msr.lo = IRTL_VALID | IRTL_1024_NS | 0x68; |
| 263 | msr_write(MSR_PKGC6_IRTL, msr); |
| 264 | |
| 265 | /* C7 Interrupt Response Time Limit */ |
| 266 | msr.hi = 0; |
| 267 | msr.lo = IRTL_VALID | IRTL_1024_NS | 0x6D; |
| 268 | msr_write(MSR_PKGC7_IRTL, msr); |
| 269 | |
| 270 | /* Primary Plane Current Limit */ |
| 271 | msr = msr_read(MSR_PP0_CURRENT_CONFIG); |
| 272 | msr.lo &= ~0x1fff; |
| 273 | msr.lo |= PP0_CURRENT_LIMIT; |
| 274 | msr_write(MSR_PP0_CURRENT_CONFIG, msr); |
| 275 | |
| 276 | /* Secondary Plane Current Limit */ |
| 277 | msr = msr_read(MSR_PP1_CURRENT_CONFIG); |
| 278 | msr.lo &= ~0x1fff; |
| 279 | result = cpuid(1); |
| 280 | if (result.eax >= 0x30600) |
| 281 | msr.lo |= PP1_CURRENT_LIMIT_IVB; |
| 282 | else |
| 283 | msr.lo |= PP1_CURRENT_LIMIT_SNB; |
| 284 | msr_write(MSR_PP1_CURRENT_CONFIG, msr); |
| 285 | } |
| 286 | |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 287 | static int configure_thermal_target(struct udevice *dev) |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 288 | { |
| 289 | int tcc_offset; |
| 290 | msr_t msr; |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 291 | |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 292 | tcc_offset = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "tcc-offset", |
| 293 | 0); |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 294 | |
| 295 | /* Set TCC activaiton offset if supported */ |
| 296 | msr = msr_read(MSR_PLATFORM_INFO); |
| 297 | if ((msr.lo & (1 << 30)) && tcc_offset) { |
| 298 | msr = msr_read(MSR_TEMPERATURE_TARGET); |
| 299 | msr.lo &= ~(0xf << 24); /* Bits 27:24 */ |
| 300 | msr.lo |= (tcc_offset & 0xf) << 24; |
| 301 | msr_write(MSR_TEMPERATURE_TARGET, msr); |
| 302 | } |
| 303 | |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | static void configure_misc(void) |
| 308 | { |
| 309 | msr_t msr; |
| 310 | |
| 311 | msr = msr_read(IA32_MISC_ENABLE); |
| 312 | msr.lo |= (1 << 0); /* Fast String enable */ |
| 313 | msr.lo |= (1 << 3); /* TM1/TM2/EMTTM enable */ |
| 314 | msr.lo |= (1 << 16); /* Enhanced SpeedStep Enable */ |
| 315 | msr_write(IA32_MISC_ENABLE, msr); |
| 316 | |
| 317 | /* Disable Thermal interrupts */ |
| 318 | msr.lo = 0; |
| 319 | msr.hi = 0; |
| 320 | msr_write(IA32_THERM_INTERRUPT, msr); |
| 321 | |
| 322 | /* Enable package critical interrupt only */ |
| 323 | msr.lo = 1 << 4; |
| 324 | msr.hi = 0; |
| 325 | msr_write(IA32_PACKAGE_THERM_INTERRUPT, msr); |
| 326 | } |
| 327 | |
| 328 | static void enable_lapic_tpr(void) |
| 329 | { |
| 330 | msr_t msr; |
| 331 | |
| 332 | msr = msr_read(MSR_PIC_MSG_CONTROL); |
| 333 | msr.lo &= ~(1 << 10); /* Enable APIC TPR updates */ |
| 334 | msr_write(MSR_PIC_MSG_CONTROL, msr); |
| 335 | } |
| 336 | |
| 337 | static void configure_dca_cap(void) |
| 338 | { |
| 339 | struct cpuid_result cpuid_regs; |
| 340 | msr_t msr; |
| 341 | |
| 342 | /* Check feature flag in CPUID.(EAX=1):ECX[18]==1 */ |
| 343 | cpuid_regs = cpuid(1); |
| 344 | if (cpuid_regs.ecx & (1 << 18)) { |
| 345 | msr = msr_read(IA32_PLATFORM_DCA_CAP); |
| 346 | msr.lo |= 1; |
| 347 | msr_write(IA32_PLATFORM_DCA_CAP, msr); |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | static void set_max_ratio(void) |
| 352 | { |
| 353 | msr_t msr, perf_ctl; |
| 354 | |
| 355 | perf_ctl.hi = 0; |
| 356 | |
| 357 | /* Check for configurable TDP option */ |
| 358 | if (cpu_config_tdp_levels()) { |
| 359 | /* Set to nominal TDP ratio */ |
| 360 | msr = msr_read(MSR_CONFIG_TDP_NOMINAL); |
| 361 | perf_ctl.lo = (msr.lo & 0xff) << 8; |
| 362 | } else { |
| 363 | /* Platform Info bits 15:8 give max ratio */ |
| 364 | msr = msr_read(MSR_PLATFORM_INFO); |
| 365 | perf_ctl.lo = msr.lo & 0xff00; |
| 366 | } |
Simon Glass | 9d95358 | 2016-03-06 19:28:04 -0700 | [diff] [blame^] | 367 | msr_write(MSR_IA32_PERF_CTL, perf_ctl); |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 368 | |
| 369 | debug("model_x06ax: frequency set to %d\n", |
| 370 | ((perf_ctl.lo >> 8) & 0xff) * SANDYBRIDGE_BCLK); |
| 371 | } |
| 372 | |
| 373 | static void set_energy_perf_bias(u8 policy) |
| 374 | { |
| 375 | msr_t msr; |
| 376 | |
| 377 | /* Energy Policy is bits 3:0 */ |
| 378 | msr = msr_read(IA32_ENERGY_PERFORMANCE_BIAS); |
| 379 | msr.lo &= ~0xf; |
| 380 | msr.lo |= policy & 0xf; |
| 381 | msr_write(IA32_ENERGY_PERFORMANCE_BIAS, msr); |
| 382 | |
| 383 | debug("model_x06ax: energy policy set to %u\n", policy); |
| 384 | } |
| 385 | |
| 386 | static void configure_mca(void) |
| 387 | { |
| 388 | msr_t msr; |
| 389 | int i; |
| 390 | |
| 391 | msr.lo = 0; |
| 392 | msr.hi = 0; |
| 393 | /* This should only be done on a cold boot */ |
| 394 | for (i = 0; i < 7; i++) |
| 395 | msr_write(IA32_MC0_STATUS + (i * 4), msr); |
| 396 | } |
| 397 | |
| 398 | #if CONFIG_USBDEBUG |
| 399 | static unsigned ehci_debug_addr; |
| 400 | #endif |
| 401 | |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 402 | static int model_206ax_init(struct udevice *dev) |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 403 | { |
| 404 | int ret; |
| 405 | |
| 406 | /* Clear out pending MCEs */ |
| 407 | configure_mca(); |
| 408 | |
| 409 | #if CONFIG_USBDEBUG |
| 410 | /* Is this caution really needed? */ |
| 411 | if (!ehci_debug_addr) |
| 412 | ehci_debug_addr = get_ehci_debug(); |
| 413 | set_ehci_debug(0); |
| 414 | #endif |
| 415 | |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 416 | #if CONFIG_USBDEBUG |
| 417 | set_ehci_debug(ehci_debug_addr); |
| 418 | #endif |
| 419 | |
| 420 | /* Enable the local cpu apics */ |
| 421 | enable_lapic_tpr(); |
| 422 | lapic_setup(); |
| 423 | |
| 424 | /* Enable virtualization if enabled in CMOS */ |
| 425 | enable_vmx(); |
| 426 | |
| 427 | /* Configure C States */ |
| 428 | configure_c_states(); |
| 429 | |
| 430 | /* Configure Enhanced SpeedStep and Thermal Sensors */ |
| 431 | configure_misc(); |
| 432 | |
| 433 | /* Thermal throttle activation offset */ |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 434 | ret = configure_thermal_target(dev); |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 435 | if (ret) { |
| 436 | debug("Cannot set thermal target\n"); |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 437 | return ret; |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 438 | } |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 439 | |
| 440 | /* Enable Direct Cache Access */ |
| 441 | configure_dca_cap(); |
| 442 | |
| 443 | /* Set energy policy */ |
| 444 | set_energy_perf_bias(ENERGY_POLICY_NORMAL); |
| 445 | |
| 446 | /* Set Max Ratio */ |
| 447 | set_max_ratio(); |
| 448 | |
| 449 | /* Enable Turbo */ |
| 450 | turbo_enable(); |
| 451 | |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 452 | return 0; |
| 453 | } |
| 454 | |
| 455 | static int model_206ax_get_info(struct udevice *dev, struct cpu_info *info) |
| 456 | { |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 457 | msr_t msr; |
| 458 | |
Simon Glass | 9d95358 | 2016-03-06 19:28:04 -0700 | [diff] [blame^] | 459 | msr = msr_read(MSR_IA32_PERF_CTL); |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 460 | info->cpu_freq = ((msr.lo >> 8) & 0xff) * SANDYBRIDGE_BCLK * 1000000; |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 461 | info->features = 1 << CPU_FEAT_L1_CACHE | 1 << CPU_FEAT_MMU; |
| 462 | |
| 463 | return 0; |
| 464 | } |
| 465 | |
| 466 | static int model_206ax_get_count(struct udevice *dev) |
| 467 | { |
| 468 | return 4; |
| 469 | } |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 470 | |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 471 | static int cpu_x86_model_206ax_probe(struct udevice *dev) |
| 472 | { |
Simon Glass | 5e469f3 | 2016-01-17 16:11:24 -0700 | [diff] [blame] | 473 | if (dev->seq == 0) |
Simon Glass | 0b22c97 | 2016-01-17 16:11:25 -0700 | [diff] [blame] | 474 | model_206ax_init(dev); |
Simon Glass | 5e469f3 | 2016-01-17 16:11:24 -0700 | [diff] [blame] | 475 | |
Simon Glass | cf46d37 | 2014-11-24 21:18:16 -0700 | [diff] [blame] | 476 | return 0; |
| 477 | } |
Simon Glass | b4974c4 | 2016-01-17 16:11:23 -0700 | [diff] [blame] | 478 | |
| 479 | static const struct cpu_ops cpu_x86_model_206ax_ops = { |
| 480 | .get_desc = cpu_x86_get_desc, |
| 481 | .get_info = model_206ax_get_info, |
| 482 | .get_count = model_206ax_get_count, |
| 483 | }; |
| 484 | |
| 485 | static const struct udevice_id cpu_x86_model_206ax_ids[] = { |
| 486 | { .compatible = "intel,core-gen3" }, |
| 487 | { } |
| 488 | }; |
| 489 | |
| 490 | U_BOOT_DRIVER(cpu_x86_model_206ax_drv) = { |
| 491 | .name = "cpu_x86_model_206ax", |
| 492 | .id = UCLASS_CPU, |
| 493 | .of_match = cpu_x86_model_206ax_ids, |
| 494 | .bind = cpu_x86_bind, |
| 495 | .probe = cpu_x86_model_206ax_probe, |
| 496 | .ops = &cpu_x86_model_206ax_ops, |
| 497 | }; |