diff options
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r-- | arch/x86/kernel/acpi/Makefile | 2 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 48 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/sleep.c | 87 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/sleep_32.c | 70 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/sleep_64.c | 117 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/wakeup_32.S | 2 | ||||
-rw-r--r-- | arch/x86/kernel/acpi/wakeup_64.S | 32 |
7 files changed, 112 insertions, 246 deletions
diff --git a/arch/x86/kernel/acpi/Makefile b/arch/x86/kernel/acpi/Makefile index 1351c3982ee4..19d3d6e9d09b 100644 --- a/arch/x86/kernel/acpi/Makefile +++ b/arch/x86/kernel/acpi/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | obj-$(CONFIG_ACPI) += boot.o | 1 | obj-$(CONFIG_ACPI) += boot.o |
2 | obj-$(CONFIG_ACPI_SLEEP) += sleep_$(BITS).o wakeup_$(BITS).o | 2 | obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup_$(BITS).o |
3 | 3 | ||
4 | ifneq ($(CONFIG_ACPI_PROCESSOR),) | 4 | ifneq ($(CONFIG_ACPI_PROCESSOR),) |
5 | obj-y += cstate.o processor.o | 5 | obj-y += cstate.o processor.o |
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 0ca27c7b0e8d..fc8825d4b996 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -496,7 +496,8 @@ EXPORT_SYMBOL(acpi_register_gsi); | |||
496 | * ACPI based hotplug support for CPU | 496 | * ACPI based hotplug support for CPU |
497 | */ | 497 | */ |
498 | #ifdef CONFIG_ACPI_HOTPLUG_CPU | 498 | #ifdef CONFIG_ACPI_HOTPLUG_CPU |
499 | int acpi_map_lsapic(acpi_handle handle, int *pcpu) | 499 | |
500 | static int __cpuinit _acpi_map_lsapic(acpi_handle handle, int *pcpu) | ||
500 | { | 501 | { |
501 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; | 502 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
502 | union acpi_object *obj; | 503 | union acpi_object *obj; |
@@ -551,6 +552,11 @@ int acpi_map_lsapic(acpi_handle handle, int *pcpu) | |||
551 | return 0; | 552 | return 0; |
552 | } | 553 | } |
553 | 554 | ||
555 | /* wrapper to silence section mismatch warning */ | ||
556 | int __ref acpi_map_lsapic(acpi_handle handle, int *pcpu) | ||
557 | { | ||
558 | return _acpi_map_lsapic(handle, pcpu); | ||
559 | } | ||
554 | EXPORT_SYMBOL(acpi_map_lsapic); | 560 | EXPORT_SYMBOL(acpi_map_lsapic); |
555 | 561 | ||
556 | int acpi_unmap_lsapic(int cpu) | 562 | int acpi_unmap_lsapic(int cpu) |
@@ -581,25 +587,6 @@ int acpi_unregister_ioapic(acpi_handle handle, u32 gsi_base) | |||
581 | 587 | ||
582 | EXPORT_SYMBOL(acpi_unregister_ioapic); | 588 | EXPORT_SYMBOL(acpi_unregister_ioapic); |
583 | 589 | ||
584 | static unsigned long __init | ||
585 | acpi_scan_rsdp(unsigned long start, unsigned long length) | ||
586 | { | ||
587 | unsigned long offset = 0; | ||
588 | unsigned long sig_len = sizeof("RSD PTR ") - 1; | ||
589 | |||
590 | /* | ||
591 | * Scan all 16-byte boundaries of the physical memory region for the | ||
592 | * RSDP signature. | ||
593 | */ | ||
594 | for (offset = 0; offset < length; offset += 16) { | ||
595 | if (strncmp((char *)(phys_to_virt(start) + offset), "RSD PTR ", sig_len)) | ||
596 | continue; | ||
597 | return (start + offset); | ||
598 | } | ||
599 | |||
600 | return 0; | ||
601 | } | ||
602 | |||
603 | static int __init acpi_parse_sbf(struct acpi_table_header *table) | 590 | static int __init acpi_parse_sbf(struct acpi_table_header *table) |
604 | { | 591 | { |
605 | struct acpi_table_boot *sb; | 592 | struct acpi_table_boot *sb; |
@@ -742,27 +729,6 @@ static int __init acpi_parse_fadt(struct acpi_table_header *table) | |||
742 | return 0; | 729 | return 0; |
743 | } | 730 | } |
744 | 731 | ||
745 | unsigned long __init acpi_find_rsdp(void) | ||
746 | { | ||
747 | unsigned long rsdp_phys = 0; | ||
748 | |||
749 | if (efi_enabled) { | ||
750 | if (efi.acpi20 != EFI_INVALID_TABLE_ADDR) | ||
751 | return efi.acpi20; | ||
752 | else if (efi.acpi != EFI_INVALID_TABLE_ADDR) | ||
753 | return efi.acpi; | ||
754 | } | ||
755 | /* | ||
756 | * Scan memory looking for the RSDP signature. First search EBDA (low | ||
757 | * memory) paragraphs and then search upper memory (E0000-FFFFF). | ||
758 | */ | ||
759 | rsdp_phys = acpi_scan_rsdp(0, 0x400); | ||
760 | if (!rsdp_phys) | ||
761 | rsdp_phys = acpi_scan_rsdp(0xE0000, 0x20000); | ||
762 | |||
763 | return rsdp_phys; | ||
764 | } | ||
765 | |||
766 | #ifdef CONFIG_X86_LOCAL_APIC | 732 | #ifdef CONFIG_X86_LOCAL_APIC |
767 | /* | 733 | /* |
768 | * Parse LAPIC entries in MADT | 734 | * Parse LAPIC entries in MADT |
diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c new file mode 100644 index 000000000000..6bc815cd8cb3 --- /dev/null +++ b/arch/x86/kernel/acpi/sleep.c | |||
@@ -0,0 +1,87 @@ | |||
1 | /* | ||
2 | * sleep.c - x86-specific ACPI sleep support. | ||
3 | * | ||
4 | * Copyright (C) 2001-2003 Patrick Mochel | ||
5 | * Copyright (C) 2001-2003 Pavel Machek <pavel@suse.cz> | ||
6 | */ | ||
7 | |||
8 | #include <linux/acpi.h> | ||
9 | #include <linux/bootmem.h> | ||
10 | #include <linux/dmi.h> | ||
11 | #include <linux/cpumask.h> | ||
12 | |||
13 | #include <asm/smp.h> | ||
14 | |||
15 | /* address in low memory of the wakeup routine. */ | ||
16 | unsigned long acpi_wakeup_address = 0; | ||
17 | unsigned long acpi_realmode_flags; | ||
18 | extern char wakeup_start, wakeup_end; | ||
19 | |||
20 | extern unsigned long acpi_copy_wakeup_routine(unsigned long); | ||
21 | |||
22 | /** | ||
23 | * acpi_save_state_mem - save kernel state | ||
24 | * | ||
25 | * Create an identity mapped page table and copy the wakeup routine to | ||
26 | * low memory. | ||
27 | */ | ||
28 | int acpi_save_state_mem(void) | ||
29 | { | ||
30 | if (!acpi_wakeup_address) { | ||
31 | printk(KERN_ERR "Could not allocate memory during boot, S3 disabled\n"); | ||
32 | return -ENOMEM; | ||
33 | } | ||
34 | memcpy((void *)acpi_wakeup_address, &wakeup_start, | ||
35 | &wakeup_end - &wakeup_start); | ||
36 | acpi_copy_wakeup_routine(acpi_wakeup_address); | ||
37 | |||
38 | return 0; | ||
39 | } | ||
40 | |||
41 | /* | ||
42 | * acpi_restore_state - undo effects of acpi_save_state_mem | ||
43 | */ | ||
44 | void acpi_restore_state_mem(void) | ||
45 | { | ||
46 | } | ||
47 | |||
48 | |||
49 | /** | ||
50 | * acpi_reserve_bootmem - do _very_ early ACPI initialisation | ||
51 | * | ||
52 | * We allocate a page from the first 1MB of memory for the wakeup | ||
53 | * routine for when we come back from a sleep state. The | ||
54 | * runtime allocator allows specification of <16MB pages, but not | ||
55 | * <1MB pages. | ||
56 | */ | ||
57 | void __init acpi_reserve_bootmem(void) | ||
58 | { | ||
59 | if ((&wakeup_end - &wakeup_start) > PAGE_SIZE*2) { | ||
60 | printk(KERN_ERR | ||
61 | "ACPI: Wakeup code way too big, S3 disabled.\n"); | ||
62 | return; | ||
63 | } | ||
64 | |||
65 | acpi_wakeup_address = (unsigned long)alloc_bootmem_low(PAGE_SIZE*2); | ||
66 | if (!acpi_wakeup_address) | ||
67 | printk(KERN_ERR "ACPI: Cannot allocate lowmem, S3 disabled.\n"); | ||
68 | } | ||
69 | |||
70 | |||
71 | static int __init acpi_sleep_setup(char *str) | ||
72 | { | ||
73 | while ((str != NULL) && (*str != '\0')) { | ||
74 | if (strncmp(str, "s3_bios", 7) == 0) | ||
75 | acpi_realmode_flags |= 1; | ||
76 | if (strncmp(str, "s3_mode", 7) == 0) | ||
77 | acpi_realmode_flags |= 2; | ||
78 | if (strncmp(str, "s3_beep", 7) == 0) | ||
79 | acpi_realmode_flags |= 4; | ||
80 | str = strchr(str, ','); | ||
81 | if (str != NULL) | ||
82 | str += strspn(str, ", \t"); | ||
83 | } | ||
84 | return 1; | ||
85 | } | ||
86 | |||
87 | __setup("acpi_sleep=", acpi_sleep_setup); | ||
diff --git a/arch/x86/kernel/acpi/sleep_32.c b/arch/x86/kernel/acpi/sleep_32.c index 10699489cfe7..63fe5525e026 100644 --- a/arch/x86/kernel/acpi/sleep_32.c +++ b/arch/x86/kernel/acpi/sleep_32.c | |||
@@ -12,76 +12,6 @@ | |||
12 | 12 | ||
13 | #include <asm/smp.h> | 13 | #include <asm/smp.h> |
14 | 14 | ||
15 | /* address in low memory of the wakeup routine. */ | ||
16 | unsigned long acpi_wakeup_address = 0; | ||
17 | unsigned long acpi_realmode_flags; | ||
18 | extern char wakeup_start, wakeup_end; | ||
19 | |||
20 | extern unsigned long FASTCALL(acpi_copy_wakeup_routine(unsigned long)); | ||
21 | |||
22 | /** | ||
23 | * acpi_save_state_mem - save kernel state | ||
24 | * | ||
25 | * Create an identity mapped page table and copy the wakeup routine to | ||
26 | * low memory. | ||
27 | */ | ||
28 | int acpi_save_state_mem(void) | ||
29 | { | ||
30 | if (!acpi_wakeup_address) | ||
31 | return 1; | ||
32 | memcpy((void *)acpi_wakeup_address, &wakeup_start, | ||
33 | &wakeup_end - &wakeup_start); | ||
34 | acpi_copy_wakeup_routine(acpi_wakeup_address); | ||
35 | |||
36 | return 0; | ||
37 | } | ||
38 | |||
39 | /* | ||
40 | * acpi_restore_state - undo effects of acpi_save_state_mem | ||
41 | */ | ||
42 | void acpi_restore_state_mem(void) | ||
43 | { | ||
44 | } | ||
45 | |||
46 | /** | ||
47 | * acpi_reserve_bootmem - do _very_ early ACPI initialisation | ||
48 | * | ||
49 | * We allocate a page from the first 1MB of memory for the wakeup | ||
50 | * routine for when we come back from a sleep state. The | ||
51 | * runtime allocator allows specification of <16MB pages, but not | ||
52 | * <1MB pages. | ||
53 | */ | ||
54 | void __init acpi_reserve_bootmem(void) | ||
55 | { | ||
56 | if ((&wakeup_end - &wakeup_start) > PAGE_SIZE) { | ||
57 | printk(KERN_ERR | ||
58 | "ACPI: Wakeup code way too big, S3 disabled.\n"); | ||
59 | return; | ||
60 | } | ||
61 | |||
62 | acpi_wakeup_address = (unsigned long)alloc_bootmem_low(PAGE_SIZE); | ||
63 | if (!acpi_wakeup_address) | ||
64 | printk(KERN_ERR "ACPI: Cannot allocate lowmem, S3 disabled.\n"); | ||
65 | } | ||
66 | |||
67 | static int __init acpi_sleep_setup(char *str) | ||
68 | { | ||
69 | while ((str != NULL) && (*str != '\0')) { | ||
70 | if (strncmp(str, "s3_bios", 7) == 0) | ||
71 | acpi_realmode_flags |= 1; | ||
72 | if (strncmp(str, "s3_mode", 7) == 0) | ||
73 | acpi_realmode_flags |= 2; | ||
74 | if (strncmp(str, "s3_beep", 7) == 0) | ||
75 | acpi_realmode_flags |= 4; | ||
76 | str = strchr(str, ','); | ||
77 | if (str != NULL) | ||
78 | str += strspn(str, ", \t"); | ||
79 | } | ||
80 | return 1; | ||
81 | } | ||
82 | |||
83 | __setup("acpi_sleep=", acpi_sleep_setup); | ||
84 | |||
85 | /* Ouch, we want to delete this. We already have better version in userspace, in | 15 | /* Ouch, we want to delete this. We already have better version in userspace, in |
86 | s2ram from suspend.sf.net project */ | 16 | s2ram from suspend.sf.net project */ |
87 | static __init int reset_videomode_after_s3(const struct dmi_system_id *d) | 17 | static __init int reset_videomode_after_s3(const struct dmi_system_id *d) |
diff --git a/arch/x86/kernel/acpi/sleep_64.c b/arch/x86/kernel/acpi/sleep_64.c deleted file mode 100644 index da42de261ba8..000000000000 --- a/arch/x86/kernel/acpi/sleep_64.c +++ /dev/null | |||
@@ -1,117 +0,0 @@ | |||
1 | /* | ||
2 | * acpi.c - Architecture-Specific Low-Level ACPI Support | ||
3 | * | ||
4 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> | ||
5 | * Copyright (C) 2001 Jun Nakajima <jun.nakajima@intel.com> | ||
6 | * Copyright (C) 2001 Patrick Mochel <mochel@osdl.org> | ||
7 | * Copyright (C) 2002 Andi Kleen, SuSE Labs (x86-64 port) | ||
8 | * Copyright (C) 2003 Pavel Machek, SuSE Labs | ||
9 | * | ||
10 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify | ||
13 | * it under the terms of the GNU General Public License as published by | ||
14 | * the Free Software Foundation; either version 2 of the License, or | ||
15 | * (at your option) any later version. | ||
16 | * | ||
17 | * This program is distributed in the hope that it will be useful, | ||
18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
20 | * GNU General Public License for more details. | ||
21 | * | ||
22 | * You should have received a copy of the GNU General Public License | ||
23 | * along with this program; if not, write to the Free Software | ||
24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
25 | * | ||
26 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
27 | */ | ||
28 | |||
29 | #include <linux/kernel.h> | ||
30 | #include <linux/init.h> | ||
31 | #include <linux/types.h> | ||
32 | #include <linux/stddef.h> | ||
33 | #include <linux/slab.h> | ||
34 | #include <linux/pci.h> | ||
35 | #include <linux/bootmem.h> | ||
36 | #include <linux/acpi.h> | ||
37 | #include <linux/cpumask.h> | ||
38 | |||
39 | #include <asm/mpspec.h> | ||
40 | #include <asm/io.h> | ||
41 | #include <asm/apic.h> | ||
42 | #include <asm/apicdef.h> | ||
43 | #include <asm/page.h> | ||
44 | #include <asm/pgtable.h> | ||
45 | #include <asm/pgalloc.h> | ||
46 | #include <asm/io_apic.h> | ||
47 | #include <asm/proto.h> | ||
48 | #include <asm/tlbflush.h> | ||
49 | |||
50 | /* -------------------------------------------------------------------------- | ||
51 | Low-Level Sleep Support | ||
52 | -------------------------------------------------------------------------- */ | ||
53 | |||
54 | /* address in low memory of the wakeup routine. */ | ||
55 | unsigned long acpi_wakeup_address = 0; | ||
56 | unsigned long acpi_realmode_flags; | ||
57 | extern char wakeup_start, wakeup_end; | ||
58 | |||
59 | extern unsigned long acpi_copy_wakeup_routine(unsigned long); | ||
60 | |||
61 | /** | ||
62 | * acpi_save_state_mem - save kernel state | ||
63 | * | ||
64 | * Create an identity mapped page table and copy the wakeup routine to | ||
65 | * low memory. | ||
66 | */ | ||
67 | int acpi_save_state_mem(void) | ||
68 | { | ||
69 | memcpy((void *)acpi_wakeup_address, &wakeup_start, | ||
70 | &wakeup_end - &wakeup_start); | ||
71 | acpi_copy_wakeup_routine(acpi_wakeup_address); | ||
72 | |||
73 | return 0; | ||
74 | } | ||
75 | |||
76 | /* | ||
77 | * acpi_restore_state | ||
78 | */ | ||
79 | void acpi_restore_state_mem(void) | ||
80 | { | ||
81 | } | ||
82 | |||
83 | /** | ||
84 | * acpi_reserve_bootmem - do _very_ early ACPI initialisation | ||
85 | * | ||
86 | * We allocate a page in low memory for the wakeup | ||
87 | * routine for when we come back from a sleep state. The | ||
88 | * runtime allocator allows specification of <16M pages, but not | ||
89 | * <1M pages. | ||
90 | */ | ||
91 | void __init acpi_reserve_bootmem(void) | ||
92 | { | ||
93 | acpi_wakeup_address = (unsigned long)alloc_bootmem_low(PAGE_SIZE*2); | ||
94 | if ((&wakeup_end - &wakeup_start) > (PAGE_SIZE*2)) | ||
95 | printk(KERN_CRIT | ||
96 | "ACPI: Wakeup code way too big, will crash on attempt" | ||
97 | " to suspend\n"); | ||
98 | } | ||
99 | |||
100 | static int __init acpi_sleep_setup(char *str) | ||
101 | { | ||
102 | while ((str != NULL) && (*str != '\0')) { | ||
103 | if (strncmp(str, "s3_bios", 7) == 0) | ||
104 | acpi_realmode_flags |= 1; | ||
105 | if (strncmp(str, "s3_mode", 7) == 0) | ||
106 | acpi_realmode_flags |= 2; | ||
107 | if (strncmp(str, "s3_beep", 7) == 0) | ||
108 | acpi_realmode_flags |= 4; | ||
109 | str = strchr(str, ','); | ||
110 | if (str != NULL) | ||
111 | str += strspn(str, ", \t"); | ||
112 | } | ||
113 | return 1; | ||
114 | } | ||
115 | |||
116 | __setup("acpi_sleep=", acpi_sleep_setup); | ||
117 | |||
diff --git a/arch/x86/kernel/acpi/wakeup_32.S b/arch/x86/kernel/acpi/wakeup_32.S index 1e931aaf2ef6..f53e3277f8e5 100644 --- a/arch/x86/kernel/acpi/wakeup_32.S +++ b/arch/x86/kernel/acpi/wakeup_32.S | |||
@@ -1,4 +1,4 @@ | |||
1 | .text | 1 | .section .text.page_aligned |
2 | #include <linux/linkage.h> | 2 | #include <linux/linkage.h> |
3 | #include <asm/segment.h> | 3 | #include <asm/segment.h> |
4 | #include <asm/page.h> | 4 | #include <asm/page.h> |
diff --git a/arch/x86/kernel/acpi/wakeup_64.S b/arch/x86/kernel/acpi/wakeup_64.S index 5ed3bc5c61d7..2e1b9e0d0767 100644 --- a/arch/x86/kernel/acpi/wakeup_64.S +++ b/arch/x86/kernel/acpi/wakeup_64.S | |||
@@ -344,13 +344,13 @@ do_suspend_lowlevel: | |||
344 | call save_processor_state | 344 | call save_processor_state |
345 | 345 | ||
346 | movq $saved_context, %rax | 346 | movq $saved_context, %rax |
347 | movq %rsp, pt_regs_rsp(%rax) | 347 | movq %rsp, pt_regs_sp(%rax) |
348 | movq %rbp, pt_regs_rbp(%rax) | 348 | movq %rbp, pt_regs_bp(%rax) |
349 | movq %rsi, pt_regs_rsi(%rax) | 349 | movq %rsi, pt_regs_si(%rax) |
350 | movq %rdi, pt_regs_rdi(%rax) | 350 | movq %rdi, pt_regs_di(%rax) |
351 | movq %rbx, pt_regs_rbx(%rax) | 351 | movq %rbx, pt_regs_bx(%rax) |
352 | movq %rcx, pt_regs_rcx(%rax) | 352 | movq %rcx, pt_regs_cx(%rax) |
353 | movq %rdx, pt_regs_rdx(%rax) | 353 | movq %rdx, pt_regs_dx(%rax) |
354 | movq %r8, pt_regs_r8(%rax) | 354 | movq %r8, pt_regs_r8(%rax) |
355 | movq %r9, pt_regs_r9(%rax) | 355 | movq %r9, pt_regs_r9(%rax) |
356 | movq %r10, pt_regs_r10(%rax) | 356 | movq %r10, pt_regs_r10(%rax) |
@@ -360,7 +360,7 @@ do_suspend_lowlevel: | |||
360 | movq %r14, pt_regs_r14(%rax) | 360 | movq %r14, pt_regs_r14(%rax) |
361 | movq %r15, pt_regs_r15(%rax) | 361 | movq %r15, pt_regs_r15(%rax) |
362 | pushfq | 362 | pushfq |
363 | popq pt_regs_eflags(%rax) | 363 | popq pt_regs_flags(%rax) |
364 | 364 | ||
365 | movq $.L97, saved_rip(%rip) | 365 | movq $.L97, saved_rip(%rip) |
366 | 366 | ||
@@ -391,15 +391,15 @@ do_suspend_lowlevel: | |||
391 | movq %rbx, %cr2 | 391 | movq %rbx, %cr2 |
392 | movq saved_context_cr0(%rax), %rbx | 392 | movq saved_context_cr0(%rax), %rbx |
393 | movq %rbx, %cr0 | 393 | movq %rbx, %cr0 |
394 | pushq pt_regs_eflags(%rax) | 394 | pushq pt_regs_flags(%rax) |
395 | popfq | 395 | popfq |
396 | movq pt_regs_rsp(%rax), %rsp | 396 | movq pt_regs_sp(%rax), %rsp |
397 | movq pt_regs_rbp(%rax), %rbp | 397 | movq pt_regs_bp(%rax), %rbp |
398 | movq pt_regs_rsi(%rax), %rsi | 398 | movq pt_regs_si(%rax), %rsi |
399 | movq pt_regs_rdi(%rax), %rdi | 399 | movq pt_regs_di(%rax), %rdi |
400 | movq pt_regs_rbx(%rax), %rbx | 400 | movq pt_regs_bx(%rax), %rbx |
401 | movq pt_regs_rcx(%rax), %rcx | 401 | movq pt_regs_cx(%rax), %rcx |
402 | movq pt_regs_rdx(%rax), %rdx | 402 | movq pt_regs_dx(%rax), %rdx |
403 | movq pt_regs_r8(%rax), %r8 | 403 | movq pt_regs_r8(%rax), %r8 |
404 | movq pt_regs_r9(%rax), %r9 | 404 | movq pt_regs_r9(%rax), %r9 |
405 | movq pt_regs_r10(%rax), %r10 | 405 | movq pt_regs_r10(%rax), %r10 |