summaryrefslogtreecommitdiffstats
path: root/src/arch/x86/include/arch/rom_segs.h
blob: a7e31d29511df5ebc69ea14108b72611db94085a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef ROM_SEGS_H
#define ROM_SEGS_H

#define ROM_CODE_SEG 0x08
#define ROM_DATA_SEG 0x10
#define ROM_CODE_SEG64 0x18

/*
 * This define is placed here to make sure future romstage programmers
 * know about it.
 * It is used for STM setup code.
 */
#define SMM_TASK_STATE_SEG 0x20

#endif /* ROM_SEGS_H */