blob: ac65837772ba81b9586d6883aa87e4552b473882 [file] [log] [blame]
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -04001// System Management Mode support (on emulators)
2//
3// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
4// Copyright (C) 2006 Fabrice Bellard
5//
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05006// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -04007
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -05008#include "pci.h" // pci_config_writel
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -04009#include "util.h" // wbinvd
Kevin O'Connor9521e262008-07-04 13:04:29 -040010#include "config.h" // CONFIG_*
11#include "ioport.h" // outb
Kevin O'Connor2ed2f582008-11-08 15:53:36 -050012#include "pci_ids.h" // PCI_VENDOR_ID_INTEL
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040013
Kevin O'Connor40967022008-07-21 22:23:05 -040014#if CONFIG_USE_SMM
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040015asm(
16 ".global smm_relocation_start\n"
17 ".global smm_relocation_end\n"
18 ".global smm_code_start\n"
19 ".global smm_code_end\n"
20 " .code16\n"
21
22 /* code to relocate SMBASE to 0xa0000 */
23 "smm_relocation_start:\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050024 " mov $" __stringify(BUILD_SMM_INIT_ADDR) " + 0x7efc, %ebx\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040025 " addr32 mov (%ebx), %al\n" /* revision ID to see if x86_64 or x86 */
26 " cmp $0x64, %al\n"
27 " je 1f\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050028 " mov $" __stringify(BUILD_SMM_INIT_ADDR) " + 0x7ef8, %ebx\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040029 " jmp 2f\n"
30 "1:\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050031 " mov $" __stringify(BUILD_SMM_INIT_ADDR) " + 0x7f00, %ebx\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040032 "2:\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050033 " movl $" __stringify(BUILD_SMM_ADDR) " - 0x8000, %eax\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040034 " addr32 movl %eax, (%ebx)\n"
35 /* indicate to the BIOS that the SMM code was executed */
36 " mov $0x00, %al\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050037 " movw $" __stringify(PORT_SMI_STATUS) ", %dx\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040038 " outb %al, %dx\n"
39 " rsm\n"
40 "smm_relocation_end:\n"
41
42 /* minimal SMM code to enable or disable ACPI */
43 "smm_code_start:\n"
Kevin O'Connore682cbc2008-12-06 23:11:56 -050044 " movw $" __stringify(PORT_SMI_CMD) ", %dx\n"
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040045 " inb %dx, %al\n"
46 " cmp $0xf0, %al\n"
47 " jne 1f\n"
48
49 /* ACPI disable */
Kevin O'Connore682cbc2008-12-06 23:11:56 -050050 " mov $" __stringify(PORT_ACPI_PM_BASE) " + 0x04, %dx\n" /* PMCNTRL */
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040051 " inw %dx, %ax\n"
52 " andw $~1, %ax\n"
53 " outw %ax, %dx\n"
54
55 " jmp 2f\n"
56
57 "1:\n"
58 " cmp $0xf1, %al\n"
59 " jne 2f\n"
60
61 /* ACPI enable */
Kevin O'Connore682cbc2008-12-06 23:11:56 -050062 " mov $" __stringify(PORT_ACPI_PM_BASE) " + 0x04, %dx\n" /* PMCNTRL */
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040063 " inw %dx, %ax\n"
64 " orw $1, %ax\n"
65 " outw %ax, %dx\n"
66
67 "2:\n"
68 " rsm\n"
69 "smm_code_end:\n"
70 " .code32\n"
71 );
Kevin O'Connor40967022008-07-21 22:23:05 -040072#endif
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040073
74extern u8 smm_relocation_start, smm_relocation_end;
75extern u8 smm_code_start, smm_code_end;
76
77void
78smm_init()
79{
Kevin O'Connor4bbd3b32008-12-10 21:01:00 -050080 if (CONFIG_COREBOOT)
81 // SMM only supported on emulators.
82 return;
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040083 if (!CONFIG_USE_SMM)
84 return;
85
Kevin O'Connor7b49cd92008-11-08 10:35:26 -050086 dprintf(3, "init smm\n");
87
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040088 // This code is hardcoded for PIIX4 Power Management device.
Kevin O'Connor4132e022008-12-04 19:39:10 -050089 int bdf = pci_find_device(PCI_VENDOR_ID_INTEL
90 , PCI_DEVICE_ID_INTEL_82371AB_3);
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -050091 if (bdf < 0)
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040092 // Device not found
93 return;
Kevin O'Connor4132e022008-12-04 19:39:10 -050094 int i440_bdf = pci_find_device(PCI_VENDOR_ID_INTEL
95 , PCI_DEVICE_ID_INTEL_82441);
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -050096 if (i440_bdf < 0)
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -040097 return;
98
99 /* check if SMM init is already done */
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500100 u32 value = pci_config_readl(bdf, 0x58);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400101 if (value & (1 << 25))
102 return;
103
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500104 /* enable the SMM memory window */
105 pci_config_writeb(i440_bdf, 0x72, 0x02 | 0x48);
106
107 /* save original memory content */
108 memcpy((void *)BUILD_SMM_ADDR, (void *)BUILD_SMM_INIT_ADDR, BUILD_SMM_SIZE);
109
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400110 /* copy the SMM relocation code */
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500111 memcpy((void *)BUILD_SMM_INIT_ADDR, &smm_relocation_start,
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400112 &smm_relocation_end - &smm_relocation_start);
113
114 /* enable SMI generation when writing to the APMC register */
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500115 pci_config_writel(bdf, 0x58, value | (1 << 25));
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400116
117 /* init APM status port */
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500118 outb(0x01, PORT_SMI_STATUS);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400119
120 /* raise an SMI interrupt */
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500121 outb(0x00, PORT_SMI_CMD);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400122
123 /* wait until SMM code executed */
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500124 while (inb(PORT_SMI_STATUS) != 0x00)
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400125 ;
126
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500127 /* restore original memory content */
128 memcpy((void *)BUILD_SMM_INIT_ADDR, (void *)BUILD_SMM_ADDR, BUILD_SMM_SIZE);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400129
130 /* copy the SMM code */
Kevin O'Connore682cbc2008-12-06 23:11:56 -0500131 memcpy((void *)BUILD_SMM_ADDR, &smm_code_start
132 , &smm_code_end - &smm_code_start);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400133 wbinvd();
134
135 /* close the SMM memory window and enable normal SMM */
Kevin O'Connorbe19cdc2008-11-09 15:33:47 -0500136 pci_config_writeb(i440_bdf, 0x72, 0x02 | 0x08);
Kevin O'Connorf7ba6d72008-07-04 05:05:54 -0400137}