Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2016 Google, Inc |
| 4 | * |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 5 | * Based on code from coreboot src/soc/intel/broadwell/cpu.c |
| 6 | */ |
| 7 | |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 8 | #include <dm.h> |
| 9 | #include <cpu.h> |
Simon Glass | fc55736 | 2022-03-04 08:43:05 -0700 | [diff] [blame] | 10 | #include <event.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | d67d791 | 2023-09-07 09:58:18 -0600 | [diff] [blame] | 13 | #include <spl.h> |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 14 | #include <asm/cpu.h> |
| 15 | #include <asm/cpu_x86.h> |
| 16 | #include <asm/cpu_common.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 18 | #include <asm/intel_regs.h> |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 19 | #include <asm/lpc_common.h> |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 20 | #include <asm/msr.h> |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 21 | #include <asm/pci.h> |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 22 | #include <asm/post.h> |
| 23 | #include <asm/turbo.h> |
| 24 | #include <asm/arch/cpu.h> |
| 25 | #include <asm/arch/pch.h> |
| 26 | #include <asm/arch/rcb.h> |
| 27 | |
Simon Glass | b8357c1 | 2023-08-21 21:16:56 -0600 | [diff] [blame] | 28 | static int broadwell_init_cpu(void) |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 29 | { |
| 30 | struct udevice *dev; |
| 31 | int ret; |
| 32 | |
| 33 | /* Start up the LPC so we have serial */ |
Michal Suchanek | ac12a2f | 2022-10-12 21:57:59 +0200 | [diff] [blame] | 34 | ret = uclass_first_device_err(UCLASS_LPC, &dev); |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 35 | if (ret) |
| 36 | return ret; |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 37 | ret = cpu_set_flex_ratio_to_tdp_nominal(); |
| 38 | if (ret) |
| 39 | return ret; |
| 40 | |
| 41 | return 0; |
| 42 | } |
Simon Glass | b8357c1 | 2023-08-21 21:16:56 -0600 | [diff] [blame] | 43 | EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_F, broadwell_init_cpu); |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 44 | |
| 45 | void set_max_freq(void) |
| 46 | { |
Simon Glass | b12689d | 2019-09-25 08:56:38 -0600 | [diff] [blame] | 47 | msr_t msr, perf_ctl; |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 48 | |
Simon Glass | b12689d | 2019-09-25 08:56:38 -0600 | [diff] [blame] | 49 | if (cpu_config_tdp_levels()) { |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 50 | /* Set to nominal TDP ratio */ |
| 51 | msr = msr_read(MSR_CONFIG_TDP_NOMINAL); |
| 52 | perf_ctl.lo = (msr.lo & 0xff) << 8; |
| 53 | } else { |
| 54 | /* Platform Info bits 15:8 give max ratio */ |
| 55 | msr = msr_read(MSR_PLATFORM_INFO); |
| 56 | perf_ctl.lo = msr.lo & 0xff00; |
| 57 | } |
| 58 | |
| 59 | perf_ctl.hi = 0; |
Simon Glass | 76ae027 | 2019-09-25 08:56:35 -0600 | [diff] [blame] | 60 | msr_write(MSR_IA32_PERF_CTL, perf_ctl); |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 61 | |
| 62 | debug("CPU: frequency set to %d MHz\n", |
Simon Glass | 4347d83 | 2019-09-25 08:56:37 -0600 | [diff] [blame] | 63 | ((perf_ctl.lo >> 8) & 0xff) * INTEL_BCLK_MHZ); |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | int arch_cpu_init(void) |
| 67 | { |
| 68 | post_code(POST_CPU_INIT); |
| 69 | |
Simon Glass | 42bf3b9 | 2019-09-25 08:11:40 -0600 | [diff] [blame] | 70 | /* Do a mini-init if TPL has already done the full init */ |
Simon Glass | d67d791 | 2023-09-07 09:58:18 -0600 | [diff] [blame] | 71 | if (IS_ENABLED(CONFIG_TPL) && spl_phase() != PHASE_TPL) |
| 72 | return x86_cpu_reinit_f(); |
| 73 | else |
| 74 | return x86_cpu_init_f(); |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Simon Glass | ee7c36f | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 77 | int checkcpu(void) |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 78 | { |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 79 | int ret; |
| 80 | |
| 81 | set_max_freq(); |
| 82 | |
| 83 | ret = cpu_common_init(); |
| 84 | if (ret) |
| 85 | return ret; |
| 86 | gd->arch.pei_boot_mode = PEI_BOOT_NONE; |
| 87 | |
Simon Glass | ee7c36f | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | int print_cpuinfo(void) |
| 92 | { |
| 93 | char processor_name[CPU_MAX_NAME_LEN]; |
| 94 | const char *name; |
| 95 | |
Simon Glass | 71606de | 2016-03-11 22:07:18 -0700 | [diff] [blame] | 96 | /* Print processor name */ |
| 97 | name = cpu_get_name(processor_name); |
| 98 | printf("CPU: %s\n", name); |
| 99 | |
| 100 | return 0; |
| 101 | } |
| 102 | |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 103 | void board_debug_uart_init(void) |
| 104 | { |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 105 | /* com1 / com2 decode range */ |
Simon Glass | a546458 | 2019-08-31 21:23:18 -0600 | [diff] [blame] | 106 | pci_x86_write_config(PCH_DEV_LPC, LPC_IO_DEC, 1 << 4, PCI_SIZE_16); |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 107 | |
Simon Glass | a546458 | 2019-08-31 21:23:18 -0600 | [diff] [blame] | 108 | pci_x86_write_config(PCH_DEV_LPC, LPC_EN, COMA_LPC_EN, PCI_SIZE_16); |
Simon Glass | 412f11b | 2019-04-25 21:58:50 -0600 | [diff] [blame] | 109 | } |