2 * Copyright (c) 2014 The Chromium OS Authors.
4 * Part of this file is adapted from coreboot
5 * src/arch/x86/include/arch/cpu.h and
6 * src/arch/x86/lib/cpu.c
8 * SPDX-License-Identifier: GPL-2.0+
15 X86_VENDOR_INVALID = 0,
26 X86_VENDOR_ANY = 0xfe,
27 X86_VENDOR_UNKNOWN = 0xff
30 /* Global descriptor table (GDT) bits */
33 GDT_32BIT = 1ULL << 54,
34 GDT_LONG = 1ULL << 53,
35 GDT_PRESENT = 1ULL << 47,
36 GDT_NOTSYS = 1ULL << 44,
37 GDT_CODE = 1ULL << 43,
38 GDT_LIMIT_LOW_SHIFT = 0,
39 GDT_LIMIT_LOW_MASK = 0xffff,
40 GDT_LIMIT_HIGH_SHIFT = 48,
41 GDT_LIMIT_HIGH_MASK = 0xf,
42 GDT_BASE_LOW_SHIFT = 16,
43 GDT_BASE_LOW_MASK = 0xffff,
44 GDT_BASE_HIGH_SHIFT = 56,
45 GDT_BASE_HIGH_MASK = 0xf,
49 * System controllers in an x86 system. We mostly need to just find these and
50 * use them on PCI. At some point these might have their own uclass (e.g.
51 * UCLASS_VIDEO for the GMA device).
55 X86_SYSCON_ME, /* Intel Management Engine */
56 X86_SYSCON_GMA, /* Intel Graphics Media Accelerator */
57 X86_SYSCON_PINCONF, /* Intel x86 pin configuration */
68 * Generic CPUID function
70 static inline struct cpuid_result cpuid(int op)
72 struct cpuid_result result;
88 * Generic Extended CPUID function
90 static inline struct cpuid_result cpuid_ext(int op, unsigned ecx)
92 struct cpuid_result result;
102 : "0" (op), "2" (ecx)
108 * CPUID functions returning a single datum
110 static inline unsigned int cpuid_eax(unsigned int op)
114 __asm__("mov %%ebx, %%edi;"
119 : "ecx", "edx", "edi");
123 static inline unsigned int cpuid_ebx(unsigned int op)
125 unsigned int eax, ebx;
127 __asm__("mov %%ebx, %%edi;"
131 : "=a" (eax), "=S" (ebx)
133 : "ecx", "edx", "edi");
137 static inline unsigned int cpuid_ecx(unsigned int op)
139 unsigned int eax, ecx;
141 __asm__("mov %%ebx, %%edi;"
144 : "=a" (eax), "=c" (ecx)
150 static inline unsigned int cpuid_edx(unsigned int op)
152 unsigned int eax, edx;
154 __asm__("mov %%ebx, %%edi;"
157 : "=a" (eax), "=d" (edx)
163 /* Standard macro to see if a specific flag is changeable */
164 static inline int flag_is_changeable_p(uint32_t flag)
179 : "=&r" (f1), "=&r" (f2)
181 return ((f1^f2) & flag) != 0;
184 static inline void mfence(void)
186 __asm__ __volatile__("mfence" : : : "memory");
190 * cpu_enable_paging_pae() - Enable PAE-paging
192 * @cr3: Value to set in cr3 (PDPT or PML4T)
194 void cpu_enable_paging_pae(ulong cr3);
197 * cpu_disable_paging_pae() - Disable paging and PAE
199 void cpu_disable_paging_pae(void);
202 * cpu_has_64bit() - Check if the CPU has 64-bit support
204 * @return 1 if this CPU supports long mode (64-bit), 0 if not
206 int cpu_has_64bit(void);
209 * cpu_vendor_name() - Get CPU vendor name
211 * @vendor: CPU vendor enumeration number
213 * @return: Address to hold the CPU vendor name string
215 const char *cpu_vendor_name(int vendor);
217 #define CPU_MAX_NAME_LEN 49
220 * cpu_get_name() - Get the name of the current cpu
222 * @name: Place to put name, which must be CPU_MAX_NAME_LEN bytes including
223 * @return pointer to name, which will likely be a few bytes after the start
227 char *cpu_get_name(char *name);
230 * cpu_call64() - Jump to a 64-bit Linux kernel (internal function)
232 * The kernel is uncompressed and the 64-bit entry point is expected to be
235 * This function is used internally - see cpu_jump_to_64bit() for a more
238 * @pgtable: Address of 24KB area containing the page table
239 * @setup_base: Pointer to the setup.bin information for the kernel
240 * @target: Pointer to the start of the kernel image
242 void cpu_call64(ulong pgtable, ulong setup_base, ulong target);
245 * cpu_call32() - Jump to a 32-bit entry point
247 * @code_seg32: 32-bit code segment to use (GDT offset, e.g. 0x20)
248 * @target: Pointer to the start of the 32-bit U-Boot image/entry point
249 * @table: Pointer to start of info table to pass to U-Boot
251 void cpu_call32(ulong code_seg32, ulong target, ulong table);
254 * cpu_jump_to_64bit() - Jump to a 64-bit Linux kernel
256 * The kernel is uncompressed and the 64-bit entry point is expected to be
259 * @setup_base: Pointer to the setup.bin information for the kernel
260 * @target: Pointer to the start of the kernel image
262 int cpu_jump_to_64bit(ulong setup_base, ulong target);
265 * cpu_get_family_model() - Get the family and model for the CPU
267 * @return the CPU ID masked with 0x0fff0ff0
269 u32 cpu_get_family_model(void);
272 * cpu_get_stepping() - Get the stepping value for the CPU
274 * @return the CPU ID masked with 0xf
276 u32 cpu_get_stepping(void);
279 * cpu_run_reference_code() - Run the platform reference code
281 * Some platforms require a binary blob to be executed once SDRAM is
282 * available. This is used to set up various platform features, such as the
283 * platform controller hub (PCH). This function should be implemented by the
286 * @return 0 on success, -ve on failure
288 int cpu_run_reference_code(void);