Add additional config options to remove parts of code.
[seabios.git] / src / smm.c
1 // System Management Mode support (on emulators)
2 //
3 // Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
4 // Copyright (C) 2006 Fabrice Bellard
5 //
6 // This file may be distributed under the terms of the GNU GPLv3 license.
7
8 #include "pci.h" // PCIDevice
9 #include "util.h" // wbinvd
10 #include "config.h" // CONFIG_*
11 #include "ioport.h" // outb
12
13 #if CONFIG_USE_SMM
14 asm(
15     ".global smm_relocation_start\n"
16     ".global smm_relocation_end\n"
17     ".global smm_code_start\n"
18     ".global smm_code_end\n"
19     "  .code16\n"
20
21     /* code to relocate SMBASE to 0xa0000 */
22     "smm_relocation_start:\n"
23     "  mov $0x38000 + 0x7efc, %ebx\n"
24     "  addr32 mov (%ebx), %al\n"  /* revision ID to see if x86_64 or x86 */
25     "  cmp $0x64, %al\n"
26     "  je 1f\n"
27     "  mov $0x38000 + 0x7ef8, %ebx\n"
28     "  jmp 2f\n"
29     "1:\n"
30     "  mov $0x38000 + 0x7f00, %ebx\n"
31     "2:\n"
32     "  movl $0xa0000, %eax\n"
33     "  addr32 movl %eax, (%ebx)\n"
34     /* indicate to the BIOS that the SMM code was executed */
35     "  mov $0x00, %al\n"
36     "  movw $0xb3, %dx\n"
37     "  outb %al, %dx\n"
38     "  rsm\n"
39     "smm_relocation_end:\n"
40
41     /* minimal SMM code to enable or disable ACPI */
42     "smm_code_start:\n"
43     "  movw $0xb2, %dx\n"
44     "  inb %dx, %al\n"
45     "  cmp $0xf0, %al\n"
46     "  jne 1f\n"
47
48     /* ACPI disable */
49     "  mov $" __stringify(BUILD_PM_IO_BASE) " + 0x04, %dx\n" /* PMCNTRL */
50     "  inw %dx, %ax\n"
51     "  andw $~1, %ax\n"
52     "  outw %ax, %dx\n"
53
54     "  jmp 2f\n"
55
56     "1:\n"
57     "  cmp $0xf1, %al\n"
58     "  jne 2f\n"
59
60     /* ACPI enable */
61     "  mov $" __stringify(BUILD_PM_IO_BASE) " + 0x04, %dx\n" /* PMCNTRL */
62     "  inw %dx, %ax\n"
63     "  orw $1, %ax\n"
64     "  outw %ax, %dx\n"
65
66     "2:\n"
67     "  rsm\n"
68     "smm_code_end:\n"
69     "  .code32\n"
70     );
71 #endif
72
73 extern u8 smm_relocation_start, smm_relocation_end;
74 extern u8 smm_code_start, smm_code_end;
75
76 void
77 smm_init()
78 {
79     if (!CONFIG_USE_SMM)
80         return;
81
82     // This code is hardcoded for PIIX4 Power Management device.
83     PCIDevice i440_pcidev, d;
84     int ret = pci_find_device(0x8086, 0x7113, 0, &d);
85     if (ret)
86         // Device not found
87         return;
88     ret = pci_find_device(0x8086, 0x1237, 0, &i440_pcidev);
89     if (ret)
90         return;
91
92     /* check if SMM init is already done */
93     u32 value = pci_config_readl(d, 0x58);
94     if (value & (1 << 25))
95         return;
96
97     /* copy the SMM relocation code */
98     memcpy((void *)0x38000, &smm_relocation_start,
99            &smm_relocation_end - &smm_relocation_start);
100
101     /* enable SMI generation when writing to the APMC register */
102     pci_config_writel(d, 0x58, value | (1 << 25));
103
104     /* init APM status port */
105     outb(0x01, 0xb3);
106
107     /* raise an SMI interrupt */
108     outb(0x00, 0xb2);
109
110     /* wait until SMM code executed */
111     while (inb(0xb3) != 0x00)
112         ;
113
114     /* enable the SMM memory window */
115     pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x48);
116
117     /* copy the SMM code */
118     memcpy((void *)0xa8000, &smm_code_start,
119            &smm_code_end - &smm_code_start);
120     wbinvd();
121
122     /* close the SMM memory window and enable normal SMM */
123     pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x08);
124 }