Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 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 |
Kevin O'Connor | 9521e26 | 2008-07-04 13:04:29 -0400 | [diff] [blame] | 10 | #include "config.h" // CONFIG_* |
| 11 | #include "ioport.h" // outb |
Kevin O'Connor | 2ed2f58 | 2008-11-08 15:53:36 -0500 | [diff] [blame^] | 12 | #include "pci_ids.h" // PCI_VENDOR_ID_INTEL |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 13 | |
Kevin O'Connor | 4096702 | 2008-07-21 22:23:05 -0400 | [diff] [blame] | 14 | #if CONFIG_USE_SMM |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 15 | asm( |
| 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" |
| 24 | " mov $0x38000 + 0x7efc, %ebx\n" |
| 25 | " addr32 mov (%ebx), %al\n" /* revision ID to see if x86_64 or x86 */ |
| 26 | " cmp $0x64, %al\n" |
| 27 | " je 1f\n" |
| 28 | " mov $0x38000 + 0x7ef8, %ebx\n" |
| 29 | " jmp 2f\n" |
| 30 | "1:\n" |
| 31 | " mov $0x38000 + 0x7f00, %ebx\n" |
| 32 | "2:\n" |
| 33 | " movl $0xa0000, %eax\n" |
| 34 | " addr32 movl %eax, (%ebx)\n" |
| 35 | /* indicate to the BIOS that the SMM code was executed */ |
| 36 | " mov $0x00, %al\n" |
| 37 | " movw $0xb3, %dx\n" |
| 38 | " 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" |
| 44 | " movw $0xb2, %dx\n" |
| 45 | " inb %dx, %al\n" |
| 46 | " cmp $0xf0, %al\n" |
| 47 | " jne 1f\n" |
| 48 | |
| 49 | /* ACPI disable */ |
| 50 | " mov $" __stringify(BUILD_PM_IO_BASE) " + 0x04, %dx\n" /* PMCNTRL */ |
| 51 | " 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 */ |
| 62 | " mov $" __stringify(BUILD_PM_IO_BASE) " + 0x04, %dx\n" /* PMCNTRL */ |
| 63 | " 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'Connor | 4096702 | 2008-07-21 22:23:05 -0400 | [diff] [blame] | 72 | #endif |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 73 | |
| 74 | extern u8 smm_relocation_start, smm_relocation_end; |
| 75 | extern u8 smm_code_start, smm_code_end; |
| 76 | |
| 77 | void |
| 78 | smm_init() |
| 79 | { |
| 80 | if (!CONFIG_USE_SMM) |
| 81 | return; |
| 82 | |
Kevin O'Connor | 7b49cd9 | 2008-11-08 10:35:26 -0500 | [diff] [blame] | 83 | dprintf(3, "init smm\n"); |
| 84 | |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 85 | // This code is hardcoded for PIIX4 Power Management device. |
| 86 | PCIDevice i440_pcidev, d; |
Kevin O'Connor | 415c2dc | 2008-10-25 14:35:59 -0400 | [diff] [blame] | 87 | int ret = pci_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3 |
| 88 | , 0, &d); |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 89 | if (ret) |
| 90 | // Device not found |
| 91 | return; |
Kevin O'Connor | 415c2dc | 2008-10-25 14:35:59 -0400 | [diff] [blame] | 92 | ret = pci_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82441 |
| 93 | , 0, &i440_pcidev); |
Kevin O'Connor | f7ba6d7 | 2008-07-04 05:05:54 -0400 | [diff] [blame] | 94 | if (ret) |
| 95 | return; |
| 96 | |
| 97 | /* check if SMM init is already done */ |
| 98 | u32 value = pci_config_readl(d, 0x58); |
| 99 | if (value & (1 << 25)) |
| 100 | return; |
| 101 | |
| 102 | /* copy the SMM relocation code */ |
| 103 | memcpy((void *)0x38000, &smm_relocation_start, |
| 104 | &smm_relocation_end - &smm_relocation_start); |
| 105 | |
| 106 | /* enable SMI generation when writing to the APMC register */ |
| 107 | pci_config_writel(d, 0x58, value | (1 << 25)); |
| 108 | |
| 109 | /* init APM status port */ |
| 110 | outb(0x01, 0xb3); |
| 111 | |
| 112 | /* raise an SMI interrupt */ |
| 113 | outb(0x00, 0xb2); |
| 114 | |
| 115 | /* wait until SMM code executed */ |
| 116 | while (inb(0xb3) != 0x00) |
| 117 | ; |
| 118 | |
| 119 | /* enable the SMM memory window */ |
| 120 | pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x48); |
| 121 | |
| 122 | /* copy the SMM code */ |
| 123 | memcpy((void *)0xa8000, &smm_code_start, |
| 124 | &smm_code_end - &smm_code_start); |
| 125 | wbinvd(); |
| 126 | |
| 127 | /* close the SMM memory window and enable normal SMM */ |
| 128 | pci_config_writeb(i440_pcidev, 0x72, 0x02 | 0x08); |
| 129 | } |