Use defines for PCI ids.
[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(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3
85                               , 0, &d);
86     if (ret)
87         // Device not found
88         return;
89     ret = pci_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82441
90                           , 0, &i440_pcidev);
91     if (ret)
92         return;
93
94     /* check if SMM init is already done */
95     u32 value = pci_config_readl(d, 0x58);
96     if (value & (1 << 25))
97         return;
98
99     /* copy the SMM relocation code */
100     memcpy((void *)0x38000, &smm_relocation_start,
101            &smm_relocation_end - &smm_relocation_start);
102
103     /* enable SMI generation when writing to the APMC register */
104     pci_config_writel(d, 0x58, value | (1 << 25));
105
106     /* init APM status port */
107     outb(0x01, 0xb3);
108
109     /* raise an SMI interrupt */
110     outb(0x00, 0xb2);
111
112     /* wait until SMM code executed */
113     while (inb(0xb3) != 0x00)
114         ;
115
116     /* enable the SMM memory window */
117     pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x48);
118
119     /* copy the SMM code */
120     memcpy((void *)0xa8000, &smm_code_start,
121            &smm_code_end - &smm_code_start);
122     wbinvd();
123
124     /* close the SMM memory window and enable normal SMM */
125     pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x08);
126 }