blob: c55611be113989fde836aa9cb753a14ad4ba2fde [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
Duncan Laurie9ccae752016-05-09 07:43:19 -070076void acpigen_emit_word(unsigned int data)
77{
78 acpigen_emit_byte(data & 0xff);
79 acpigen_emit_byte((data >> 8) & 0xff);
80}
81
82void acpigen_emit_dword(unsigned int data)
83{
84 acpigen_emit_byte(data & 0xff);
85 acpigen_emit_byte((data >> 8) & 0xff);
86 acpigen_emit_byte((data >> 16) & 0xff);
87 acpigen_emit_byte((data >> 24) & 0xff);
88}
89
Duncan Laurie85d80272016-07-02 19:53:54 -070090char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000091{
Duncan Laurie85d80272016-07-02 19:53:54 -070092 char *p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000093 /* package op */
94 acpigen_emit_byte(0x12);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010095 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -070096 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +000097 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -070098 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000099}
100
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100101void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000102{
103 /* byte op */
104 acpigen_emit_byte(0xa);
105 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000106}
107
Duncan Laurie9ccae752016-05-09 07:43:19 -0700108void acpigen_write_word(unsigned int data)
109{
110 /* word op */
111 acpigen_emit_byte(0xb);
112 acpigen_emit_word(data);
113}
114
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100115void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000116{
117 /* dword op */
118 acpigen_emit_byte(0xc);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700119 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000120}
121
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100122void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000123{
124 /* qword op */
125 acpigen_emit_byte(0xe);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700126 acpigen_emit_dword(data & 0xffffffff);
127 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000128}
129
Duncan Laurief7c38762016-05-09 08:20:38 -0700130void acpigen_write_zero(void)
131{
132 acpigen_emit_byte(0x00);
133}
134
135void acpigen_write_one(void)
136{
137 acpigen_emit_byte(0x01);
138}
139
140void acpigen_write_ones(void)
141{
142 acpigen_emit_byte(0xff);
143}
144
145void acpigen_write_integer(uint64_t data)
146{
147 if (data == 0)
148 acpigen_write_zero();
149 else if (data == 1)
150 acpigen_write_one();
151 else if (data <= 0xff)
152 acpigen_write_byte((unsigned char)data);
153 else if (data <= 0xffff)
154 acpigen_write_word((unsigned int)data);
155 else if (data <= 0xffffffff)
156 acpigen_write_dword((unsigned int)data);
157 else
158 acpigen_write_qword(data);
159}
160
161void acpigen_write_name_zero(const char *name)
162{
163 acpigen_write_name(name);
164 acpigen_write_one();
165}
166
167void acpigen_write_name_one(const char *name)
168{
169 acpigen_write_name(name);
170 acpigen_write_zero();
171}
172
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100173void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000174{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100175 acpigen_write_name(name);
176 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000177}
178
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100179void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000180{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100181 acpigen_write_name(name);
182 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000183}
184
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100185void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000186{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100187 acpigen_write_name(name);
188 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000189}
190
Duncan Laurief7c38762016-05-09 08:20:38 -0700191void acpigen_write_name_integer(const char *name, uint64_t val)
192{
193 acpigen_write_name(name);
194 acpigen_write_integer(val);
195}
196
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700197void acpigen_write_name_string(const char *name, const char *string)
198{
199 acpigen_write_name(name);
200 acpigen_write_string(string);
201}
202
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100203void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000204{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000205 int i;
206 for (i = 0; i < size; i++) {
207 acpigen_emit_byte(data[i]);
208 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000209}
210
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700211void acpigen_emit_string(const char *string)
212{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200213 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700214 acpigen_emit_byte('\0'); /* NUL */
215}
216
217void acpigen_write_string(const char *string)
218{
219 acpigen_emit_byte(0x0d);
220 acpigen_emit_string(string);
221}
222
Duncan Laurie37319032016-05-26 12:47:05 -0700223void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
224{
225 char hid[9]; /* CORExxxx */
226
227 snprintf(hid, sizeof(hid), "%.4s%04u", COREBOOT_ACPI_ID, id);
228 acpigen_write_name_string("_HID", hid);
229}
230
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100231/*
232 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600233 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
234 * and "By convention, when an ASL compiler pads a name shorter than 4
235 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100236 *
237 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
238 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000239
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100240static void acpigen_emit_simple_namestring(const char *name) {
241 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000242 char ud[] = "____";
243 for (i = 0; i < 4; i++) {
244 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100245 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000246 break;
247 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100248 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000249 }
250 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000251}
252
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100253static void acpigen_emit_double_namestring(const char *name, int dotpos) {
Rudolf Marek3310d752009-06-21 20:26:13 +0000254 /* mark dual name prefix */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100255 acpigen_emit_byte(0x2e);
256 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;
Rudolf Marek3310d752009-06-21 20:26:13 +0000263 /* mark multi name prefix */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100264 acpigen_emit_byte(0x2f);
265 acpigen_emit_byte(0x0);
Rudolf Marek3310d752009-06-21 20:26:13 +0000266 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
267
268 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100269 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000270 /* find end or next entity */
271 while ((name[0] != '.') && (name[0] != '\0'))
272 name++;
273 /* forward to next */
274 if (name[0] == '.')
275 name++;
276 count++;
277 }
278
279 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000280}
281
282
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100283void acpigen_emit_namestring(const char *namepath) {
Rudolf Marek3310d752009-06-21 20:26:13 +0000284 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000285 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000286
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600287 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000288 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100289 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000290 namepath++;
291 }
292
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600293 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000294 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100295 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000296 namepath++;
297 }
298
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200299 /* If we have only \\ or only ^...^. Then we need to put a null
300 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200301 if (namepath[0] == '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100302 acpigen_emit_byte(0x00);
303 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200304 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000305
306 i = 0;
307 while (namepath[i] != '\0') {
308 if (namepath[i] == '.') {
309 dotcount++;
310 dotpos = i;
311 }
312 i++;
313 }
314
315 if (dotcount == 0) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100316 acpigen_emit_simple_namestring(namepath);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000317 } else if (dotcount == 1) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100318 acpigen_emit_double_namestring(namepath, dotpos);
Rudolf Marek3310d752009-06-21 20:26:13 +0000319 } else {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100320 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000321 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000322}
323
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100324void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000325{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000326 /* name op */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100327 acpigen_emit_byte(0x8);
328 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000329}
330
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100331void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000332{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000333 /* scope op */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100334 acpigen_emit_byte(0x10);
335 acpigen_write_len_f();
336 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000337}
Rudolf Marekf997b552009-02-14 15:40:23 +0000338
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100339void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000340{
341/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200342 Processor (\_PR.CPUcpuindex, cpuindex, pblock_addr, pblock_len)
343 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000344*/
345 char pscope[16];
Rudolf Marekf997b552009-02-14 15:40:23 +0000346 /* processor op */
347 acpigen_emit_byte(0x5b);
348 acpigen_emit_byte(0x83);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100349 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000350
Vladimir Serbinenkoa37383d2013-11-26 02:41:26 +0100351 snprintf(pscope, sizeof (pscope),
Timothy Pearson033bb4b2015-02-10 22:21:39 -0600352 "\\_PR.CP%02d", (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100353 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000354 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700355 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000356 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000357}
358
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100359void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000360{
361/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200362 Name (_PCT, Package (0x02)
363 {
364 ResourceTemplate ()
365 {
366 Register (FFixedHW,
367 0x00, // Bit Width
368 0x00, // Bit Offset
369 0x0000000000000000, // Address
370 ,)
371 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000372
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200373 ResourceTemplate ()
374 {
375 Register (FFixedHW,
376 0x00, // Bit Width
377 0x00, // Bit Offset
378 0x0000000000000000, // Address
379 ,)
380 }
381 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000382*/
383 static char stream[] = {
384 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C, /* 00000030 "0._PCT.," */
385 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00, /* 00000038 "........" */
386 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000040 "........" */
387 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14, /* 00000048 "....y..." */
388 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00, /* 00000050 "........" */
389 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 00000058 "........" */
390 0x00, 0x79, 0x00
391 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100392 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000393}
394
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100395void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200396{
397/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200398 Name (_PTC, Package (0x02)
399 {
400 ResourceTemplate ()
401 {
402 Register (FFixedHW,
403 0x00, // Bit Width
404 0x00, // Bit Offset
405 0x0000000000000000, // Address
406 ,)
407 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200408
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200409 ResourceTemplate ()
410 {
411 Register (FFixedHW,
412 0x00, // Bit Width
413 0x00, // Bit Offset
414 0x0000000000000000, // Address
415 ,)
416 }
417 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200418*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200419 acpi_addr_t addr = {
420 .space_id = ACPI_ADDRESS_SPACE_FIXED,
421 .bit_width = 0,
422 .bit_offset = 0,
zbaoee8a9f6c2012-05-29 14:59:38 +0800423 {
424 .resv = 0
425 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200426 .addrl = 0,
427 .addrh = 0,
428 };
429
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100430 acpigen_write_name("_PTC");
431 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200432
433 /* ControlRegister */
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
438 /* StatusRegister */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100439 acpigen_write_resourcetemplate_header();
440 acpigen_write_register(&addr);
441 acpigen_write_resourcetemplate_footer();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200442
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100443 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200444}
445
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100446void acpigen_write_method(const char *name, int nargs)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100447{
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100448 /* method op */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100449 acpigen_emit_byte(0x14);
450 acpigen_write_len_f();
451 acpigen_emit_namestring(name);
452 acpigen_emit_byte(nargs & 7);
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100453}
454
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100455void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100456{
Duncan Laurie9ccae752016-05-09 07:43:19 -0700457 /* device op */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100458 acpigen_emit_byte(0x5b);
459 acpigen_emit_byte(0x82);
460 acpigen_write_len_f();
461 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100462}
463
Duncan Laurieabe2de82016-05-09 11:08:46 -0700464void acpigen_write_STA(uint8_t status)
465{
466 /*
467 * Method (_STA, 0, NotSerialized) { Return (status) }
468 */
469 acpigen_write_method("_STA", 0);
470 acpigen_emit_byte(0xa4);
471 acpigen_write_byte(status);
472 acpigen_pop_len();
473}
474
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100475/*
476 * Generates a func with max supported P-states.
477 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100478void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000479{
480/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200481 Method (_PPC, 0, NotSerialized)
482 {
483 Return (nr)
484 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000485*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100486 acpigen_write_method("_PPC", 0);
Rudolf Marekf997b552009-02-14 15:40:23 +0000487 /* return */
488 acpigen_emit_byte(0xa4);
489 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100490 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100491 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000492}
493
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100494/*
495 * Generates a func with max supported P-states saved
496 * in the variable PPCM.
497 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100498void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700499{
500/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200501 Method (_PPC, 0, NotSerialized)
502 {
503 Return (PPCM)
504 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700505*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100506 acpigen_write_method("_PPC", 0);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700507 /* return */
508 acpigen_emit_byte(0xa4);
509 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100510 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100511 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700512}
513
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100514void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200515{
516/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200517 // Sample _TPC method
518 Method (_TPC, 0, NotSerialized)
519 {
520 Return (\TLVL)
521 }
522*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100523 acpigen_write_method("_TPC", 0);
524 acpigen_emit_byte(0xa4); /* ReturnOp */
525 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100526 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200527}
528
Duncan Laurieabe2de82016-05-09 11:08:46 -0700529void acpigen_write_PRW(u32 wake, u32 level)
530{
531 /*
532 * Name (_PRW, Package () { wake, level }
533 */
534 acpigen_write_name("_PRW");
535 acpigen_write_package(2);
536 acpigen_write_integer(wake);
537 acpigen_write_integer(level);
538 acpigen_pop_len();
539}
540
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100541void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000542 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000543{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100544 acpigen_write_package(6);
545 acpigen_write_dword(coreFreq);
546 acpigen_write_dword(power);
547 acpigen_write_dword(transLat);
548 acpigen_write_dword(busmLat);
549 acpigen_write_dword(control);
550 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100551 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700552
553 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
554 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000555}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000556
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100557void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000558{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100559 acpigen_write_name("_PSD");
560 acpigen_write_package(1);
561 acpigen_write_package(5);
562 acpigen_write_byte(5); // 5 values
563 acpigen_write_byte(0); // revision 0
564 acpigen_write_dword(domain);
565 acpigen_write_dword(coordtype);
566 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100567 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100568 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000569}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000570
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100571void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200572{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100573 acpigen_write_package(4);
574 acpigen_write_resourcetemplate_header();
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200575 acpigen_write_register(&cstate->resource);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100576 acpigen_write_resourcetemplate_footer();
577 acpigen_write_dword(cstate->ctype);
578 acpigen_write_dword(cstate->latency);
579 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100580 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200581}
582
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100583void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200584{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100585 int i;
586 acpigen_write_name("_CST");
587 acpigen_write_package(nentries+1);
588 acpigen_write_dword(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200589
590 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100591 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200592
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100593 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200594}
595
Timothy Pearson83abd812015-06-08 19:35:06 -0500596void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype, u32 index)
597{
598 acpigen_write_name("_CSD");
599 acpigen_write_package(1);
600 acpigen_write_package(6);
601 acpigen_write_byte(6); // 6 values
602 acpigen_write_byte(0); // revision 0
603 acpigen_write_dword(domain);
604 acpigen_write_dword(coordtype);
605 acpigen_write_dword(numprocs);
606 acpigen_write_dword(index);
607 acpigen_pop_len();
608 acpigen_pop_len();
609}
610
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100611void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200612{
613/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200614 Sample _TSS package with 100% and 50% duty cycles
615 Name (_TSS, Package (0x02)
616 {
617 Package(){100, 1000, 0, 0x00, 0)
618 Package(){50, 520, 0, 0x18, 0)
619 })
620*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100621 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200622 acpi_tstate_t *tstate = tstate_list;
623
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100624 acpigen_write_name("_TSS");
625 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200626
627 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100628 acpigen_write_package(5);
629 acpigen_write_dword(tstate->percent);
630 acpigen_write_dword(tstate->power);
631 acpigen_write_dword(tstate->latency);
632 acpigen_write_dword(tstate->control);
633 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100634 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200635 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200636 }
637
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100638 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200639}
640
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100641void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200642{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100643 acpigen_write_name("_TSD");
644 acpigen_write_package(1);
645 acpigen_write_package(5);
646 acpigen_write_byte(5); // 5 values
647 acpigen_write_byte(0); // revision 0
648 acpigen_write_dword(domain);
649 acpigen_write_dword(coordtype);
650 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100651 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100652 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200653}
654
655
656
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100657void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000658{
659 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200660 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000661 * Byte 0:
662 * Bit7 : 1 => big item
663 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
664 */
665 acpigen_emit_byte(0x86);
666 /* Byte 1+2: length (0x0009) */
667 acpigen_emit_byte(0x09);
668 acpigen_emit_byte(0x00);
669 /* bit1-7 are ignored */
670 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700671 acpigen_emit_dword(base);
672 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000673}
674
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100675void acpigen_write_register(acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200676{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200677 acpigen_emit_byte(0x82); /* Register Descriptor */
678 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
679 acpigen_emit_byte(0x00); /* Register Length 15:8 */
680 acpigen_emit_byte(addr->space_id); /* Address Space ID */
681 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
682 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
683 acpigen_emit_byte(addr->resv); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -0700684 acpigen_emit_dword(addr->addrl); /* Register Address Low */
685 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +0200686}
687
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100688void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100689{
690 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200691 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100692 * Byte 0:
693 * Bit7 : 0 => small item
694 * Bit6-3: 0100 (0x4) => IRQ port descriptor
695 * Bit2-0: 010 (0x2) => 2 Bytes long
696 */
697 acpigen_emit_byte(0x22);
698 acpigen_emit_byte(mask & 0xff);
699 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100700}
701
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100702void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000703{
704 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200705 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000706 * Byte 0:
707 * Bit7 : 0 => small item
708 * Bit6-3: 1000 (0x8) => I/O port descriptor
709 * Bit2-0: 111 (0x7) => 7 Bytes long
710 */
711 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100712 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000713 /* bit1-7 are ignored */
714 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
715 /* minimum base address the device may be configured for */
716 acpigen_emit_byte(min & 0xff);
717 acpigen_emit_byte((min >> 8) & 0xff);
718 /* maximum base address the device may be configured for */
719 acpigen_emit_byte(max & 0xff);
720 acpigen_emit_byte((max >> 8) & 0xff);
721 /* alignment for min base */
722 acpigen_emit_byte(align & 0xff);
723 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000724}
725
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100726void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000727{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000728 /*
729 * A ResourceTemplate() is a Buffer() with a
730 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100731 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000732 * (small item 0xf, len 1)
733 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100734 acpigen_emit_byte(0x11); /* Buffer opcode */
735 acpigen_write_len_f();
736 acpigen_emit_byte(0x0b); /* Word opcode */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000737 len_stack[ltop++] = acpigen_get_current();
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100738 acpigen_emit_byte(0x00);
739 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000740}
741
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100742void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000743{
744 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100745 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000746 /*
747 * end tag (acpi 4.0 Section 6.4.2.8)
748 * 0x79 <checksum>
749 * 0x00 is treated as a good checksum according to the spec
750 * and is what iasl generates.
751 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100752 acpigen_emit_byte(0x79);
753 acpigen_emit_byte(0x00);
754
Martin Rothe3690102016-01-06 15:21:02 -0700755 len = gencurrent - p;
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100756
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000757 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +0100758 p[0] = len & 0xff;
759 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000760 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100761 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000762}
763
764static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
765 struct resource *res)
766{
767 acpigen_write_mem32fixed(0, res->base, res->size);
768}
769
770static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
771 struct resource *res)
772{
773 resource_t base = res->base;
774 resource_t size = res->size;
775 while (size > 0) {
776 resource_t sz = size > 255 ? 255 : size;
777 acpigen_write_io16(base, base, 0, sz, 1);
778 size -= sz;
779 base += sz;
780 }
781}
782
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100783void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000784{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100785 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000786
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100787 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000788 search_global_resources(
789 IORESOURCE_MEM | IORESOURCE_RESERVE,
790 IORESOURCE_MEM | IORESOURCE_RESERVE,
791 acpigen_add_mainboard_rsvd_mem32, 0);
792
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100793 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000794 search_global_resources(
795 IORESOURCE_IO | IORESOURCE_RESERVE,
796 IORESOURCE_IO | IORESOURCE_RESERVE,
797 acpigen_add_mainboard_rsvd_io, 0);
798
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100799 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000800}
801
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100802void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000803{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100804 acpigen_write_scope(scope);
805 acpigen_write_name(name);
806 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100807 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000808}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100809
810static int hex2bin(const char c)
811{
812 if (c >= 'A' && c <= 'F')
813 return c - 'A' + 10;
814 if (c >= 'a' && c <= 'f')
815 return c - 'a' + 10;
816 return c - '0';
817}
818
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100819void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100820{
821 u32 compact = 0;
822
823 /* Clamping individual values would be better but
824 there is a disagreement over what is a valid
825 EISA id, so accept anything and don't clamp,
826 parent code should create a valid EISAid.
827 */
828 compact |= (eisaid[0] - 'A' + 1) << 26;
829 compact |= (eisaid[1] - 'A' + 1) << 21;
830 compact |= (eisaid[2] - 'A' + 1) << 16;
831 compact |= hex2bin(eisaid[3]) << 12;
832 compact |= hex2bin(eisaid[4]) << 8;
833 compact |= hex2bin(eisaid[5]) << 4;
834 compact |= hex2bin(eisaid[6]);
835
836 acpigen_emit_byte(0xc);
837 acpigen_emit_byte((compact >> 24) & 0xff);
838 acpigen_emit_byte((compact >> 16) & 0xff);
839 acpigen_emit_byte((compact >> 8) & 0xff);
840 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +0100841}
Duncan Laurie3829f232016-05-09 11:08:46 -0700842
843/*
844 * ToUUID(uuid)
845 *
846 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
847 * order for the bytes that make up a UUID Buffer object.
848 * UUID byte order for input:
849 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
850 * UUID byte order for output:
851 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
852 */
853#define UUID_LEN 16
854void acpigen_write_uuid(const char *uuid)
855{
856 uint8_t buf[UUID_LEN];
857 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
858 8, 9, 10, 11, 12, 13, 14, 15 };
859
860 /* Parse UUID string into bytes */
861 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
862 return;
863
864 /* BufferOp */
865 acpigen_emit_byte(0x11);
866 acpigen_write_len_f();
867
868 /* Buffer length in bytes */
869 acpigen_write_word(UUID_LEN);
870
871 /* Output UUID in expected order */
872 for (i = 0; i < UUID_LEN; i++)
873 acpigen_emit_byte(buf[order[i]]);
874
875 acpigen_pop_len();
876}