summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/modes.h
blob: b33df858921cdd3921dade4b1ae7c6950d0fbc58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* SPDX-FileCopyrightText: 2009 Juergen Beisert, Pengutronix */

/**
 * @file
 * @brief Declarations to bring some light in the real/protected/flat mode darkness
 */
#ifndef _ASM_X86_MODES_H
#define _ASM_X86_MODES_H

#ifndef __ASSEMBLY__

#include <types.h>

extern uint64_t gdt[];
extern unsigned gdt_size;

#endif

/** to simplify GDT entry generation */
#define GDT_ENTRY(flags, base, limit)			\
	((((base)  & 0xff000000ULL) << (56-24)) |	\
	 (((flags) & 0x0000f0ffULL) << 40) |		\
	 (((limit) & 0x000f0000ULL) << (48-16)) |	\
	 (((base)  & 0x00ffffffULL) << 16) |		\
	 (((limit) & 0x0000ffffULL)))

/** 32 bit barebox text */
#define GDT_ENTRY_BOOT_CS	2
#define __BOOT_CS		(GDT_ENTRY_BOOT_CS * 8)

/** 32 bit barebox data */
#define GDT_ENTRY_BOOT_DS	3
#define __BOOT_DS		(GDT_ENTRY_BOOT_DS * 8)

/** 16 bit barebox text */
#define GDT_ENTRY_REAL_CS	4
#define __REAL_CS		(GDT_ENTRY_REAL_CS * 8)

/** 16 bit barebox data */
#define GDT_ENTRY_REAL_DS	5
#define __REAL_DS		(GDT_ENTRY_REAL_DS * 8)

/** Something to make others happy */
#define GDT_ENTRY_BOOT_TSS	6
#define __BOOT_TSS		(GDT_ENTRY_BOOT_TSS * 8)

#endif /* _ASM_X86_MODES_H */