blob: 27fa07ac248bb7a6ae5511c6c207df0e17b053e8 [file] [log] [blame]
Rudolf Marek293b5f52009-02-01 18:35:15 +00001/*
2 * This file is part of the coreboot project.
3 *
Timothy Pearson83abd812015-06-08 19:35:06 -05004 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Rudolf Marek293b5f52009-02-01 18:35:15 +00005 * Copyright (C) 2009 Rudolf Marek <r.marek@assembler.cz>
6 *
7 * This program is free software; you can redistribute it and/or modify
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00008 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
Rudolf Marek293b5f52009-02-01 18:35:15 +000010 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Rudolf Marek293b5f52009-02-01 18:35:15 +000015 */
16
Paul Menzel0f4c0e22013-02-22 12:33:08 +010017/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +000018#define ACPIGEN_LENSTACK_SIZE 10
19
Paul Menzel0f4c0e22013-02-22 12:33:08 +010020/*
Timothy Pearson83abd812015-06-08 19:35:06 -050021 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +010022 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +010023 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000024
Timothy Pearson83abd812015-06-08 19:35:06 -050025#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000026
Duncan Laurie3829f232016-05-09 11:08:46 -070027#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000028#include <string.h>
29#include <arch/acpigen.h>
30#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000031#include <device/device.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000032
33static char *gencurrent;
34
35char *len_stack[ACPIGEN_LENSTACK_SIZE];
36int ltop = 0;
37
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010038void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000039{
40 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010041 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000042 acpigen_emit_byte(0);
43 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050044 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000045}
46
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010047void acpigen_pop_len(void)
48{
49 int len;
50 ASSERT(ltop > 0)
51 char *p = len_stack[--ltop];
52 len = gencurrent - p;
53 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050054 /* generate store length for 0xfffff max */
55 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010056 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050057 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010058
59}
60
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000061void acpigen_set_current(char *curr)
62{
63 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000064}
65
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000066char *acpigen_get_current(void)
67{
68 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000069}
70
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010071void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000072{
73 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000074}
75
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070076void acpigen_emit_ext_op(uint8_t op)
77{
78 acpigen_emit_byte(EXT_OP_PREFIX);
79 acpigen_emit_byte(op);
80}
81
Duncan Laurie9ccae752016-05-09 07:43:19 -070082void acpigen_emit_word(unsigned int data)
83{
84 acpigen_emit_byte(data & 0xff);
85 acpigen_emit_byte((data >> 8) & 0xff);
86}
87
88void acpigen_emit_dword(unsigned int data)
89{
90 acpigen_emit_byte(data & 0xff);
91 acpigen_emit_byte((data >> 8) & 0xff);
92 acpigen_emit_byte((data >> 16) & 0xff);
93 acpigen_emit_byte((data >> 24) & 0xff);
94}
95
Duncan Laurie85d80272016-07-02 19:53:54 -070096char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000097{
Duncan Laurie85d80272016-07-02 19:53:54 -070098 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070099 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100100 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -0700101 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +0000102 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -0700103 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000104}
105
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100106void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000107{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700108 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000109 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000110}
111
Duncan Laurie9ccae752016-05-09 07:43:19 -0700112void acpigen_write_word(unsigned int data)
113{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700114 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700115 acpigen_emit_word(data);
116}
117
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100118void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000119{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700120 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700121 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000122}
123
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100124void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000125{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700126 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700127 acpigen_emit_dword(data & 0xffffffff);
128 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000129}
130
Duncan Laurief7c38762016-05-09 08:20:38 -0700131void acpigen_write_zero(void)
132{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700133 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700134}
135
136void acpigen_write_one(void)
137{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700138 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700139}
140
141void acpigen_write_ones(void)
142{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700143 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700144}
145
146void acpigen_write_integer(uint64_t data)
147{
148 if (data == 0)
149 acpigen_write_zero();
150 else if (data == 1)
151 acpigen_write_one();
152 else if (data <= 0xff)
153 acpigen_write_byte((unsigned char)data);
154 else if (data <= 0xffff)
155 acpigen_write_word((unsigned int)data);
156 else if (data <= 0xffffffff)
157 acpigen_write_dword((unsigned int)data);
158 else
159 acpigen_write_qword(data);
160}
161
162void acpigen_write_name_zero(const char *name)
163{
164 acpigen_write_name(name);
165 acpigen_write_one();
166}
167
168void acpigen_write_name_one(const char *name)
169{
170 acpigen_write_name(name);
171 acpigen_write_zero();
172}
173
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100174void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000175{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100176 acpigen_write_name(name);
177 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000178}
179
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100180void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000181{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100182 acpigen_write_name(name);
183 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000184}
185
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100186void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000187{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100188 acpigen_write_name(name);
189 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000190}
191
Duncan Laurief7c38762016-05-09 08:20:38 -0700192void acpigen_write_name_integer(const char *name, uint64_t val)
193{
194 acpigen_write_name(name);
195 acpigen_write_integer(val);
196}
197
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700198void acpigen_write_name_string(const char *name, const char *string)
199{
200 acpigen_write_name(name);
201 acpigen_write_string(string);
202}
203
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100204void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000205{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000206 int i;
207 for (i = 0; i < size; i++) {
208 acpigen_emit_byte(data[i]);
209 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000210}
211
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700212void acpigen_emit_string(const char *string)
213{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200214 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700215 acpigen_emit_byte('\0'); /* NUL */
216}
217
218void acpigen_write_string(const char *string)
219{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700220 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700221 acpigen_emit_string(string);
222}
223
Duncan Laurie37319032016-05-26 12:47:05 -0700224void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
225{
226 char hid[9]; /* CORExxxx */
227
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700228 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700229 acpigen_write_name_string("_HID", hid);
230}
231
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100232/*
233 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600234 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
235 * and "By convention, when an ASL compiler pads a name shorter than 4
236 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100237 *
238 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
239 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000240
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100241static void acpigen_emit_simple_namestring(const char *name) {
242 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000243 char ud[] = "____";
244 for (i = 0; i < 4; i++) {
245 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100246 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000247 break;
248 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100249 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000250 }
251 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000252}
253
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100254static void acpigen_emit_double_namestring(const char *name, int dotpos) {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700255 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100256 acpigen_emit_simple_namestring(name);
257 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000258}
259
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100260static void acpigen_emit_multi_namestring(const char *name) {
261 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000262 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700263 acpigen_emit_byte(MULTI_NAME_PREFIX);
264 acpigen_emit_byte(ZERO_OP);
Rudolf Marek3310d752009-06-21 20:26:13 +0000265 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
266
267 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100268 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000269 /* find end or next entity */
270 while ((name[0] != '.') && (name[0] != '\0'))
271 name++;
272 /* forward to next */
273 if (name[0] == '.')
274 name++;
275 count++;
276 }
277
278 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000279}
280
281
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100282void acpigen_emit_namestring(const char *namepath) {
Rudolf Marek3310d752009-06-21 20:26:13 +0000283 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000284 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000285
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600286 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000287 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100288 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000289 namepath++;
290 }
291
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600292 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000293 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100294 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000295 namepath++;
296 }
297
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200298 /* If we have only \\ or only ^...^. Then we need to put a null
299 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200300 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700301 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100302 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200303 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000304
305 i = 0;
306 while (namepath[i] != '\0') {
307 if (namepath[i] == '.') {
308 dotcount++;
309 dotpos = i;
310 }
311 i++;
312 }
313
314 if (dotcount == 0) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100315 acpigen_emit_simple_namestring(namepath);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000316 } else if (dotcount == 1) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100317 acpigen_emit_double_namestring(namepath, dotpos);
Rudolf Marek3310d752009-06-21 20:26:13 +0000318 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100319 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000320 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000321}
322
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100323void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000324{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700325 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100326 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000327}
328
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100329void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000330{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700331 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100332 acpigen_write_len_f();
333 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000334}
Rudolf Marekf997b552009-02-14 15:40:23 +0000335
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100336void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000337{
338/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200339 Processor (\_PR.CPUcpuindex, cpuindex, pblock_addr, pblock_len)
340 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000341*/
342 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700343 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100344 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000345
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200346 snprintf(pscope, sizeof(pscope),
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600347 "\\_PR.CP%02d", (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100348 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000349 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700350 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000351 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000352}
353
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100354void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000355{
356/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200357 Name (_PCT, Package (0x02)
358 {
359 ResourceTemplate ()
360 {
361 Register (FFixedHW,
362 0x00, // Bit Width
363 0x00, // Bit Offset
364 0x0000000000000000, // Address
365 ,)
366 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000367
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200368 ResourceTemplate ()
369 {
370 Register (FFixedHW,
371 0x00, // Bit Width
372 0x00, // Bit Offset
373 0x0000000000000000, // Address
374 ,)
375 }
376 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000377*/
378 static char stream[] = {
379 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C, /* 00000030 "0._PCT.," */
380 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, /* 00000038 "........" */
381 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000040 "........" */
382 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14, /* 00000048 "....y..." */
383 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00, /* 00000050 "........" */
384 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000058 "........" */
385 0x00, 0x79, 0x00
386 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100387 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000388}
389
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100390void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200391{
392/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200393 Name (_PTC, Package (0x02)
394 {
395 ResourceTemplate ()
396 {
397 Register (FFixedHW,
398 0x00, // Bit Width
399 0x00, // Bit Offset
400 0x0000000000000000, // Address
401 ,)
402 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200403
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200404 ResourceTemplate ()
405 {
406 Register (FFixedHW,
407 0x00, // Bit Width
408 0x00, // Bit Offset
409 0x0000000000000000, // Address
410 ,)
411 }
412 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200413*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200414 acpi_addr_t addr = {
415 .space_id = ACPI_ADDRESS_SPACE_FIXED,
416 .bit_width = 0,
417 .bit_offset = 0,
zbaoee8a9f6c2012-05-29 14:59:38 +0800418 {
419 .resv = 0
420 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200421 .addrl = 0,
422 .addrh = 0,
423 };
424
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100425 acpigen_write_name("_PTC");
426 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200427
428 /* ControlRegister */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100429 acpigen_write_resourcetemplate_header();
430 acpigen_write_register(&addr);
431 acpigen_write_resourcetemplate_footer();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200432
433 /* StatusRegister */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100434 acpigen_write_resourcetemplate_header();
435 acpigen_write_register(&addr);
436 acpigen_write_resourcetemplate_footer();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200437
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100438 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200439}
440
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100441void acpigen_write_method(const char *name, int nargs)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100442{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700443 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100444 acpigen_write_len_f();
445 acpigen_emit_namestring(name);
446 acpigen_emit_byte(nargs & 7);
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100447}
448
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100449void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100450{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700451 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100452 acpigen_write_len_f();
453 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100454}
455
Duncan Laurieabe2de82016-05-09 11:08:46 -0700456void acpigen_write_STA(uint8_t status)
457{
458 /*
459 * Method (_STA, 0, NotSerialized) { Return (status) }
460 */
461 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700462 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700463 acpigen_write_byte(status);
464 acpigen_pop_len();
465}
466
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100467/*
468 * Generates a func with max supported P-states.
469 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100470void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000471{
472/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200473 Method (_PPC, 0, NotSerialized)
474 {
475 Return (nr)
476 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000477*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100478 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700479 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000480 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100481 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100482 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000483}
484
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100485/*
486 * Generates a func with max supported P-states saved
487 * in the variable PPCM.
488 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100489void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700490{
491/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200492 Method (_PPC, 0, NotSerialized)
493 {
494 Return (PPCM)
495 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700496*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100497 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700498 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700499 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100500 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100501 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700502}
503
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100504void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200505{
506/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200507 // Sample _TPC method
508 Method (_TPC, 0, NotSerialized)
509 {
510 Return (\TLVL)
511 }
512*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100513 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700514 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100515 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100516 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200517}
518
Duncan Laurieabe2de82016-05-09 11:08:46 -0700519void acpigen_write_PRW(u32 wake, u32 level)
520{
521 /*
522 * Name (_PRW, Package () { wake, level }
523 */
524 acpigen_write_name("_PRW");
525 acpigen_write_package(2);
526 acpigen_write_integer(wake);
527 acpigen_write_integer(level);
528 acpigen_pop_len();
529}
530
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100531void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000532 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000533{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100534 acpigen_write_package(6);
535 acpigen_write_dword(coreFreq);
536 acpigen_write_dword(power);
537 acpigen_write_dword(transLat);
538 acpigen_write_dword(busmLat);
539 acpigen_write_dword(control);
540 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100541 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700542
543 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
544 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000545}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000546
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100547void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000548{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100549 acpigen_write_name("_PSD");
550 acpigen_write_package(1);
551 acpigen_write_package(5);
552 acpigen_write_byte(5); // 5 values
553 acpigen_write_byte(0); // revision 0
554 acpigen_write_dword(domain);
555 acpigen_write_dword(coordtype);
556 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100557 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100558 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000559}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000560
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100561void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200562{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100563 acpigen_write_package(4);
564 acpigen_write_resourcetemplate_header();
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200565 acpigen_write_register(&cstate->resource);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100566 acpigen_write_resourcetemplate_footer();
567 acpigen_write_dword(cstate->ctype);
568 acpigen_write_dword(cstate->latency);
569 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100570 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200571}
572
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100573void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200574{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100575 int i;
576 acpigen_write_name("_CST");
577 acpigen_write_package(nentries+1);
578 acpigen_write_dword(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200579
580 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100581 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200582
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100583 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200584}
585
Timothy Pearson83abd812015-06-08 19:35:06 -0500586void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype, u32 index)
587{
588 acpigen_write_name("_CSD");
589 acpigen_write_package(1);
590 acpigen_write_package(6);
591 acpigen_write_byte(6); // 6 values
592 acpigen_write_byte(0); // revision 0
593 acpigen_write_dword(domain);
594 acpigen_write_dword(coordtype);
595 acpigen_write_dword(numprocs);
596 acpigen_write_dword(index);
597 acpigen_pop_len();
598 acpigen_pop_len();
599}
600
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100601void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200602{
603/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200604 Sample _TSS package with 100% and 50% duty cycles
605 Name (_TSS, Package (0x02)
606 {
607 Package(){100, 1000, 0, 0x00, 0)
608 Package(){50, 520, 0, 0x18, 0)
609 })
610*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100611 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200612 acpi_tstate_t *tstate = tstate_list;
613
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100614 acpigen_write_name("_TSS");
615 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200616
617 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100618 acpigen_write_package(5);
619 acpigen_write_dword(tstate->percent);
620 acpigen_write_dword(tstate->power);
621 acpigen_write_dword(tstate->latency);
622 acpigen_write_dword(tstate->control);
623 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100624 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200625 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200626 }
627
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100628 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200629}
630
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100631void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200632{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100633 acpigen_write_name("_TSD");
634 acpigen_write_package(1);
635 acpigen_write_package(5);
636 acpigen_write_byte(5); // 5 values
637 acpigen_write_byte(0); // revision 0
638 acpigen_write_dword(domain);
639 acpigen_write_dword(coordtype);
640 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100641 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100642 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200643}
644
645
646
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100647void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000648{
649 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200650 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000651 * Byte 0:
652 * Bit7 : 1 => big item
653 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
654 */
655 acpigen_emit_byte(0x86);
656 /* Byte 1+2: length (0x0009) */
657 acpigen_emit_byte(0x09);
658 acpigen_emit_byte(0x00);
659 /* bit1-7 are ignored */
660 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700661 acpigen_emit_dword(base);
662 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000663}
664
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100665void acpigen_write_register(acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200666{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200667 acpigen_emit_byte(0x82); /* Register Descriptor */
668 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
669 acpigen_emit_byte(0x00); /* Register Length 15:8 */
670 acpigen_emit_byte(addr->space_id); /* Address Space ID */
671 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
672 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
673 acpigen_emit_byte(addr->resv); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -0700674 acpigen_emit_dword(addr->addrl); /* Register Address Low */
675 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +0200676}
677
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100678void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100679{
680 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200681 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100682 * Byte 0:
683 * Bit7 : 0 => small item
684 * Bit6-3: 0100 (0x4) => IRQ port descriptor
685 * Bit2-0: 010 (0x2) => 2 Bytes long
686 */
687 acpigen_emit_byte(0x22);
688 acpigen_emit_byte(mask & 0xff);
689 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100690}
691
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100692void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000693{
694 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200695 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000696 * Byte 0:
697 * Bit7 : 0 => small item
698 * Bit6-3: 1000 (0x8) => I/O port descriptor
699 * Bit2-0: 111 (0x7) => 7 Bytes long
700 */
701 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100702 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000703 /* bit1-7 are ignored */
704 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
705 /* minimum base address the device may be configured for */
706 acpigen_emit_byte(min & 0xff);
707 acpigen_emit_byte((min >> 8) & 0xff);
708 /* maximum base address the device may be configured for */
709 acpigen_emit_byte(max & 0xff);
710 acpigen_emit_byte((max >> 8) & 0xff);
711 /* alignment for min base */
712 acpigen_emit_byte(align & 0xff);
713 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000714}
715
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100716void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000717{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000718 /*
719 * A ResourceTemplate() is a Buffer() with a
720 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100721 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000722 * (small item 0xf, len 1)
723 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700724 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100725 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700726 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000727 len_stack[ltop++] = acpigen_get_current();
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100728 acpigen_emit_byte(0x00);
729 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000730}
731
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100732void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000733{
734 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100735 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000736 /*
737 * end tag (acpi 4.0 Section 6.4.2.8)
738 * 0x79 <checksum>
739 * 0x00 is treated as a good checksum according to the spec
740 * and is what iasl generates.
741 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100742 acpigen_emit_byte(0x79);
743 acpigen_emit_byte(0x00);
744
Martin Rothe3690102016-01-06 15:21:02 -0700745 len = gencurrent - p;
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100746
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000747 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100748 p[0] = len & 0xff;
749 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000750 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100751 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000752}
753
754static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
755 struct resource *res)
756{
757 acpigen_write_mem32fixed(0, res->base, res->size);
758}
759
760static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
761 struct resource *res)
762{
763 resource_t base = res->base;
764 resource_t size = res->size;
765 while (size > 0) {
766 resource_t sz = size > 255 ? 255 : size;
767 acpigen_write_io16(base, base, 0, sz, 1);
768 size -= sz;
769 base += sz;
770 }
771}
772
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100773void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000774{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100775 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000776
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100777 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000778 search_global_resources(
779 IORESOURCE_MEM | IORESOURCE_RESERVE,
780 IORESOURCE_MEM | IORESOURCE_RESERVE,
781 acpigen_add_mainboard_rsvd_mem32, 0);
782
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100783 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000784 search_global_resources(
785 IORESOURCE_IO | IORESOURCE_RESERVE,
786 IORESOURCE_IO | IORESOURCE_RESERVE,
787 acpigen_add_mainboard_rsvd_io, 0);
788
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100789 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000790}
791
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100792void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000793{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100794 acpigen_write_scope(scope);
795 acpigen_write_name(name);
796 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100797 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000798}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100799
800static int hex2bin(const char c)
801{
802 if (c >= 'A' && c <= 'F')
803 return c - 'A' + 10;
804 if (c >= 'a' && c <= 'f')
805 return c - 'a' + 10;
806 return c - '0';
807}
808
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100809void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100810{
811 u32 compact = 0;
812
813 /* Clamping individual values would be better but
814 there is a disagreement over what is a valid
815 EISA id, so accept anything and don't clamp,
816 parent code should create a valid EISAid.
817 */
818 compact |= (eisaid[0] - 'A' + 1) << 26;
819 compact |= (eisaid[1] - 'A' + 1) << 21;
820 compact |= (eisaid[2] - 'A' + 1) << 16;
821 compact |= hex2bin(eisaid[3]) << 12;
822 compact |= hex2bin(eisaid[4]) << 8;
823 compact |= hex2bin(eisaid[5]) << 4;
824 compact |= hex2bin(eisaid[6]);
825
826 acpigen_emit_byte(0xc);
827 acpigen_emit_byte((compact >> 24) & 0xff);
828 acpigen_emit_byte((compact >> 16) & 0xff);
829 acpigen_emit_byte((compact >> 8) & 0xff);
830 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100831}
Duncan Laurie3829f232016-05-09 11:08:46 -0700832
833/*
834 * ToUUID(uuid)
835 *
836 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
837 * order for the bytes that make up a UUID Buffer object.
838 * UUID byte order for input:
839 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
840 * UUID byte order for output:
841 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
842 */
843#define UUID_LEN 16
844void acpigen_write_uuid(const char *uuid)
845{
846 uint8_t buf[UUID_LEN];
847 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
848 8, 9, 10, 11, 12, 13, 14, 15 };
849
850 /* Parse UUID string into bytes */
851 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
852 return;
853
854 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700855 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -0700856 acpigen_write_len_f();
857
858 /* Buffer length in bytes */
859 acpigen_write_word(UUID_LEN);
860
861 /* Output UUID in expected order */
862 for (i = 0; i < UUID_LEN; i++)
863 acpigen_emit_byte(buf[order[i]]);
864
865 acpigen_pop_len();
866}