source: mainline/kernel/arch/ia32/include/pm.h@ 3412e844

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 3412e844 was a13c6bc, checked in by Jakub Jermar <jakub@…>, 15 years ago

Fix TSS_IOMAP_SIZE.

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2004 Jakub Jermar
[f761f1eb]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[99d6fd0]29/** @addtogroup ia32
[b45c443]30 * @{
31 */
32/** @file
33 */
34
[06e1e95]35#ifndef KERN_ia32_PM_H_
36#define KERN_ia32_PM_H_
[f761f1eb]37
[99d6fd0]38#define IDT_ITEMS 64
39#define GDT_ITEMS 7
[22cf454d]40
[99d6fd0]41#define NULL_DES 0
42#define KTEXT_DES 1
43#define KDATA_DES 2
44#define UTEXT_DES 3
45#define UDATA_DES 4
46#define TSS_DES 5
47#define TLS_DES 6 /* Pointer to Thread-Local-Storage data */
[e8194664]48
49#ifdef CONFIG_FB
50
[99d6fd0]51#define VESA_INIT_SEGMENT 0x8000
52#define VESA_INIT_DES 7
53#define KTEXT32_DES KTEXT_DES
54
[e8194664]55#undef GDT_ITEMS
[99d6fd0]56#define GDT_ITEMS 8
[e8194664]57
58#endif /* CONFIG_FB */
59
[1d3d2cf]60#define GDT_SELECTOR(des) ((des) << 3)
[f761f1eb]61
[99d6fd0]62#define PL_KERNEL 0
63#define PL_USER 3
[f761f1eb]64
[99d6fd0]65#define AR_PRESENT (1 << 7)
66#define AR_DATA (2 << 3)
67#define AR_CODE (3 << 3)
68#define AR_WRITABLE (1 << 1)
[f4946de]69#define AR_INTERRUPT (0xe)
70#define AR_TRAP (0xf)
71#define AR_TSS (0x9)
[f761f1eb]72
[99d6fd0]73#define DPL_KERNEL (PL_KERNEL << 5)
74#define DPL_USER (PL_USER << 5)
[f761f1eb]75
[99d6fd0]76#define TSS_BASIC_SIZE 104
[a13c6bc]77#define TSS_IOMAP_SIZE (8 * 1024 + 1) /* 8K for bitmap + 1 terminating byte for convenience */
[f761f1eb]78
[99d6fd0]79#define IO_PORTS (64 * 1024)
[73e9b49]80
[8f2153b]81#ifndef __ASM__
82
[d99c1d2]83#include <typedefs.h>
[8f2153b]84#include <arch/context.h>
85
[99d6fd0]86typedef struct {
[7f1c620]87 uint16_t limit;
88 uint32_t base;
[99d6fd0]89} __attribute__ ((packed)) ptr_16_32_t;
[f761f1eb]90
[99d6fd0]91typedef struct {
[f761f1eb]92 unsigned limit_0_15: 16;
93 unsigned base_0_15: 16;
94 unsigned base_16_23: 8;
95 unsigned access: 8;
96 unsigned limit_16_19: 4;
97 unsigned available: 1;
98 unsigned unused: 1;
99 unsigned special: 1;
100 unsigned granularity : 1;
101 unsigned base_24_31: 8;
[99d6fd0]102} __attribute__ ((packed)) descriptor_t;
[f761f1eb]103
[99d6fd0]104typedef struct {
[f761f1eb]105 unsigned offset_0_15: 16;
106 unsigned selector: 16;
107 unsigned unused: 8;
108 unsigned access: 8;
109 unsigned offset_16_31: 16;
[99d6fd0]110} __attribute__ ((packed)) idescriptor_t;
[f761f1eb]111
[99d6fd0]112typedef struct {
[7f1c620]113 uint16_t link;
[f761f1eb]114 unsigned : 16;
[7f1c620]115 uint32_t esp0;
116 uint16_t ss0;
[f761f1eb]117 unsigned : 16;
[7f1c620]118 uint32_t esp1;
119 uint16_t ss1;
[f761f1eb]120 unsigned : 16;
[7f1c620]121 uint32_t esp2;
122 uint16_t ss2;
[f761f1eb]123 unsigned : 16;
[7f1c620]124 uint32_t cr3;
125 uint32_t eip;
126 uint32_t eflags;
127 uint32_t eax;
128 uint32_t ecx;
129 uint32_t edx;
130 uint32_t ebx;
131 uint32_t esp;
132 uint32_t ebp;
133 uint32_t esi;
134 uint32_t edi;
135 uint16_t es;
[f761f1eb]136 unsigned : 16;
[7f1c620]137 uint16_t cs;
[f761f1eb]138 unsigned : 16;
[7f1c620]139 uint16_t ss;
[f761f1eb]140 unsigned : 16;
[7f1c620]141 uint16_t ds;
[f761f1eb]142 unsigned : 16;
[7f1c620]143 uint16_t fs;
[f761f1eb]144 unsigned : 16;
[7f1c620]145 uint16_t gs;
[f761f1eb]146 unsigned : 16;
[7f1c620]147 uint16_t ldtr;
[f761f1eb]148 unsigned : 16;
149 unsigned : 16;
[7f1c620]150 uint16_t iomap_base;
151 uint8_t iomap[TSS_IOMAP_SIZE];
[99d6fd0]152} __attribute__ ((packed)) tss_t;
[f761f1eb]153
[39cea6a]154extern ptr_16_32_t gdtr;
155extern ptr_16_32_t protected_ap_gdtr;
[99d6fd0]156extern tss_t *tss_p;
[f761f1eb]157
[39cea6a]158extern descriptor_t gdt[];
[f761f1eb]159
160extern void pm_init(void);
161
[7f1c620]162extern void gdt_setbase(descriptor_t *d, uintptr_t base);
163extern void gdt_setlimit(descriptor_t *d, uint32_t limit);
[f761f1eb]164
165extern void idt_init(void);
[7f1c620]166extern void idt_setoffset(idescriptor_t *d, uintptr_t offset);
[f761f1eb]167
[39cea6a]168extern void tss_initialize(tss_t *t);
[7f1c620]169extern void set_tls_desc(uintptr_t tls);
[f761f1eb]170
[8f2153b]171#endif /* __ASM__ */
172
[f761f1eb]173#endif
[b45c443]174
[06e1e95]175/** @}
[b45c443]176 */
Note: See TracBrowser for help on using the repository browser.