Merge commit 'ac4040955b1669f0aac5937f623d6587d5210679' into upstream-merge
[qemu-kvm/amd-iommu.git] / hw / acpi.c
blobfe07c9b5e136304ebac0c272c29c668275dcf2e2
1 /*
2 * ACPI implementation
4 * Copyright (c) 2006 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2 as published by the Free Software Foundation.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>
18 #include "hw.h"
19 #include "pc.h"
20 #include "pci.h"
21 #include "sysemu.h"
22 #include "acpi.h"
23 #include "kvm.h"
24 #include "qemu-kvm.h"
25 #include "string.h"
27 struct acpi_table_header
29 char signature [4]; /* ACPI signature (4 ASCII characters) */
30 uint32_t length; /* Length of table, in bytes, including header */
31 uint8_t revision; /* ACPI Specification minor version # */
32 uint8_t checksum; /* To make sum of entire table == 0 */
33 char oem_id [6]; /* OEM identification */
34 char oem_table_id [8]; /* OEM table identification */
35 uint32_t oem_revision; /* OEM revision number */
36 char asl_compiler_id [4]; /* ASL compiler vendor ID */
37 uint32_t asl_compiler_revision; /* ASL compiler revision number */
38 } __attribute__((packed));
40 char *acpi_tables;
41 size_t acpi_tables_len;
43 static int acpi_checksum(const uint8_t *data, int len)
45 int sum, i;
46 sum = 0;
47 for(i = 0; i < len; i++)
48 sum += data[i];
49 return (-sum) & 0xff;
52 int acpi_table_add(const char *t)
54 static const char *dfl_id = "QEMUQEMU";
55 char buf[1024], *p, *f;
56 struct acpi_table_header acpi_hdr;
57 unsigned long val;
58 size_t off;
60 memset(&acpi_hdr, 0, sizeof(acpi_hdr));
62 if (get_param_value(buf, sizeof(buf), "sig", t)) {
63 strncpy(acpi_hdr.signature, buf, 4);
64 } else {
65 strncpy(acpi_hdr.signature, dfl_id, 4);
67 if (get_param_value(buf, sizeof(buf), "rev", t)) {
68 val = strtoul(buf, &p, 10);
69 if (val > 255 || *p != '\0')
70 goto out;
71 } else {
72 val = 1;
74 acpi_hdr.revision = (int8_t)val;
76 if (get_param_value(buf, sizeof(buf), "oem_id", t)) {
77 strncpy(acpi_hdr.oem_id, buf, 6);
78 } else {
79 strncpy(acpi_hdr.oem_id, dfl_id, 6);
82 if (get_param_value(buf, sizeof(buf), "oem_table_id", t)) {
83 strncpy(acpi_hdr.oem_table_id, buf, 8);
84 } else {
85 strncpy(acpi_hdr.oem_table_id, dfl_id, 8);
88 if (get_param_value(buf, sizeof(buf), "oem_rev", t)) {
89 val = strtol(buf, &p, 10);
90 if(*p != '\0')
91 goto out;
92 } else {
93 val = 1;
95 acpi_hdr.oem_revision = cpu_to_le32(val);
97 if (get_param_value(buf, sizeof(buf), "asl_compiler_id", t)) {
98 strncpy(acpi_hdr.asl_compiler_id, buf, 4);
99 } else {
100 strncpy(acpi_hdr.asl_compiler_id, dfl_id, 4);
103 if (get_param_value(buf, sizeof(buf), "asl_compiler_rev", t)) {
104 val = strtol(buf, &p, 10);
105 if(*p != '\0')
106 goto out;
107 } else {
108 val = 1;
110 acpi_hdr.asl_compiler_revision = cpu_to_le32(val);
112 if (!get_param_value(buf, sizeof(buf), "data", t)) {
113 buf[0] = '\0';
116 acpi_hdr.length = sizeof(acpi_hdr);
118 f = buf;
119 while (buf[0]) {
120 struct stat s;
121 char *n = strchr(f, ':');
122 if (n)
123 *n = '\0';
124 if(stat(f, &s) < 0) {
125 fprintf(stderr, "Can't stat file '%s': %s\n", f, strerror(errno));
126 goto out;
128 acpi_hdr.length += s.st_size;
129 if (!n)
130 break;
131 *n = ':';
132 f = n + 1;
135 if (!acpi_tables) {
136 acpi_tables_len = sizeof(uint16_t);
137 acpi_tables = qemu_mallocz(acpi_tables_len);
139 p = acpi_tables + acpi_tables_len;
140 acpi_tables_len += sizeof(uint16_t) + acpi_hdr.length;
141 acpi_tables = qemu_realloc(acpi_tables, acpi_tables_len);
143 acpi_hdr.length = cpu_to_le32(acpi_hdr.length);
144 *(uint16_t*)p = acpi_hdr.length;
145 p += sizeof(uint16_t);
146 memcpy(p, &acpi_hdr, sizeof(acpi_hdr));
147 off = sizeof(acpi_hdr);
149 f = buf;
150 while (buf[0]) {
151 struct stat s;
152 int fd;
153 char *n = strchr(f, ':');
154 if (n)
155 *n = '\0';
156 fd = open(f, O_RDONLY);
158 if(fd < 0)
159 goto out;
160 if(fstat(fd, &s) < 0) {
161 close(fd);
162 goto out;
165 do {
166 int r;
167 r = read(fd, p + off, s.st_size);
168 if (r > 0) {
169 off += r;
170 s.st_size -= r;
171 } else if ((r < 0 && errno != EINTR) || r == 0) {
172 close(fd);
173 goto out;
175 } while(s.st_size);
177 close(fd);
178 if (!n)
179 break;
180 f = n + 1;
183 ((struct acpi_table_header*)p)->checksum = acpi_checksum((uint8_t*)p, off);
184 /* increase number of tables */
185 (*(uint16_t*)acpi_tables) =
186 cpu_to_le32(le32_to_cpu(*(uint16_t*)acpi_tables) + 1);
187 return 0;
188 out:
189 if (acpi_tables) {
190 qemu_free(acpi_tables);
191 acpi_tables = NULL;
193 return -1;