source: mainline/arch/ia32/src/acpi/acpi.c@ e41c47e

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e41c47e was 74df77d, checked in by Jakub Jermar <jakub@…>, 21 years ago

Add map_structure() to automate mapping of memory structures that can span multiple pages and/or cross page boundaries.
Change ACPI map_sdt() to use map_structure().

Small changes in MPS code.
The extra frame allocation for accessing frame 0 is unnecessary as it is possible to access frame 0 from kernel address space.
Zero TSS descriptor in the newly prepared GDT.

  • Property mode set to 100644
File size: 5.1 KB
Line 
1/*
2 * Copyright (C) 2005 Jakub Jermar
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
29#include <arch/acpi/acpi.h>
30#include <arch/acpi/madt.h>
31#include <arch/bios/bios.h>
32
33#include <mm/page.h>
34
35#define RSDP_SIGNATURE "RSD PTR "
36#define RSDP_REVISION_OFFS 15
37
38struct acpi_rsdp *acpi_rsdp = NULL;
39struct acpi_rsdt *acpi_rsdt = NULL;
40struct acpi_xsdt *acpi_xsdt = NULL;
41
42struct acpi_signature_map signature_map[] = {
43 { "APIC", (struct acpi_sdt_header **) &acpi_madt, "Multiple APIC Description Table" }
44};
45
46int rsdp_check(__u8 *rsdp) {
47 struct acpi_rsdp *r = (struct acpi_rsdp *) rsdp;
48 __u8 sum = 0;
49 int i;
50
51 for (i=0; i<20; i++)
52 sum += rsdp[i];
53
54 if (sum)
55 return 0; /* bad checksum */
56
57 if (r->revision == 0)
58 return 1; /* ACPI 1.0 */
59
60 for (; i<r->length; i++)
61 sum += rsdp[i];
62
63 return !sum;
64
65}
66
67int acpi_sdt_check(__u8 *sdt)
68{
69 struct acpi_sdt_header *h = (struct acpi_sdt_header *) sdt;
70 __u8 sum = 0;
71 int i;
72
73 for (i=0; i<h->length; i++)
74 sum += sdt[i];
75
76 return !sum;
77}
78
79void map_sdt(struct acpi_sdt_header *sdt)
80{
81 map_page_to_frame((__address) sdt, (__address) sdt, PAGE_NOT_CACHEABLE, 0);
82 map_structure((__address) sdt, sdt->length);
83}
84
85void acpi_init(void)
86{
87 __u8 *addr[2] = { NULL, (__u8 *) 0xe0000 };
88 int i, j, length[2] = { 1024, 128*1024 };
89 __u64 *sig = (__u64 *) RSDP_SIGNATURE;
90
91 /*
92 * Find Root System Description Pointer
93 * 1. search first 1K of EBDA
94 * 2. search 128K starting at 0xe0000
95 */
96
97 addr[0] = (__u8 *) ebda;
98 for (i = (ebda ? 0 : 1); i < 2; i++) {
99 for (j = 0; j < length[i]; j += 16) {
100 if (*((__u64 *) &addr[i][j]) == *sig && rsdp_check(&addr[i][j])) {
101 acpi_rsdp = (struct acpi_rsdp *) &addr[i][j];
102 goto rsdp_found;
103 }
104 }
105 }
106
107 return;
108
109rsdp_found:
110 printf("%L: ACPI Root System Description Pointer\n", acpi_rsdp);
111
112 acpi_rsdt = (struct acpi_rsdt *) acpi_rsdp->rsdt_address;
113 if (acpi_rsdp->revision) acpi_xsdt = (struct acpi_xsdt *) ((__address) acpi_rsdp->xsdt_address);
114
115 if (acpi_rsdt) map_sdt((struct acpi_sdt_header *) acpi_rsdt);
116 if (acpi_xsdt) map_sdt((struct acpi_sdt_header *) acpi_xsdt);
117
118 if (acpi_rsdt && !acpi_sdt_check((__u8 *) acpi_rsdt)) {
119 printf("RSDT: %s\n", "bad checksum");
120 return;
121 }
122 if (acpi_xsdt && !acpi_sdt_check((__u8 *) acpi_xsdt)) {
123 printf("XSDT: %s\n", "bad checksum");
124 return;
125 }
126
127 if (acpi_xsdt) configure_via_xsdt();
128 else if (acpi_rsdt) configure_via_rsdt();
129
130}
131
132void configure_via_rsdt(void)
133{
134 int i, j, cnt = (acpi_rsdt->header.length - sizeof(struct acpi_sdt_header))/sizeof(__u32);
135
136 for (i=0; i<cnt; i++) {
137 for (j=0; j<sizeof(signature_map)/sizeof(struct acpi_signature_map); j++) {
138 struct acpi_sdt_header *h = (struct acpi_sdt_header *) acpi_rsdt->entry[i];
139
140 map_sdt(h);
141 if (*((__u32 *) &h->signature[0])==*((__u32 *) &signature_map[j].signature[0])) {
142 if (!acpi_sdt_check((__u8 *) h))
143 goto next;
144 *signature_map[j].sdt_ptr = h;
145 printf("%L: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
146 }
147 }
148next:
149 ;
150 }
151}
152
153void configure_via_xsdt(void)
154{
155 int i, j, cnt = (acpi_xsdt->header.length - sizeof(struct acpi_sdt_header))/sizeof(__u64);
156
157 for (i=0; i<cnt; i++) {
158 for (j=0; j<sizeof(signature_map)/sizeof(struct acpi_signature_map); j++) {
159 struct acpi_sdt_header *h = (struct acpi_sdt_header *) ((__address) acpi_rsdt->entry[i]);
160
161 map_sdt(h);
162 if (*((__u32 *) &h->signature[0])==*((__u32 *) &signature_map[j].signature[0])) {
163 if (!acpi_sdt_check((__u8 *) h))
164 goto next;
165 *signature_map[j].sdt_ptr = h;
166 printf("%L: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);
167 }
168 }
169next:
170 ;
171 }
172
173}
Note: See TracBrowser for help on using the repository browser.