blob: d7b68367861d1b8b5a4675b590beeb93b034d09b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk67ff36c2002-11-19 23:01:07 +00002/*
3 * (C) Copyright 2002
Albert ARIBAUD60fbc8d2011-08-04 18:45:45 +02004 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
wdenk67ff36c2002-11-19 23:01:07 +00005 */
6
7#ifndef __ASM_PROCESSOR_H_
8#define __ASM_PROCESSOR_H_ 1
Graeme Russ25391d12011-02-12 15:11:30 +11009
Simon Glass9fc71c12014-11-14 20:56:29 -070010#define X86_GDT_ENTRY_SIZE 8
Graeme Russ391bb952011-12-31 10:24:36 +110011
Simon Glass9fc71c12014-11-14 20:56:29 -070012#define X86_GDT_ENTRY_NULL 0
13#define X86_GDT_ENTRY_UNUSED 1
14#define X86_GDT_ENTRY_32BIT_CS 2
15#define X86_GDT_ENTRY_32BIT_DS 3
16#define X86_GDT_ENTRY_32BIT_FS 4
17#define X86_GDT_ENTRY_16BIT_CS 5
18#define X86_GDT_ENTRY_16BIT_DS 6
19#define X86_GDT_ENTRY_16BIT_FLAT_CS 7
20#define X86_GDT_ENTRY_16BIT_FLAT_DS 8
21#define X86_GDT_NUM_ENTRIES 9
Graeme Russ391bb952011-12-31 10:24:36 +110022
23#define X86_GDT_SIZE (X86_GDT_NUM_ENTRIES * X86_GDT_ENTRY_SIZE)
Graeme Russ25391d12011-02-12 15:11:30 +110024
Simon Glassa9a44262015-04-29 22:25:59 -060025/* Length of the public header on Intel microcode blobs */
26#define UCODE_HEADER_LEN 0x30
27
Simon Glasse0e7bd02015-04-28 20:11:29 -060028/*
29 * This register is documented in (for example) the Intel Atom Processor E3800
30 * Product Family Datasheet in "PCU - Power Management Controller (PMC)".
31 *
32 * RST_CNT: Reset Control Register (RST_CNT) Offset cf9.
33 *
34 * The naming follows Intel's naming.
35 */
Simon Glass8b73e9f2016-03-11 22:06:59 -070036#define IO_PORT_RESET 0xcf9
Simon Glassf226c412014-11-12 22:42:19 -070037
Simon Glass8f963e12019-12-06 21:42:25 -070038#define SYS_RST (1 << 1) /* 0 for soft reset, 1 for hard reset */
39#define RST_CPU (1 << 2) /* initiate reset */
40#define FULL_RST (1 << 3) /* full power cycle */
41
42#ifndef __ASSEMBLY__
Simon Glasse0e7bd02015-04-28 20:11:29 -060043
Simon Glassbe36df62014-11-10 18:00:24 -070044static inline __attribute__((always_inline)) void cpu_hlt(void)
45{
46 asm("hlt");
47}
48
49static inline ulong cpu_get_sp(void)
50{
51 ulong result;
52
53 asm volatile(
54 "mov %%esp, %%eax"
55 : "=a" (result));
56 return result;
57}
58
59#endif /* __ASSEMBLY__ */
60
wdenk67ff36c2002-11-19 23:01:07 +000061#endif