[85bfdcc8] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Jakub Jermar
|
---|
[85bfdcc8] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[06e1e95] | 29 | /** @addtogroup genarch
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
[0f27b4c] | 33 | /**
|
---|
[b45c443] | 34 | * @file
|
---|
[793cf029] | 35 | * @brief Advanced Configuration and Power Interface (ACPI) initialization.
|
---|
[0f27b4c] | 36 | */
|
---|
[793cf029] | 37 |
|
---|
[e16e036a] | 38 | #include <genarch/acpi/acpi.h>
|
---|
| 39 | #include <genarch/acpi/madt.h>
|
---|
[babcb148] | 40 | #include <arch/bios/bios.h>
|
---|
[fc1e4f6] | 41 | #include <mm/as.h>
|
---|
[10a2e22] | 42 | #include <mm/page.h>
|
---|
[9c0a9b3] | 43 | #include <print.h>
|
---|
[10a2e22] | 44 |
|
---|
[793cf029] | 45 | #define RSDP_SIGNATURE "RSD PTR "
|
---|
| 46 | #define RSDP_REVISION_OFFS 15
|
---|
[85bfdcc8] | 47 |
|
---|
[1075ac6] | 48 | #define CMP_SIGNATURE(left, right) \
|
---|
| 49 | (((left)[0] == (right)[0]) && \
|
---|
| 50 | ((left)[1] == (right)[1]) && \
|
---|
| 51 | ((left)[2] == (right)[2]) && \
|
---|
| 52 | ((left)[3] == (right)[3]))
|
---|
| 53 |
|
---|
[85bfdcc8] | 54 | struct acpi_rsdp *acpi_rsdp = NULL;
|
---|
[10a2e22] | 55 | struct acpi_rsdt *acpi_rsdt = NULL;
|
---|
| 56 | struct acpi_xsdt *acpi_xsdt = NULL;
|
---|
| 57 |
|
---|
[76fca31] | 58 | struct acpi_signature_map signature_map[] = {
|
---|
| 59 | {
|
---|
| 60 | (uint8_t *) "APIC",
|
---|
| 61 | (void *) &acpi_madt,
|
---|
| 62 | "Multiple APIC Description Table"
|
---|
| 63 | }
|
---|
[10a2e22] | 64 | };
|
---|
[85bfdcc8] | 65 |
|
---|
[793cf029] | 66 | static int rsdp_check(uint8_t *_rsdp) {
|
---|
| 67 | struct acpi_rsdp *rsdp = (struct acpi_rsdp *) _rsdp;
|
---|
[7f1c620] | 68 | uint8_t sum = 0;
|
---|
[793cf029] | 69 | uint32_t i;
|
---|
[babcb148] | 70 |
|
---|
[7d07bf3] | 71 | for (i = 0; i < 20; i++)
|
---|
[793cf029] | 72 | sum = (uint8_t) (sum + _rsdp[i]);
|
---|
| 73 |
|
---|
| 74 | if (sum)
|
---|
[babcb148] | 75 | return 0; /* bad checksum */
|
---|
[793cf029] | 76 |
|
---|
| 77 | if (rsdp->revision == 0)
|
---|
[babcb148] | 78 | return 1; /* ACPI 1.0 */
|
---|
| 79 |
|
---|
[793cf029] | 80 | for (; i < rsdp->length; i++)
|
---|
| 81 | sum = (uint8_t) (sum + _rsdp[i]);
|
---|
| 82 |
|
---|
| 83 | return !sum;
|
---|
[babcb148] | 84 | }
|
---|
| 85 |
|
---|
[7f1c620] | 86 | int acpi_sdt_check(uint8_t *sdt)
|
---|
[10a2e22] | 87 | {
|
---|
[793cf029] | 88 | struct acpi_sdt_header *hdr = (struct acpi_sdt_header *) sdt;
|
---|
[7f1c620] | 89 | uint8_t sum = 0;
|
---|
[7d07bf3] | 90 | unsigned int i;
|
---|
[793cf029] | 91 |
|
---|
| 92 | for (i = 0; i < hdr->length; i++)
|
---|
[7f043c0] | 93 | sum = (uint8_t) (sum + sdt[i]);
|
---|
[793cf029] | 94 |
|
---|
[10a2e22] | 95 | return !sum;
|
---|
| 96 | }
|
---|
| 97 |
|
---|
[e16e036a] | 98 | static void map_sdt(struct acpi_sdt_header *sdt)
|
---|
[10a2e22] | 99 | {
|
---|
[e3ce39b] | 100 | page_table_lock(AS_KERNEL, true);
|
---|
[793cf029] | 101 | page_mapping_insert(AS_KERNEL, (uintptr_t) sdt, (uintptr_t) sdt,
|
---|
| 102 | PAGE_NOT_CACHEABLE | PAGE_WRITE);
|
---|
[7f1c620] | 103 | map_structure((uintptr_t) sdt, sdt->length);
|
---|
[e3ce39b] | 104 | page_table_unlock(AS_KERNEL, true);
|
---|
[10a2e22] | 105 | }
|
---|
| 106 |
|
---|
[e16e036a] | 107 | static void configure_via_rsdt(void)
|
---|
| 108 | {
|
---|
[793cf029] | 109 | size_t i;
|
---|
| 110 | size_t j;
|
---|
| 111 | size_t cnt = (acpi_rsdt->header.length - sizeof(struct acpi_sdt_header))
|
---|
| 112 | / sizeof(uint32_t);
|
---|
[e16e036a] | 113 |
|
---|
[7d07bf3] | 114 | for (i = 0; i < cnt; i++) {
|
---|
[793cf029] | 115 | for (j = 0; j < sizeof(signature_map)
|
---|
| 116 | / sizeof(struct acpi_signature_map); j++) {
|
---|
| 117 | struct acpi_sdt_header *hdr =
|
---|
[96b02eb9] | 118 | (struct acpi_sdt_header *) (sysarg_t) acpi_rsdt->entry[i];
|
---|
[793cf029] | 119 |
|
---|
| 120 | map_sdt(hdr);
|
---|
| 121 | if (CMP_SIGNATURE(hdr->signature, signature_map[j].signature)) {
|
---|
| 122 | if (!acpi_sdt_check((uint8_t *) hdr))
|
---|
| 123 | break;
|
---|
| 124 |
|
---|
| 125 | *signature_map[j].sdt_ptr = hdr;
|
---|
| 126 | LOG("%p: ACPI %s", *signature_map[j].sdt_ptr,
|
---|
| 127 | signature_map[j].description);
|
---|
[e16e036a] | 128 | }
|
---|
| 129 | }
|
---|
| 130 | }
|
---|
| 131 | }
|
---|
| 132 |
|
---|
| 133 | static void configure_via_xsdt(void)
|
---|
| 134 | {
|
---|
[793cf029] | 135 | size_t i;
|
---|
| 136 | size_t j;
|
---|
| 137 | size_t cnt = (acpi_xsdt->header.length - sizeof(struct acpi_sdt_header))
|
---|
| 138 | / sizeof(uint64_t);
|
---|
[e16e036a] | 139 |
|
---|
[7d07bf3] | 140 | for (i = 0; i < cnt; i++) {
|
---|
[793cf029] | 141 | for (j = 0; j < sizeof(signature_map)
|
---|
| 142 | / sizeof(struct acpi_signature_map); j++) {
|
---|
| 143 | struct acpi_sdt_header *hdr =
|
---|
| 144 | (struct acpi_sdt_header *) ((uintptr_t) acpi_xsdt->entry[i]);
|
---|
| 145 |
|
---|
| 146 | map_sdt(hdr);
|
---|
| 147 | if (CMP_SIGNATURE(hdr->signature, signature_map[j].signature)) {
|
---|
| 148 | if (!acpi_sdt_check((uint8_t *) hdr))
|
---|
| 149 | break;
|
---|
| 150 |
|
---|
| 151 | *signature_map[j].sdt_ptr = hdr;
|
---|
| 152 | LOG("%p: ACPI %s", *signature_map[j].sdt_ptr,
|
---|
| 153 | signature_map[j].description);
|
---|
[e16e036a] | 154 | }
|
---|
| 155 | }
|
---|
| 156 | }
|
---|
| 157 | }
|
---|
| 158 |
|
---|
[85bfdcc8] | 159 | void acpi_init(void)
|
---|
| 160 | {
|
---|
[7f1c620] | 161 | uint8_t *addr[2] = { NULL, (uint8_t *) PA2KA(0xe0000) };
|
---|
[793cf029] | 162 | unsigned int i;
|
---|
| 163 | unsigned int j;
|
---|
| 164 | unsigned int length[2] = { 1024, 128 * 1024 };
|
---|
[7f1c620] | 165 | uint64_t *sig = (uint64_t *) RSDP_SIGNATURE;
|
---|
[793cf029] | 166 |
|
---|
[76cec1e] | 167 | /*
|
---|
[babcb148] | 168 | * Find Root System Description Pointer
|
---|
[76cec1e] | 169 | * 1. search first 1K of EBDA
|
---|
| 170 | * 2. search 128K starting at 0xe0000
|
---|
| 171 | */
|
---|
[793cf029] | 172 |
|
---|
[7f1c620] | 173 | addr[0] = (uint8_t *) PA2KA(ebda);
|
---|
[babcb148] | 174 | for (i = (ebda ? 0 : 1); i < 2; i++) {
|
---|
[76cec1e] | 175 | for (j = 0; j < length[i]; j += 16) {
|
---|
[793cf029] | 176 | if ((*((uint64_t *) &addr[i][j]) == *sig)
|
---|
| 177 | && (rsdp_check(&addr[i][j]))) {
|
---|
[76cec1e] | 178 | acpi_rsdp = (struct acpi_rsdp *) &addr[i][j];
|
---|
| 179 | goto rsdp_found;
|
---|
| 180 | }
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
[793cf029] | 183 |
|
---|
[76cec1e] | 184 | return;
|
---|
[793cf029] | 185 |
|
---|
[babcb148] | 186 | rsdp_found:
|
---|
[793cf029] | 187 | LOG("%p: ACPI Root System Description Pointer", acpi_rsdp);
|
---|
| 188 |
|
---|
| 189 | acpi_rsdt = (struct acpi_rsdt *) ((uintptr_t) acpi_rsdp->rsdt_address);
|
---|
[103bb68] | 190 | if (acpi_rsdp->revision)
|
---|
| 191 | acpi_xsdt = (struct acpi_xsdt *) ((uintptr_t) acpi_rsdp->xsdt_address);
|
---|
[793cf029] | 192 |
|
---|
[103bb68] | 193 | if (acpi_rsdt)
|
---|
| 194 | map_sdt((struct acpi_sdt_header *) acpi_rsdt);
|
---|
[793cf029] | 195 |
|
---|
[103bb68] | 196 | if (acpi_xsdt)
|
---|
| 197 | map_sdt((struct acpi_sdt_header *) acpi_xsdt);
|
---|
[793cf029] | 198 |
|
---|
| 199 | if ((acpi_rsdt) && (!acpi_sdt_check((uint8_t *) acpi_rsdt))) {
|
---|
[f4c2b6a] | 200 | printf("RSDT: bad checksum\n");
|
---|
[10a2e22] | 201 | return;
|
---|
| 202 | }
|
---|
[793cf029] | 203 |
|
---|
| 204 | if ((acpi_xsdt) && (!acpi_sdt_check((uint8_t *) acpi_xsdt))) {
|
---|
[f4c2b6a] | 205 | printf("XSDT: bad checksum\n");
|
---|
[10a2e22] | 206 | return;
|
---|
| 207 | }
|
---|
[793cf029] | 208 |
|
---|
[103bb68] | 209 | if (acpi_xsdt)
|
---|
| 210 | configure_via_xsdt();
|
---|
| 211 | else if (acpi_rsdt)
|
---|
| 212 | configure_via_rsdt();
|
---|
[10a2e22] | 213 | }
|
---|
| 214 |
|
---|
[06e1e95] | 215 | /** @}
|
---|
[b45c443] | 216 | */
|
---|