wdenk | 67ff36c | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 3 | * Daniel Engström, Omicron Ceti AB, daniel@omicron.se |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 67ff36c | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_PROCESSOR_H_ |
| 9 | #define __ASM_PROCESSOR_H_ 1 |
Graeme Russ | 25391d1 | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 10 | |
Simon Glass | 9fc71c1 | 2014-11-14 20:56:29 -0700 | [diff] [blame] | 11 | #define X86_GDT_ENTRY_SIZE 8 |
Graeme Russ | 391bb95 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 12 | |
Simon Glass | 9fc71c1 | 2014-11-14 20:56:29 -0700 | [diff] [blame] | 13 | #define X86_GDT_ENTRY_NULL 0 |
| 14 | #define X86_GDT_ENTRY_UNUSED 1 |
| 15 | #define X86_GDT_ENTRY_32BIT_CS 2 |
| 16 | #define X86_GDT_ENTRY_32BIT_DS 3 |
| 17 | #define X86_GDT_ENTRY_32BIT_FS 4 |
| 18 | #define X86_GDT_ENTRY_16BIT_CS 5 |
| 19 | #define X86_GDT_ENTRY_16BIT_DS 6 |
| 20 | #define X86_GDT_ENTRY_16BIT_FLAT_CS 7 |
| 21 | #define X86_GDT_ENTRY_16BIT_FLAT_DS 8 |
| 22 | #define X86_GDT_NUM_ENTRIES 9 |
Graeme Russ | 391bb95 | 2011-12-31 10:24:36 +1100 | [diff] [blame] | 23 | |
| 24 | #define X86_GDT_SIZE (X86_GDT_NUM_ENTRIES * X86_GDT_ENTRY_SIZE) |
Graeme Russ | 25391d1 | 2011-02-12 15:11:30 +1100 | [diff] [blame] | 25 | |
Simon Glass | be36df6 | 2014-11-10 18:00:24 -0700 | [diff] [blame] | 26 | #ifndef __ASSEMBLY__ |
| 27 | |
Simon Glass | f226c41 | 2014-11-12 22:42:19 -0700 | [diff] [blame] | 28 | #define PORT_RESET 0xcf9 |
| 29 | |
Simon Glass | be36df6 | 2014-11-10 18:00:24 -0700 | [diff] [blame] | 30 | static inline __attribute__((always_inline)) void cpu_hlt(void) |
| 31 | { |
| 32 | asm("hlt"); |
| 33 | } |
| 34 | |
| 35 | static inline ulong cpu_get_sp(void) |
| 36 | { |
| 37 | ulong result; |
| 38 | |
| 39 | asm volatile( |
| 40 | "mov %%esp, %%eax" |
| 41 | : "=a" (result)); |
| 42 | return result; |
| 43 | } |
| 44 | |
| 45 | #endif /* __ASSEMBLY__ */ |
| 46 | |
wdenk | 67ff36c | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 47 | #endif |