ACPI / LPSS: Make acpi_lpss_find_device() also find PCI devices
[linux/fpc-iii.git] / arch / x86 / include / asm / suspend_32.h
blob8be6afb584715dc8d5a50d1bbd989bf053366294
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright 2001-2002 Pavel Machek <pavel@suse.cz>
4 * Based on code
5 * Copyright 2001 Patrick Mochel <mochel@osdl.org>
6 */
7 #ifndef _ASM_X86_SUSPEND_32_H
8 #define _ASM_X86_SUSPEND_32_H
10 #include <asm/desc.h>
11 #include <asm/fpu/api.h>
13 /* image of the saved processor state */
14 struct saved_context {
16 * On x86_32, all segment registers, with the possible exception of
17 * gs, are saved at kernel entry in pt_regs.
19 #ifdef CONFIG_X86_32_LAZY_GS
20 u16 gs;
21 #endif
22 unsigned long cr0, cr2, cr3, cr4;
23 u64 misc_enable;
24 bool misc_enable_saved;
25 struct saved_msrs saved_msrs;
26 struct desc_ptr gdt_desc;
27 struct desc_ptr idt;
28 u16 ldt;
29 u16 tss;
30 unsigned long tr;
31 unsigned long safety;
32 unsigned long return_address;
33 } __attribute__((packed));
35 #endif /* _ASM_X86_SUSPEND_32_H */