blob: 7afb839e5d04b87bc97ad4ffa8d3e5212079312e [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Rudolf Marek293b5f52009-02-01 18:35:15 +00002
Paul Menzel0f4c0e22013-02-22 12:33:08 +01003/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +00004#define ACPIGEN_LENSTACK_SIZE 10
5
Paul Menzel0f4c0e22013-02-22 12:33:08 +01006/*
Timothy Pearson83abd812015-06-08 19:35:06 -05007 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +01008 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +01009 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000010
Timothy Pearson83abd812015-06-08 19:35:06 -050011#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000012
Duncan Laurie3829f232016-05-09 11:08:46 -070013#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000014#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070015#include <acpi/acpigen.h>
Elyes HAOUAScd4fe0f2019-03-29 17:12:15 +010016#include <assert.h>
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -060017#include <commonlib/helpers.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000018#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000019#include <device/device.h>
Duncan Laurie08a942f2020-04-29 12:13:14 -070020#include <device/soundwire.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010021#include <types.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000022
23static char *gencurrent;
24
25char *len_stack[ACPIGEN_LENSTACK_SIZE];
26int ltop = 0;
27
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010028void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000029{
30 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010031 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000032 acpigen_emit_byte(0);
33 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050034 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000035}
36
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010037void acpigen_pop_len(void)
38{
39 int len;
40 ASSERT(ltop > 0)
41 char *p = len_stack[--ltop];
42 len = gencurrent - p;
43 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050044 /* generate store length for 0xfffff max */
45 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010046 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050047 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010048
49}
50
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000051void acpigen_set_current(char *curr)
52{
53 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000054}
55
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000056char *acpigen_get_current(void)
57{
58 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000059}
60
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010061void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000062{
63 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000064}
65
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070066void acpigen_emit_ext_op(uint8_t op)
67{
68 acpigen_emit_byte(EXT_OP_PREFIX);
69 acpigen_emit_byte(op);
70}
71
Duncan Laurie9ccae752016-05-09 07:43:19 -070072void acpigen_emit_word(unsigned int data)
73{
74 acpigen_emit_byte(data & 0xff);
75 acpigen_emit_byte((data >> 8) & 0xff);
76}
77
78void acpigen_emit_dword(unsigned int data)
79{
80 acpigen_emit_byte(data & 0xff);
81 acpigen_emit_byte((data >> 8) & 0xff);
82 acpigen_emit_byte((data >> 16) & 0xff);
83 acpigen_emit_byte((data >> 24) & 0xff);
84}
85
Duncan Laurie85d80272016-07-02 19:53:54 -070086char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000087{
Duncan Laurie85d80272016-07-02 19:53:54 -070088 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070089 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010090 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -070091 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +000092 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -070093 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000094}
95
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010096void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +000097{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070098 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +000099 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000100}
101
Duncan Laurie9ccae752016-05-09 07:43:19 -0700102void acpigen_write_word(unsigned int data)
103{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700104 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700105 acpigen_emit_word(data);
106}
107
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100108void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000109{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700110 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700111 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000112}
113
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100114void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000115{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700116 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700117 acpigen_emit_dword(data & 0xffffffff);
118 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000119}
120
Duncan Laurief7c38762016-05-09 08:20:38 -0700121void acpigen_write_zero(void)
122{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700123 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700124}
125
126void acpigen_write_one(void)
127{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700128 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700129}
130
131void acpigen_write_ones(void)
132{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700133 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700134}
135
136void acpigen_write_integer(uint64_t data)
137{
138 if (data == 0)
139 acpigen_write_zero();
140 else if (data == 1)
141 acpigen_write_one();
142 else if (data <= 0xff)
143 acpigen_write_byte((unsigned char)data);
144 else if (data <= 0xffff)
145 acpigen_write_word((unsigned int)data);
146 else if (data <= 0xffffffff)
147 acpigen_write_dword((unsigned int)data);
148 else
149 acpigen_write_qword(data);
150}
151
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100152void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000153{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100154 acpigen_write_name(name);
155 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000156}
157
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100158void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000159{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100160 acpigen_write_name(name);
161 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000162}
163
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100164void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000165{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100166 acpigen_write_name(name);
167 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000168}
169
Duncan Laurief7c38762016-05-09 08:20:38 -0700170void acpigen_write_name_integer(const char *name, uint64_t val)
171{
172 acpigen_write_name(name);
173 acpigen_write_integer(val);
174}
175
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700176void acpigen_write_name_string(const char *name, const char *string)
177{
178 acpigen_write_name(name);
179 acpigen_write_string(string);
180}
181
Patrick Rudolph389c8272019-12-17 13:54:41 +0100182void acpigen_write_name_unicode(const char *name, const char *string)
183{
184 const size_t len = strlen(string) + 1;
185 acpigen_write_name(name);
186 acpigen_emit_byte(BUFFER_OP);
187 acpigen_write_len_f();
188 acpigen_write_integer(len);
189 for (size_t i = 0; i < len; i++) {
190 const char c = string[i];
191 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
192 acpigen_emit_word(c >= 0 ? c : '?');
193 }
194 acpigen_pop_len();
195}
196
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100197void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000198{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000199 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700200 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000201 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000202}
203
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700204void acpigen_emit_string(const char *string)
205{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200206 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700207 acpigen_emit_byte('\0'); /* NUL */
208}
209
210void acpigen_write_string(const char *string)
211{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700212 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700213 acpigen_emit_string(string);
214}
215
Duncan Laurie37319032016-05-26 12:47:05 -0700216void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
217{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800218 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700219
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700220 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700221 acpigen_write_name_string("_HID", hid);
222}
223
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100224/*
225 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600226 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
227 * and "By convention, when an ASL compiler pads a name shorter than 4
228 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100229 *
230 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
231 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000232
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700233static void acpigen_emit_simple_namestring(const char *name)
234{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100235 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000236 char ud[] = "____";
237 for (i = 0; i < 4; i++) {
238 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100239 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000240 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000241 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700242 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000243 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000244}
245
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700246static void acpigen_emit_double_namestring(const char *name, int dotpos)
247{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700248 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100249 acpigen_emit_simple_namestring(name);
250 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000251}
252
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700253static void acpigen_emit_multi_namestring(const char *name)
254{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100255 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000256 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700257 acpigen_emit_byte(MULTI_NAME_PREFIX);
258 acpigen_emit_byte(ZERO_OP);
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100259 pathlen = ((unsigned char *)acpigen_get_current()) - 1;
Rudolf Marek3310d752009-06-21 20:26:13 +0000260
261 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100262 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000263 /* find end or next entity */
264 while ((name[0] != '.') && (name[0] != '\0'))
265 name++;
266 /* forward to next */
267 if (name[0] == '.')
268 name++;
269 count++;
270 }
271
272 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000273}
274
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700275void acpigen_emit_namestring(const char *namepath)
276{
Rudolf Marek3310d752009-06-21 20:26:13 +0000277 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000278 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000279
Ronak Kanabar7c0f0072020-11-30 15:40:51 +0530280 /* Check for NULL pointer */
281 if (!namepath)
282 return;
283
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600284 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000285 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100286 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000287 namepath++;
288 }
289
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600290 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000291 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100292 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000293 namepath++;
294 }
295
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200296 /* If we have only \\ or only ^...^. Then we need to put a null
297 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200298 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700299 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100300 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200301 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000302
303 i = 0;
304 while (namepath[i] != '\0') {
305 if (namepath[i] == '.') {
306 dotcount++;
307 dotpos = i;
308 }
309 i++;
310 }
311
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700312 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100313 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700314 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100315 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700316 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100317 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000318}
319
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100320void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000321{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700322 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100323 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000324}
325
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100326void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000327{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700328 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100329 acpigen_write_len_f();
330 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000331}
Rudolf Marekf997b552009-02-14 15:40:23 +0000332
Duncan Laurie2fe74712020-06-01 17:36:56 -0700333void acpigen_get_package_op_element(uint8_t package_op, unsigned int element, uint8_t dest_op)
334{
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800335 /* <dest_op> = DeRefOf (<package_op>[<element>]) */
Duncan Laurie2fe74712020-06-01 17:36:56 -0700336 acpigen_write_store();
337 acpigen_emit_byte(DEREF_OP);
338 acpigen_emit_byte(INDEX_OP);
339 acpigen_emit_byte(package_op);
340 acpigen_write_integer(element);
341 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
342 acpigen_emit_byte(dest_op);
343}
344
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800345void acpigen_set_package_op_element_int(uint8_t package_op, unsigned int element, uint64_t src)
346{
347 /* DeRefOf (<package>[<element>]) = <src> */
348 acpigen_write_store();
349 acpigen_write_integer(src);
350 acpigen_emit_byte(DEREF_OP);
351 acpigen_emit_byte(INDEX_OP);
352 acpigen_emit_byte(package_op);
353 acpigen_write_integer(element);
354 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
355}
356
357void acpigen_get_package_element(const char *package, unsigned int element, uint8_t dest_op)
358{
359 /* <dest_op> = <package>[<element>] */
360 acpigen_write_store();
361 acpigen_emit_byte(INDEX_OP);
362 acpigen_emit_namestring(package);
363 acpigen_write_integer(element);
364 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
365 acpigen_emit_byte(dest_op);
366}
367
368void acpigen_set_package_element_int(const char *package, unsigned int element, uint64_t src)
369{
370 /* <package>[<element>] = <src> */
371 acpigen_write_store();
372 acpigen_write_integer(src);
373 acpigen_emit_byte(INDEX_OP);
374 acpigen_emit_namestring(package);
375 acpigen_write_integer(element);
376 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
377}
378
379void acpigen_set_package_element_namestr(const char *package, unsigned int element,
380 const char *src)
381{
382 /* <package>[<element>] = <src> */
383 acpigen_write_store();
384 acpigen_emit_namestring(src);
385 acpigen_emit_byte(INDEX_OP);
386 acpigen_emit_namestring(package);
387 acpigen_write_integer(element);
388 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
389}
390
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100391void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000392{
393/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100394 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200395 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000396*/
397 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700398 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100399 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000400
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200401 snprintf(pscope, sizeof(pscope),
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100402 CONFIG_ACPI_CPU_STRING, (unsigned int)cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100403 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000404 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700405 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000406 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000407}
408
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100409void acpigen_write_processor_package(const char *const name, const unsigned int first_core,
Nico Huber4d211ac2017-09-01 21:14:36 +0200410 const unsigned int core_count)
411{
412 unsigned int i;
413 char pscope[16];
414
415 acpigen_write_name(name);
416 acpigen_write_package(core_count);
417 for (i = first_core; i < first_core + core_count; ++i) {
418 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING, i);
419 acpigen_emit_namestring(pscope);
420 }
421 acpigen_pop_len();
422}
423
Arthur Heymans8f055272018-11-28 13:18:57 +0100424/* Method to notify all CPU cores */
425void acpigen_write_processor_cnot(const unsigned int number_of_cores)
426{
427 int core_id;
428
Christian Walterbe3979c2019-12-18 15:07:59 +0100429 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100430 for (core_id = 0; core_id < number_of_cores; core_id++) {
431 char buffer[DEVICE_PATH_MAX];
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100432 snprintf(buffer, sizeof(buffer), CONFIG_ACPI_CPU_STRING, core_id);
Arthur Heymans8f055272018-11-28 13:18:57 +0100433 acpigen_emit_byte(NOTIFY_OP);
434 acpigen_emit_namestring(buffer);
435 acpigen_emit_byte(ARG0_OP);
436 }
437 acpigen_pop_len();
438}
439
Naresh G Solanki8535c662016-10-25 00:51:24 +0530440/*
441 * Generate ACPI AML code for OperationRegion
442 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
443 * where rname is region name, space is region space, offset is region offset &
444 * len is region length.
445 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
446 */
Duncan Laurie35029602020-10-09 17:50:25 +0000447void acpigen_write_opregion(const struct opregion *opreg)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530448{
449 /* OpregionOp */
450 acpigen_emit_ext_op(OPREGION_OP);
451 /* NameString 4 chars only */
452 acpigen_emit_simple_namestring(opreg->name);
453 /* RegionSpace */
454 acpigen_emit_byte(opreg->regionspace);
455 /* RegionOffset & RegionLen, it can be byte word or double word */
456 acpigen_write_integer(opreg->regionoffset);
457 acpigen_write_integer(opreg->regionlen);
458}
459
Patrick Rudolph32bae492019-08-08 12:47:30 +0200460/*
461 * Generate ACPI AML code for Mutex
462 * Arg0: Pointer to name of mutex
463 * Arg1: Initial value of mutex
464 */
465void acpigen_write_mutex(const char *name, const uint8_t flags)
466{
467 /* MutexOp */
468 acpigen_emit_ext_op(MUTEX_OP);
469 /* NameString 4 chars only */
470 acpigen_emit_simple_namestring(name);
471 acpigen_emit_byte(flags);
472}
473
474void acpigen_write_acquire(const char *name, const uint16_t val)
475{
476 /* AcquireOp */
477 acpigen_emit_ext_op(ACQUIRE_OP);
478 /* NameString 4 chars only */
479 acpigen_emit_simple_namestring(name);
480 acpigen_emit_word(val);
481}
482
483void acpigen_write_release(const char *name)
484{
485 /* ReleaseOp */
486 acpigen_emit_ext_op(RELEASE_OP);
487 /* NameString 4 chars only */
488 acpigen_emit_simple_namestring(name);
489}
490
Patrick Rudolph894977b2017-07-01 16:15:05 +0200491static void acpigen_write_field_length(uint32_t len)
492{
493 uint8_t i, j;
494 uint8_t emit[4];
495
496 i = 1;
497 if (len < 0x40) {
498 emit[0] = len & 0x3F;
499 } else {
500 emit[0] = len & 0xF;
501 len >>= 4;
502 while (len) {
503 emit[i] = len & 0xFF;
504 i++;
505 len >>= 8;
506 }
507 }
508 /* Update bit 7:6 : Number of bytes followed by emit[0] */
509 emit[0] |= (i - 1) << 6;
510
511 for (j = 0; j < i; j++)
512 acpigen_emit_byte(emit[j]);
513}
514
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100515static void acpigen_write_field_offset(uint32_t offset, uint32_t current_bit_pos)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530516{
517 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530518
519 if (offset < current_bit_pos) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100520 printk(BIOS_WARNING, "%s: Cannot move offset backward", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530521 return;
522 }
523
524 diff_bits = offset - current_bit_pos;
525 /* Upper limit */
526 if (diff_bits > 0xFFFFFFF) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100527 printk(BIOS_WARNING, "%s: Offset very large to encode", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530528 return;
529 }
530
Naresh G Solanki8535c662016-10-25 00:51:24 +0530531 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200532 acpigen_write_field_length(diff_bits);
533}
534
Michael Niewöhner060dc7b2022-05-13 00:04:19 +0200535void acpigen_write_field_name(const char *name, uint32_t size)
Patrick Rudolph894977b2017-07-01 16:15:05 +0200536{
537 acpigen_emit_simple_namestring(name);
538 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530539}
540
Duncan Laurie095bbf92020-09-30 23:09:29 +0000541static void acpigen_write_field_reserved(uint32_t size)
542{
543 acpigen_emit_byte(0);
544 acpigen_write_field_length(size);
545}
546
Naresh G Solanki8535c662016-10-25 00:51:24 +0530547/*
548 * Generate ACPI AML code for Field
549 * Arg0: region name
550 * Arg1: Pointer to struct fieldlist.
551 * Arg2: no. of entries in Arg1
552 * Arg3: flags which indicate filed access type, lock rule & update rule.
553 * Example with fieldlist
554 * struct fieldlist l[] = {
555 * FIELDLIST_OFFSET(0x84),
556 * FIELDLIST_NAMESTR("PMCS", 2),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000557 * FIELDLIST_RESERVED(6),
Naresh G Solanki8535c662016-10-25 00:51:24 +0530558 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200559 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530560 * FIELD_PRESERVE);
561 * Output:
562 * Field (UART, AnyAcc, NoLock, Preserve)
563 * {
564 * Offset (0x84),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000565 * PMCS, 2,
566 * , 6,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530567 * }
568 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700569void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530570 uint8_t flags)
571{
572 uint16_t i;
573 uint32_t current_bit_pos = 0;
574
575 /* FieldOp */
576 acpigen_emit_ext_op(FIELD_OP);
577 /* Package Length */
578 acpigen_write_len_f();
579 /* NameString 4 chars only */
580 acpigen_emit_simple_namestring(name);
581 /* Field Flag */
582 acpigen_emit_byte(flags);
583
584 for (i = 0; i < count; i++) {
585 switch (l[i].type) {
586 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200587 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530588 current_bit_pos += l[i].bits;
589 break;
Duncan Laurie095bbf92020-09-30 23:09:29 +0000590 case RESERVED:
591 acpigen_write_field_reserved(l[i].bits);
592 current_bit_pos += l[i].bits;
593 break;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530594 case OFFSET:
595 acpigen_write_field_offset(l[i].bits, current_bit_pos);
596 current_bit_pos = l[i].bits;
597 break;
598 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100599 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530600 break;
601 }
602 }
603 acpigen_pop_len();
604}
605
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200606/*
607 * Generate ACPI AML code for IndexField
608 * Arg0: region name
609 * Arg1: Pointer to struct fieldlist.
610 * Arg2: no. of entries in Arg1
611 * Arg3: flags which indicate filed access type, lock rule & update rule.
612 * Example with fieldlist
613 * struct fieldlist l[] = {
614 * FIELDLIST_OFFSET(0x84),
615 * FIELDLIST_NAMESTR("PMCS", 2),
616 * };
617 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
618 * FIELD_NOLOCK |
619 * FIELD_PRESERVE);
620 * Output:
621 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
622 * {
623 * Offset (0x84),
624 * PMCS, 2
625 * }
626 */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100627void acpigen_write_indexfield(const char *idx, const char *data, struct fieldlist *l,
628 size_t count, uint8_t flags)
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200629{
630 uint16_t i;
631 uint32_t current_bit_pos = 0;
632
633 /* FieldOp */
634 acpigen_emit_ext_op(INDEX_FIELD_OP);
635 /* Package Length */
636 acpigen_write_len_f();
637 /* NameString 4 chars only */
638 acpigen_emit_simple_namestring(idx);
639 /* NameString 4 chars only */
640 acpigen_emit_simple_namestring(data);
641 /* Field Flag */
642 acpigen_emit_byte(flags);
643
644 for (i = 0; i < count; i++) {
645 switch (l[i].type) {
646 case NAME_STRING:
647 acpigen_write_field_name(l[i].name, l[i].bits);
648 current_bit_pos += l[i].bits;
649 break;
650 case OFFSET:
651 acpigen_write_field_offset(l[i].bits, current_bit_pos);
652 current_bit_pos = l[i].bits;
653 break;
654 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100655 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200656 break;
657 }
658 }
659 acpigen_pop_len();
660}
661
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100662void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000663{
664/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200665 Name (_PCT, Package (0x02)
666 {
667 ResourceTemplate ()
668 {
669 Register (FFixedHW,
670 0x00, // Bit Width
671 0x00, // Bit Offset
672 0x0000000000000000, // Address
673 ,)
674 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000675
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200676 ResourceTemplate ()
677 {
678 Register (FFixedHW,
679 0x00, // Bit Width
680 0x00, // Bit Offset
681 0x0000000000000000, // Address
682 ,)
683 }
684 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000685*/
686 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700687 /* 00000030 "0._PCT.," */
688 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
689 /* 00000038 "........" */
690 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
691 /* 00000040 "........" */
692 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
693 /* 00000048 "....y..." */
694 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
695 /* 00000050 "........" */
696 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
697 /* 00000058 "........" */
698 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000699 0x00, 0x79, 0x00
700 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100701 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000702}
703
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100704void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200705{
706/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200707 Name (_PTC, Package (0x02)
708 {
709 ResourceTemplate ()
710 {
711 Register (FFixedHW,
712 0x00, // Bit Width
713 0x00, // Bit Offset
714 0x0000000000000000, // Address
715 ,)
716 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200717
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200718 ResourceTemplate ()
719 {
720 Register (FFixedHW,
721 0x00, // Bit Width
722 0x00, // Bit Offset
723 0x0000000000000000, // Address
724 ,)
725 }
726 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200727*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200728 acpi_addr_t addr = {
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100729 .space_id = ACPI_ADDRESS_SPACE_FIXED,
730 .bit_width = 0,
731 .bit_offset = 0,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200732 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100733 .addrl = 0,
734 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200735 };
736
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100737 acpigen_write_name("_PTC");
738 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200739
740 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700741 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200742
743 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700744 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200745
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100746 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200747}
748
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700749static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100750{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700751 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100752 acpigen_write_len_f();
753 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700754 acpigen_emit_byte(flags);
755}
756
757/* Method (name, nargs, NotSerialized) */
758void acpigen_write_method(const char *name, int nargs)
759{
760 __acpigen_write_method(name, (nargs & 7));
761}
762
763/* Method (name, nargs, Serialized) */
764void acpigen_write_method_serialized(const char *name, int nargs)
765{
766 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100767}
768
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100769void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100770{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700771 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100772 acpigen_write_len_f();
773 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100774}
775
Raul E Rangel052c9632021-05-12 17:01:30 -0600776void acpigen_write_thermal_zone(const char *name)
777{
778 acpigen_emit_ext_op(THERMAL_ZONE_OP);
779 acpigen_write_len_f();
780 acpigen_emit_namestring(name);
781}
782
Duncan Laurieabe2de82016-05-09 11:08:46 -0700783void acpigen_write_STA(uint8_t status)
784{
785 /*
786 * Method (_STA, 0, NotSerialized) { Return (status) }
787 */
788 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700789 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700790 acpigen_write_byte(status);
791 acpigen_pop_len();
792}
793
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530794void acpigen_write_STA_ext(const char *namestring)
795{
796 /*
797 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
798 */
799 acpigen_write_method("_STA", 0);
800 acpigen_emit_byte(RETURN_OP);
801 acpigen_emit_namestring(namestring);
802 acpigen_pop_len();
803}
804
Raul E Rangelc7048322021-04-19 15:58:25 -0600805void acpigen_write_LPI_package(u64 level, const struct acpi_lpi_state *states, u16 nentries)
806{
807 /*
808 * Name (_LPI, Package (0x06) // _LPI: Low Power Idle States
809 * {
810 * 0x0000,
811 * 0x0000000000000000,
812 * 0x0003,
813 * Package (0x0A)
814 * {
815 * 0x00000002,
816 * 0x00000001,
817 * 0x00000001,
818 * 0x00000000,
819 * 0x00000000,
820 * 0x00000000,
821 * ResourceTemplate ()
822 * {
823 * Register (FFixedHW,
824 * 0x02, // Bit Width
825 * 0x02, // Bit Offset
826 * 0x0000000000000000, // Address
827 * ,)
828 * },
829 *
830 * ResourceTemplate ()
831 * {
832 * Register (SystemMemory,
833 * 0x00, // Bit Width
834 * 0x00, // Bit Offset
835 * 0x0000000000000000, // Address
836 * ,)
837 * },
838 *
839 * ResourceTemplate ()
840 * {
841 * Register (SystemMemory,
842 * 0x00, // Bit Width
843 * 0x00, // Bit Offset
844 * 0x0000000000000000, // Address
845 * ,)
846 * },
847 *
848 * "C1"
849 * },
850 * ...
851 * }
852 */
853
854 acpigen_write_name("_LPI");
855 acpigen_write_package(3 + nentries);
856 acpigen_write_word(0); /* Revision */
857 acpigen_write_qword(level);
858 acpigen_write_word(nentries);
859
860 for (size_t i = 0; i < nentries; i++, states++) {
861 acpigen_write_package(0xA);
862 acpigen_write_dword(states->min_residency_us);
863 acpigen_write_dword(states->worst_case_wakeup_latency_us);
864 acpigen_write_dword(states->flags);
865 acpigen_write_dword(states->arch_context_lost_flags);
866 acpigen_write_dword(states->residency_counter_frequency_hz);
867 acpigen_write_dword(states->enabled_parent_state);
868 acpigen_write_register_resource(&states->entry_method);
869 acpigen_write_register_resource(&states->residency_counter_register);
870 acpigen_write_register_resource(&states->usage_counter_register);
871 acpigen_write_string(states->state_name);
872 acpigen_pop_len();
873 }
874 acpigen_pop_len();
875}
876
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100877/*
878 * Generates a func with max supported P-states.
879 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100880void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000881{
882/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200883 Method (_PPC, 0, NotSerialized)
884 {
885 Return (nr)
886 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000887*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100888 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700889 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000890 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100891 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100892 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000893}
894
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100895/*
896 * Generates a func with max supported P-states saved
897 * in the variable PPCM.
898 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100899void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700900{
901/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200902 Method (_PPC, 0, NotSerialized)
903 {
904 Return (PPCM)
905 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700906*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100907 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700908 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700909 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100910 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100911 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700912}
913
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100914void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200915{
916/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200917 // Sample _TPC method
918 Method (_TPC, 0, NotSerialized)
919 {
920 Return (\TLVL)
921 }
922*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100923 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700924 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100925 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100926 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200927}
928
Duncan Laurieabe2de82016-05-09 11:08:46 -0700929void acpigen_write_PRW(u32 wake, u32 level)
930{
931 /*
932 * Name (_PRW, Package () { wake, level }
933 */
934 acpigen_write_name("_PRW");
935 acpigen_write_package(2);
936 acpigen_write_integer(wake);
937 acpigen_write_integer(level);
938 acpigen_pop_len();
939}
940
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100941void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat, u32 control,
942 u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000943{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100944 acpigen_write_package(6);
945 acpigen_write_dword(coreFreq);
946 acpigen_write_dword(power);
947 acpigen_write_dword(transLat);
948 acpigen_write_dword(busmLat);
949 acpigen_write_dword(control);
950 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100951 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700952
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100953 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n", coreFreq, power,
954 control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000955}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000956
Jason Gleneskca36aed2020-09-15 21:01:57 -0700957void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
958{
959 size_t pstate;
960
961 acpigen_write_name("_PSS");
962 acpigen_write_package(nentries);
963 for (pstate = 0; pstate < nentries; pstate++) {
964 acpigen_write_PSS_package(
965 pstate_values->core_freq, pstate_values->power,
966 pstate_values->transition_latency, pstate_values->bus_master_latency,
967 pstate_values->control_value, pstate_values->status_value);
968 pstate_values++;
969 }
970
971 acpigen_pop_len();
972}
973
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100974void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000975{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100976 acpigen_write_name("_PSD");
977 acpigen_write_package(1);
978 acpigen_write_package(5);
979 acpigen_write_byte(5); // 5 values
980 acpigen_write_byte(0); // revision 0
981 acpigen_write_dword(domain);
982 acpigen_write_dword(coordtype);
983 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100984 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100985 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000986}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000987
Angel Ponsd2794ce2021-10-17 12:59:43 +0200988void acpigen_write_CST_package_entry(const acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200989{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100990 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700991 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -0700992 acpigen_write_byte(cstate->ctype);
993 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100994 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100995 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200996}
997
Angel Ponsd2794ce2021-10-17 12:59:43 +0200998void acpigen_write_CST_package(const acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200999{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001000 int i;
1001 acpigen_write_name("_CST");
1002 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -07001003 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001004
1005 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001006 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001007
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001008 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001009}
1010
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001011void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
1012 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -05001013{
1014 acpigen_write_name("_CSD");
1015 acpigen_write_package(1);
1016 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -07001017 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -05001018 acpigen_write_byte(0); // revision 0
1019 acpigen_write_dword(domain);
1020 acpigen_write_dword(coordtype);
1021 acpigen_write_dword(numprocs);
1022 acpigen_write_dword(index);
1023 acpigen_pop_len();
1024 acpigen_pop_len();
1025}
1026
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001027void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001028{
1029/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +02001030 Sample _TSS package with 100% and 50% duty cycles
1031 Name (_TSS, Package (0x02)
1032 {
1033 Package(){100, 1000, 0, 0x00, 0)
1034 Package(){50, 520, 0, 0x18, 0)
1035 })
1036*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001037 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001038 acpi_tstate_t *tstate = tstate_list;
1039
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001040 acpigen_write_name("_TSS");
1041 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +02001042
1043 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001044 acpigen_write_package(5);
1045 acpigen_write_dword(tstate->percent);
1046 acpigen_write_dword(tstate->power);
1047 acpigen_write_dword(tstate->latency);
1048 acpigen_write_dword(tstate->control);
1049 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001050 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001051 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001052 }
1053
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001054 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001055}
1056
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001057void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001058{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001059 acpigen_write_name("_TSD");
1060 acpigen_write_package(1);
1061 acpigen_write_package(5);
1062 acpigen_write_byte(5); // 5 values
1063 acpigen_write_byte(0); // revision 0
1064 acpigen_write_dword(domain);
1065 acpigen_write_dword(coordtype);
1066 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001067 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001068 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001069}
1070
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001071void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001072{
1073 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001074 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001075 * Byte 0:
1076 * Bit7 : 1 => big item
1077 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
1078 */
1079 acpigen_emit_byte(0x86);
1080 /* Byte 1+2: length (0x0009) */
1081 acpigen_emit_byte(0x09);
1082 acpigen_emit_byte(0x00);
1083 /* bit1-7 are ignored */
1084 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -07001085 acpigen_emit_dword(base);
1086 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001087}
1088
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001089static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001090{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +02001091 acpigen_emit_byte(0x82); /* Register Descriptor */
1092 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
1093 acpigen_emit_byte(0x00); /* Register Length 15:8 */
1094 acpigen_emit_byte(addr->space_id); /* Address Space ID */
1095 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
1096 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +01001097 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -07001098 acpigen_emit_dword(addr->addrl); /* Register Address Low */
1099 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +02001100}
1101
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001102void acpigen_write_register_resource(const acpi_addr_t *addr)
1103{
1104 acpigen_write_resourcetemplate_header();
1105 acpigen_write_register(addr);
1106 acpigen_write_resourcetemplate_footer();
1107}
1108
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001109void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001110{
1111 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001112 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001113 * Byte 0:
1114 * Bit7 : 0 => small item
1115 * Bit6-3: 0100 (0x4) => IRQ port descriptor
1116 * Bit2-0: 010 (0x2) => 2 Bytes long
1117 */
1118 acpigen_emit_byte(0x22);
1119 acpigen_emit_byte(mask & 0xff);
1120 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001121}
1122
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001123void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001124{
1125 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001126 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001127 * Byte 0:
1128 * Bit7 : 0 => small item
1129 * Bit6-3: 1000 (0x8) => I/O port descriptor
1130 * Bit2-0: 111 (0x7) => 7 Bytes long
1131 */
1132 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001133 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001134 /* bit1-7 are ignored */
1135 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1136 /* minimum base address the device may be configured for */
1137 acpigen_emit_byte(min & 0xff);
1138 acpigen_emit_byte((min >> 8) & 0xff);
1139 /* maximum base address the device may be configured for */
1140 acpigen_emit_byte(max & 0xff);
1141 acpigen_emit_byte((max >> 8) & 0xff);
1142 /* alignment for min base */
1143 acpigen_emit_byte(align & 0xff);
1144 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001145}
1146
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001147void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001148{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001149 /*
1150 * A ResourceTemplate() is a Buffer() with a
1151 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001152 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001153 * (small item 0xf, len 1)
1154 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001155 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001156 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001157 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001158 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001159 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001160 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001161 acpigen_emit_byte(0x00);
1162 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001163}
1164
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001165void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001166{
1167 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001168 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001169 /*
1170 * end tag (acpi 4.0 Section 6.4.2.8)
1171 * 0x79 <checksum>
1172 * 0x00 is treated as a good checksum according to the spec
1173 * and is what iasl generates.
1174 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001175 acpigen_emit_byte(0x79);
1176 acpigen_emit_byte(0x00);
1177
Nico Huber7d89ce32017-04-14 00:08:18 +02001178 /* Start counting past the 2-bytes length added in
1179 acpigen_write_resourcetemplate() above. */
1180 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001181
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001182 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001183 p[0] = len & 0xff;
1184 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001185 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001186 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001187}
1188
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001189static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001190{
1191 acpigen_write_mem32fixed(0, res->base, res->size);
1192}
1193
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001194static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001195{
1196 resource_t base = res->base;
1197 resource_t size = res->size;
1198 while (size > 0) {
1199 resource_t sz = size > 255 ? 255 : size;
1200 acpigen_write_io16(base, base, 0, sz, 1);
1201 size -= sz;
1202 base += sz;
1203 }
1204}
1205
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001206void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001207{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001208 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001209
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001210 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001211 search_global_resources(
1212 IORESOURCE_MEM | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001213 IORESOURCE_MEM | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001214 acpigen_add_mainboard_rsvd_mem32, 0);
1215
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001216 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001217 search_global_resources(
1218 IORESOURCE_IO | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001219 IORESOURCE_IO | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001220 acpigen_add_mainboard_rsvd_io, 0);
1221
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001222 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001223}
1224
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001225void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001226{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001227 acpigen_write_scope(scope);
1228 acpigen_write_name(name);
1229 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001230 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001231}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001232
1233static int hex2bin(const char c)
1234{
1235 if (c >= 'A' && c <= 'F')
1236 return c - 'A' + 10;
1237 if (c >= 'a' && c <= 'f')
1238 return c - 'a' + 10;
1239 return c - '0';
1240}
1241
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001242void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001243{
1244 u32 compact = 0;
1245
1246 /* Clamping individual values would be better but
1247 there is a disagreement over what is a valid
1248 EISA id, so accept anything and don't clamp,
1249 parent code should create a valid EISAid.
1250 */
1251 compact |= (eisaid[0] - 'A' + 1) << 26;
1252 compact |= (eisaid[1] - 'A' + 1) << 21;
1253 compact |= (eisaid[2] - 'A' + 1) << 16;
1254 compact |= hex2bin(eisaid[3]) << 12;
1255 compact |= hex2bin(eisaid[4]) << 8;
1256 compact |= hex2bin(eisaid[5]) << 4;
1257 compact |= hex2bin(eisaid[6]);
1258
1259 acpigen_emit_byte(0xc);
1260 acpigen_emit_byte((compact >> 24) & 0xff);
1261 acpigen_emit_byte((compact >> 16) & 0xff);
1262 acpigen_emit_byte((compact >> 8) & 0xff);
1263 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001264}
Duncan Laurie3829f232016-05-09 11:08:46 -07001265
1266/*
1267 * ToUUID(uuid)
1268 *
1269 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1270 * order for the bytes that make up a UUID Buffer object.
1271 * UUID byte order for input:
1272 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1273 * UUID byte order for output:
1274 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1275 */
1276#define UUID_LEN 16
1277void acpigen_write_uuid(const char *uuid)
1278{
1279 uint8_t buf[UUID_LEN];
1280 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1281 8, 9, 10, 11, 12, 13, 14, 15 };
1282
1283 /* Parse UUID string into bytes */
1284 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1285 return;
1286
1287 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001288 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001289 acpigen_write_len_f();
1290
1291 /* Buffer length in bytes */
1292 acpigen_write_word(UUID_LEN);
1293
1294 /* Output UUID in expected order */
1295 for (i = 0; i < UUID_LEN; i++)
1296 acpigen_emit_byte(buf[order[i]]);
1297
1298 acpigen_pop_len();
1299}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001300
1301/*
1302 * Name (_PRx, Package(One) { name })
1303 * ...
1304 * PowerResource (name, level, order)
1305 */
1306void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001307 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001308{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001309 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001310 for (i = 0; i < dev_states_count; i++) {
1311 acpigen_write_name(dev_states[i]);
1312 acpigen_write_package(1);
1313 acpigen_emit_simple_namestring(name);
1314 acpigen_pop_len(); /* Package */
1315 }
1316
1317 acpigen_emit_ext_op(POWER_RES_OP);
1318
1319 acpigen_write_len_f();
1320
1321 acpigen_emit_simple_namestring(name);
1322 acpigen_emit_byte(level);
1323 acpigen_emit_word(order);
1324}
1325
1326/* Sleep (ms) */
1327void acpigen_write_sleep(uint64_t sleep_ms)
1328{
1329 acpigen_emit_ext_op(SLEEP_OP);
1330 acpigen_write_integer(sleep_ms);
1331}
1332
1333void acpigen_write_store(void)
1334{
1335 acpigen_emit_byte(STORE_OP);
1336}
1337
1338/* Store (src, dst) */
1339void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1340{
1341 acpigen_write_store();
1342 acpigen_emit_byte(src);
1343 acpigen_emit_byte(dst);
1344}
1345
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001346/* Store (src, "namestr") */
1347void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1348{
1349 acpigen_write_store();
1350 acpigen_emit_byte(src);
1351 acpigen_emit_namestring(dst);
1352}
1353
Duncan Laurie8e391d32020-09-30 23:17:41 +00001354/* Store (src, "namestr") */
1355void acpigen_write_store_int_to_namestr(uint64_t src, const char *dst)
1356{
1357 acpigen_write_store();
1358 acpigen_write_integer(src);
1359 acpigen_emit_namestring(dst);
1360}
1361
1362/* Store (src, dst) */
1363void acpigen_write_store_int_to_op(uint64_t src, uint8_t dst)
1364{
1365 acpigen_write_store();
1366 acpigen_write_integer(src);
1367 acpigen_emit_byte(dst);
1368}
1369
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001370/* Or (arg1, arg2, res) */
1371void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1372{
1373 acpigen_emit_byte(OR_OP);
1374 acpigen_emit_byte(arg1);
1375 acpigen_emit_byte(arg2);
1376 acpigen_emit_byte(res);
1377}
1378
Rajat Jain310623b2020-02-26 11:02:53 -08001379/* Xor (arg1, arg2, res) */
1380void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1381{
1382 acpigen_emit_byte(XOR_OP);
1383 acpigen_emit_byte(arg1);
1384 acpigen_emit_byte(arg2);
1385 acpigen_emit_byte(res);
1386}
1387
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001388/* And (arg1, arg2, res) */
1389void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1390{
1391 acpigen_emit_byte(AND_OP);
1392 acpigen_emit_byte(arg1);
1393 acpigen_emit_byte(arg2);
1394 acpigen_emit_byte(res);
1395}
1396
1397/* Not (arg, res) */
1398void acpigen_write_not(uint8_t arg, uint8_t res)
1399{
1400 acpigen_emit_byte(NOT_OP);
1401 acpigen_emit_byte(arg);
1402 acpigen_emit_byte(res);
1403}
1404
1405/* Store (str, DEBUG) */
1406void acpigen_write_debug_string(const char *str)
1407{
1408 acpigen_write_store();
1409 acpigen_write_string(str);
1410 acpigen_emit_ext_op(DEBUG_OP);
1411}
1412
1413/* Store (val, DEBUG) */
1414void acpigen_write_debug_integer(uint64_t val)
1415{
1416 acpigen_write_store();
1417 acpigen_write_integer(val);
1418 acpigen_emit_ext_op(DEBUG_OP);
1419}
1420
1421/* Store (op, DEBUG) */
1422void acpigen_write_debug_op(uint8_t op)
1423{
1424 acpigen_write_store();
1425 acpigen_emit_byte(op);
1426 acpigen_emit_ext_op(DEBUG_OP);
1427}
1428
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001429/* Store (str, DEBUG) */
1430void acpigen_write_debug_namestr(const char *str)
1431{
1432 acpigen_write_store();
1433 acpigen_emit_namestring(str);
1434 acpigen_emit_ext_op(DEBUG_OP);
1435}
1436
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001437void acpigen_write_if(void)
1438{
1439 acpigen_emit_byte(IF_OP);
1440 acpigen_write_len_f();
1441}
1442
1443/* If (And (arg1, arg2)) */
1444void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1445{
1446 acpigen_write_if();
1447 acpigen_emit_byte(AND_OP);
1448 acpigen_emit_byte(arg1);
1449 acpigen_emit_byte(arg2);
1450}
1451
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001452/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001453 * Generates ACPI code for checking if operand1 and operand2 are equal.
1454 * Both operand1 and operand2 are ACPI ops.
1455 *
1456 * If (Lequal (op,1 op2))
1457 */
1458void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1459{
1460 acpigen_write_if();
1461 acpigen_emit_byte(LEQUAL_OP);
1462 acpigen_emit_byte(op1);
1463 acpigen_emit_byte(op2);
1464}
1465
1466/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001467 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1468 * operand1 is ACPI op and operand2 is an integer.
1469 *
1470 * If (Lequal (op, val))
1471 */
1472void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001473{
1474 acpigen_write_if();
1475 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001476 acpigen_emit_byte(op);
1477 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001478}
1479
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001480/*
1481 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1482 * operand1 is namestring and operand2 is an integer.
1483 *
1484 * If (Lequal ("namestr", val))
1485 */
1486void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1487{
1488 acpigen_write_if();
1489 acpigen_emit_byte(LEQUAL_OP);
1490 acpigen_emit_namestring(namestr);
1491 acpigen_write_integer(val);
1492}
1493
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001494/*
1495 * Generates ACPI code to check at runtime if an object named `namestring`
1496 * exists, and leaves the If scope open to continue execute code when this
1497 * is true. NOTE: Requires matching acpigen_write_if_end().
1498 *
1499 * If (CondRefOf (NAME))
1500 */
1501void acpigen_write_if_cond_ref_of(const char *namestring)
1502{
1503 acpigen_write_if();
1504 acpigen_emit_ext_op(COND_REFOF_OP);
1505 acpigen_emit_namestring(namestring);
1506 acpigen_emit_byte(ZERO_OP); /* ignore COND_REFOF_OP destination */
1507}
1508
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001509/* Closes previously opened if statement and generates ACPI code for else statement. */
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001510void acpigen_write_else(void)
1511{
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001512 acpigen_pop_len();
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001513 acpigen_emit_byte(ELSE_OP);
1514 acpigen_write_len_f();
1515}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001516
Duncan Laurie36858202020-10-06 21:01:51 +00001517void acpigen_write_shiftleft_op_int(uint8_t src_result, uint64_t count)
1518{
1519 acpigen_emit_byte(SHIFT_LEFT_OP);
1520 acpigen_emit_byte(src_result);
1521 acpigen_write_integer(count);
1522 acpigen_emit_byte(ZERO_OP);
1523}
1524
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001525void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1526{
1527 acpigen_emit_byte(TO_BUFFER_OP);
1528 acpigen_emit_byte(src);
1529 acpigen_emit_byte(dst);
1530}
1531
1532void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1533{
1534 acpigen_emit_byte(TO_INTEGER_OP);
1535 acpigen_emit_byte(src);
1536 acpigen_emit_byte(dst);
1537}
1538
Aaron Durbin80bc0912020-08-19 23:17:42 -06001539void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1540{
1541 acpigen_emit_byte(TO_INTEGER_OP);
1542 acpigen_emit_namestring(source);
1543 acpigen_emit_byte(dst_op);
1544}
1545
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301546void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001547{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301548 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001549
1550 acpigen_emit_byte(BUFFER_OP);
1551 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301552 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001553
1554 for (i = 0; i < size; i++)
1555 acpigen_emit_byte(arr[i]);
1556
1557 acpigen_pop_len();
1558}
1559
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301560void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001561{
1562 acpigen_emit_byte(RETURN_OP);
1563 acpigen_write_byte_buffer(arr, size);
1564}
1565
1566void acpigen_write_return_singleton_buffer(uint8_t arg)
1567{
1568 acpigen_write_return_byte_buffer(&arg, 1);
1569}
1570
Duncan Laurie2fe74712020-06-01 17:36:56 -07001571void acpigen_write_return_op(uint8_t arg)
1572{
1573 acpigen_emit_byte(RETURN_OP);
1574 acpigen_emit_byte(arg);
1575}
1576
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001577void acpigen_write_return_byte(uint8_t arg)
1578{
1579 acpigen_emit_byte(RETURN_OP);
1580 acpigen_write_byte(arg);
1581}
1582
Naresh G Solanki05abe432016-11-17 00:16:29 +05301583void acpigen_write_return_integer(uint64_t arg)
1584{
1585 acpigen_emit_byte(RETURN_OP);
1586 acpigen_write_integer(arg);
1587}
1588
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001589void acpigen_write_return_namestr(const char *arg)
1590{
1591 acpigen_emit_byte(RETURN_OP);
1592 acpigen_emit_namestring(arg);
1593}
1594
Naresh G Solanki05abe432016-11-17 00:16:29 +05301595void acpigen_write_return_string(const char *arg)
1596{
1597 acpigen_emit_byte(RETURN_OP);
1598 acpigen_write_string(arg);
1599}
1600
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001601void acpigen_write_upc(enum acpi_upc_type type)
1602{
1603 acpigen_write_name("_UPC");
1604 acpigen_write_package(4);
1605 /* Connectable */
1606 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1607 /* Type */
1608 acpigen_write_byte(type);
1609 /* Reserved0 */
1610 acpigen_write_zero();
1611 /* Reserved1 */
1612 acpigen_write_zero();
1613 acpigen_pop_len();
1614}
1615
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001616void acpigen_write_pld(const struct acpi_pld *pld)
1617{
1618 uint8_t buf[20];
1619
1620 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1621 return;
1622
1623 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001624 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001625 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001626 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001627}
1628
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001629void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *), size_t count, void *arg)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301630{
1631 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1632 acpigen_write_dsm_uuid_arr(&id, 1);
1633}
1634
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001635/*
1636 * Create a supported functions bitmask
1637 * bit 0: other functions than 0 are supported
1638 * bits 1-x: function x supported
1639 */
1640static void acpigen_dsm_uuid_enum_functions(const struct dsm_uuid *id)
1641{
1642 const size_t bytes = DIV_ROUND_UP(id->count, BITS_PER_BYTE);
1643 uint8_t *buffer = alloca(bytes);
1644 bool set = false;
1645 size_t cb_idx = 0;
1646
1647 memset(buffer, 0, bytes);
1648
1649 for (size_t i = 0; i < bytes; i++) {
1650 for (size_t j = 0; j < BITS_PER_BYTE; j++) {
1651 if (cb_idx >= id->count)
1652 break;
1653
1654 if (id->callbacks[cb_idx++]) {
1655 set = true;
1656 buffer[i] |= BIT(j);
1657 }
1658 }
1659 }
1660
1661 if (set)
1662 buffer[0] |= BIT(0);
1663
1664 acpigen_write_return_byte_buffer(buffer, bytes);
1665}
1666
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301667static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1668{
1669 size_t i;
1670
1671 /* If (LEqual (Local0, ToUUID(uuid))) */
1672 acpigen_write_if();
1673 acpigen_emit_byte(LEQUAL_OP);
1674 acpigen_emit_byte(LOCAL0_OP);
1675 acpigen_write_uuid(id->uuid);
1676
1677 /* ToInteger (Arg2, Local1) */
1678 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1679
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001680 /* If (LEqual(Local1, 0)) */
1681 {
1682 acpigen_write_if_lequal_op_int(LOCAL1_OP, 0);
1683 if (id->callbacks[0])
1684 id->callbacks[0](id->arg);
1685 else if (id->count)
1686 acpigen_dsm_uuid_enum_functions(id);
1687 acpigen_write_if_end();
1688 }
1689
1690 for (i = 1; i < id->count; i++) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301691 /* If (LEqual (Local1, i)) */
1692 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1693
1694 /* Callback to write if handler. */
1695 if (id->callbacks[i])
1696 id->callbacks[i](id->arg);
1697
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001698 acpigen_write_if_end(); /* If */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301699 }
1700
1701 /* Default case: Return (Buffer (One) { 0x0 }) */
1702 acpigen_write_return_singleton_buffer(0x0);
1703
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001704 acpigen_write_if_end(); /* If (LEqual (Local0, ToUUID(uuid))) */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301705
1706}
1707
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001708/*
1709 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301710 * This function takes as input array of uuid for the device, set of callbacks
1711 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1712 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1713 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001714 *
1715 * Arguments passed into _DSM method:
1716 * Arg0 = UUID
1717 * Arg1 = Revision
1718 * Arg2 = Function index
1719 * Arg3 = Function specific arguments
1720 *
1721 * AML code generated would look like:
1722 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301723 * ToBuffer (Arg0, Local0)
1724 * If (LEqual (Local0, ToUUID(uuid))) {
1725 * ToInteger (Arg2, Local1)
1726 * If (LEqual (Local1, 0)) {
1727 * <acpigen by callback[0]>
1728 * }
1729 * ...
1730 * If (LEqual (Local1, n)) {
1731 * <acpigen by callback[n]>
1732 * }
1733 * Return (Buffer (One) { 0x0 })
1734 * }
1735 * ...
1736 * If (LEqual (Local0, ToUUID(uuidn))) {
1737 * ...
1738 * }
1739 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001740 * }
1741 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301742void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001743{
1744 size_t i;
1745
1746 /* Method (_DSM, 4, Serialized) */
1747 acpigen_write_method_serialized("_DSM", 0x4);
1748
1749 /* ToBuffer (Arg0, Local0) */
1750 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1751
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001752 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301753 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001754
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301755 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001756 acpigen_write_return_singleton_buffer(0x0);
1757
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001758 acpigen_pop_len(); /* Method _DSM */
1759}
1760
Matt Delcob425bc82018-08-13 13:36:27 -07001761void acpigen_write_CPPC_package(const struct cppc_config *config)
1762{
1763 u32 i;
1764 u32 max;
1765 switch (config->version) {
1766 case 1:
1767 max = CPPC_MAX_FIELDS_VER_1;
1768 break;
1769 case 2:
1770 max = CPPC_MAX_FIELDS_VER_2;
1771 break;
1772 case 3:
1773 max = CPPC_MAX_FIELDS_VER_3;
1774 break;
1775 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001776 printk(BIOS_ERR, "CPPC version %u is not implemented\n", config->version);
Matt Delcob425bc82018-08-13 13:36:27 -07001777 return;
1778 }
1779 acpigen_write_name(CPPC_PACKAGE_NAME);
1780
1781 /* Adding 2 to account for length and version fields */
1782 acpigen_write_package(max + 2);
1783 acpigen_write_dword(max + 2);
1784
1785 acpigen_write_byte(config->version);
1786
1787 for (i = 0; i < max; ++i) {
Michael Niewöhner38107fa2021-10-05 22:22:21 +02001788 const cppc_entry_t *entry = &config->entries[i];
1789 if (entry->type == CPPC_TYPE_DWORD)
1790 acpigen_write_dword(entry->dword);
1791 else
1792 acpigen_write_register_resource(&entry->reg);
Matt Delcob425bc82018-08-13 13:36:27 -07001793 }
1794 acpigen_pop_len();
1795}
1796
1797void acpigen_write_CPPC_method(void)
1798{
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001799 char pscope[16];
1800 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING "." CPPC_PACKAGE_NAME, 0);
1801
Matt Delcob425bc82018-08-13 13:36:27 -07001802 acpigen_write_method("_CPC", 0);
1803 acpigen_emit_byte(RETURN_OP);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001804 acpigen_emit_namestring(pscope);
Matt Delcob425bc82018-08-13 13:36:27 -07001805 acpigen_pop_len();
1806}
1807
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001808/*
1809 * Generate ACPI AML code for _ROM method.
1810 * This function takes as input ROM data and ROM length.
1811 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001812 * The ACPI spec isn't clear about what should happen at the end of the
1813 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1814 * bytes in the returned buffer with zeros.
1815 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001816 * Arguments passed into _DSM method:
1817 * Arg0 = Offset in Bytes
1818 * Arg1 = Bytes to return
1819 *
1820 * Example:
1821 * acpigen_write_rom(0xdeadbeef, 0x10000)
1822 *
1823 * AML code generated would look like:
1824 * Method (_ROM, 2, NotSerialized) {
1825 *
1826 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1827 * Field (ROMS, AnyAcc, NoLock, Preserve)
1828 * {
1829 * Offset (0),
1830 * RBF0, 0x80000
1831 * }
1832 *
1833 * Store (Arg0, Local0)
1834 * Store (Arg1, Local1)
1835 *
1836 * If (LGreater (Local1, 0x1000))
1837 * {
1838 * Store (0x1000, Local1)
1839 * }
1840 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001841 * Store (Local1, Local3)
1842 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001843 * If (LGreater (Local0, 0x10000))
1844 * {
1845 * Return(Buffer(Local1){0})
1846 * }
1847 *
1848 * If (LGreater (Local0, 0x0f000))
1849 * {
1850 * Subtract (0x10000, Local0, Local2)
1851 * If (LGreater (Local1, Local2))
1852 * {
1853 * Store (Local2, Local1)
1854 * }
1855 * }
1856 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001857 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001858 *
1859 * Multiply (Local0, 0x08, Local0)
1860 * Multiply (Local1, 0x08, Local1)
1861 *
1862 * CreateField (RBF0, Local0, Local1, TMPB)
1863 * Store (TMPB, ROM1)
1864 * Return (ROM1)
1865 * }
1866 */
1867
1868void acpigen_write_rom(void *bios, const size_t length)
1869{
1870 ASSERT(bios)
1871 ASSERT(length)
1872
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02001873 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06001874 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001875
1876 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001877 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY, (uintptr_t)bios, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001878 acpigen_write_opregion(&opreg);
1879
1880 struct fieldlist l[] = {
1881 FIELDLIST_OFFSET(0),
1882 FIELDLIST_NAMESTR("RBF0", 8 * length),
1883 };
1884
1885 /* Field (ROMS, AnyAcc, NoLock, Preserve)
1886 * {
1887 * Offset (0),
1888 * RBF0, 0x80000
1889 * } */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001890 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001891
1892 /* Store (Arg0, Local0) */
1893 acpigen_write_store();
1894 acpigen_emit_byte(ARG0_OP);
1895 acpigen_emit_byte(LOCAL0_OP);
1896
1897 /* Store (Arg1, Local1) */
1898 acpigen_write_store();
1899 acpigen_emit_byte(ARG1_OP);
1900 acpigen_emit_byte(LOCAL1_OP);
1901
1902 /* ACPI SPEC requires to return at maximum 4KiB */
1903 /* If (LGreater (Local1, 0x1000)) */
1904 acpigen_write_if();
1905 acpigen_emit_byte(LGREATER_OP);
1906 acpigen_emit_byte(LOCAL1_OP);
1907 acpigen_write_integer(0x1000);
1908
1909 /* Store (0x1000, Local1) */
1910 acpigen_write_store();
1911 acpigen_write_integer(0x1000);
1912 acpigen_emit_byte(LOCAL1_OP);
1913
1914 /* Pop if */
1915 acpigen_pop_len();
1916
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001917 /* Store (Local1, Local3) */
1918 acpigen_write_store();
1919 acpigen_emit_byte(LOCAL1_OP);
1920 acpigen_emit_byte(LOCAL3_OP);
1921
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001922 /* If (LGreater (Local0, length)) */
1923 acpigen_write_if();
1924 acpigen_emit_byte(LGREATER_OP);
1925 acpigen_emit_byte(LOCAL0_OP);
1926 acpigen_write_integer(length);
1927
1928 /* Return(Buffer(Local1){0}) */
1929 acpigen_emit_byte(RETURN_OP);
1930 acpigen_emit_byte(BUFFER_OP);
1931 acpigen_write_len_f();
1932 acpigen_emit_byte(LOCAL1_OP);
1933 acpigen_emit_byte(0);
1934 acpigen_pop_len();
1935
1936 /* Pop if */
1937 acpigen_pop_len();
1938
1939 /* If (LGreater (Local0, length - 4096)) */
1940 acpigen_write_if();
1941 acpigen_emit_byte(LGREATER_OP);
1942 acpigen_emit_byte(LOCAL0_OP);
1943 acpigen_write_integer(length - 4096);
1944
1945 /* Subtract (length, Local0, Local2) */
1946 acpigen_emit_byte(SUBTRACT_OP);
1947 acpigen_write_integer(length);
1948 acpigen_emit_byte(LOCAL0_OP);
1949 acpigen_emit_byte(LOCAL2_OP);
1950
1951 /* If (LGreater (Local1, Local2)) */
1952 acpigen_write_if();
1953 acpigen_emit_byte(LGREATER_OP);
1954 acpigen_emit_byte(LOCAL1_OP);
1955 acpigen_emit_byte(LOCAL2_OP);
1956
1957 /* Store (Local2, Local1) */
1958 acpigen_write_store();
1959 acpigen_emit_byte(LOCAL2_OP);
1960 acpigen_emit_byte(LOCAL1_OP);
1961
1962 /* Pop if */
1963 acpigen_pop_len();
1964
1965 /* Pop if */
1966 acpigen_pop_len();
1967
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001968 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001969 acpigen_write_name("ROM1");
1970 acpigen_emit_byte(BUFFER_OP);
1971 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001972 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001973 acpigen_emit_byte(0);
1974 acpigen_pop_len();
1975
1976 /* Multiply (Local1, 0x08, Local1) */
1977 acpigen_emit_byte(MULTIPLY_OP);
1978 acpigen_emit_byte(LOCAL1_OP);
1979 acpigen_write_integer(0x08);
1980 acpigen_emit_byte(LOCAL1_OP);
1981
1982 /* Multiply (Local0, 0x08, Local0) */
1983 acpigen_emit_byte(MULTIPLY_OP);
1984 acpigen_emit_byte(LOCAL0_OP);
1985 acpigen_write_integer(0x08);
1986 acpigen_emit_byte(LOCAL0_OP);
1987
1988 /* CreateField (RBF0, Local0, Local1, TMPB) */
1989 acpigen_emit_ext_op(CREATEFIELD_OP);
1990 acpigen_emit_namestring("RBF0");
1991 acpigen_emit_byte(LOCAL0_OP);
1992 acpigen_emit_byte(LOCAL1_OP);
1993 acpigen_emit_namestring("TMPB");
1994
1995 /* Store (TMPB, ROM1) */
1996 acpigen_write_store();
1997 acpigen_emit_namestring("TMPB");
1998 acpigen_emit_namestring("ROM1");
1999
2000 /* Return (ROM1) */
2001 acpigen_emit_byte(RETURN_OP);
2002 acpigen_emit_namestring("ROM1");
2003
2004 /* Pop method */
2005 acpigen_pop_len();
2006}
2007
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002008/*
2009 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
2010 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
2011 * make callbacks into SoC acpigen code.
2012 *
2013 * Returns 0 on success and -1 on error.
2014 */
Duncan Laurie30c3f912020-10-09 04:48:53 +00002015int acpigen_enable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002016{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002017 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002018 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002019 else
2020 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002021}
2022
Duncan Laurie30c3f912020-10-09 04:48:53 +00002023int acpigen_disable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002024{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002025 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002026 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
2027 else
2028 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
2029}
Jonathan Zhang71299c22020-01-27 11:38:57 -08002030
Duncan Laurie30c3f912020-10-09 04:48:53 +00002031void acpigen_get_rx_gpio(const struct acpi_gpio *gpio)
Rajat Jain310623b2020-02-26 11:02:53 -08002032{
2033 acpigen_soc_read_rx_gpio(gpio->pins[0]);
2034
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002035 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08002036 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2037}
2038
Duncan Laurie30c3f912020-10-09 04:48:53 +00002039void acpigen_get_tx_gpio(const struct acpi_gpio *gpio)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002040{
2041 acpigen_soc_get_tx_gpio(gpio->pins[0]);
2042
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002043 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002044 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2045}
2046
Jonathan Zhang71299c22020-01-27 11:38:57 -08002047/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002048void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran, u16 range_min,
2049 u16 range_max, u16 translation, u16 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002050{
2051 acpigen_emit_byte(0x88);
2052 /* Byte 1+2: length (0x000d) */
2053 acpigen_emit_byte(0x0d);
2054 acpigen_emit_byte(0x00);
2055 /* resource type */
2056 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2057 /* general flags */
2058 acpigen_emit_byte(gen_flags);
2059 /* type flags */
2060 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2061 acpigen_emit_byte(type_flags);
2062 /* granularity, min, max, translation, length */
2063 acpigen_emit_word(gran);
2064 acpigen_emit_word(range_min);
2065 acpigen_emit_word(range_max);
2066 acpigen_emit_word(translation);
2067 acpigen_emit_word(length);
2068}
2069
2070/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002071void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags, u32 gran,
2072 u32 range_min, u32 range_max, u32 translation, u32 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002073{
2074 acpigen_emit_byte(0x87);
2075 /* Byte 1+2: length (0023) */
2076 acpigen_emit_byte(23);
2077 acpigen_emit_byte(0x00);
2078 /* resource type */
2079 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2080 /* general flags */
2081 acpigen_emit_byte(gen_flags);
2082 /* type flags */
2083 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2084 acpigen_emit_byte(type_flags);
2085 /* granularity, min, max, translation, length */
2086 acpigen_emit_dword(gran);
2087 acpigen_emit_dword(range_min);
2088 acpigen_emit_dword(range_max);
2089 acpigen_emit_dword(translation);
2090 acpigen_emit_dword(length);
2091}
2092
2093static void acpigen_emit_qword(u64 data)
2094{
2095 acpigen_emit_dword(data & 0xffffffff);
2096 acpigen_emit_dword((data >> 32) & 0xffffffff);
2097}
2098
2099/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002100void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags, u64 gran,
2101 u64 range_min, u64 range_max, u64 translation, u64 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002102{
2103 acpigen_emit_byte(0x8a);
2104 /* Byte 1+2: length (0x002b) */
2105 acpigen_emit_byte(0x2b);
2106 acpigen_emit_byte(0x00);
2107 /* resource type */
2108 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2109 /* general flags */
2110 acpigen_emit_byte(gen_flags);
2111 /* type flags */
2112 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2113 acpigen_emit_byte(type_flags);
2114 /* granularity, min, max, translation, length */
2115 acpigen_emit_qword(gran);
2116 acpigen_emit_qword(range_min);
2117 acpigen_emit_qword(range_max);
2118 acpigen_emit_qword(translation);
2119 acpigen_emit_qword(length);
2120}
Furquan Shaikh1a829232020-04-23 11:11:05 -07002121
2122void acpigen_write_ADR(uint64_t adr)
2123{
2124 acpigen_write_name_qword("_ADR", adr);
2125}
2126
Duncan Laurie08a942f2020-04-29 12:13:14 -07002127/**
2128 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
2129 * @address: SoundWire device address properties.
2130 *
2131 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
2132 *
2133 * 63..52 - Reserved (0)
2134 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
2135 * Used when a Controller has multiple master devices, each producing a
2136 * separate SoundWire Link. Set to 0 for single-link controllers.
2137 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
2138 * 47..44 - SoundWire specification version that this device supports
2139 * 43..40 - Unique ID for multiple devices
2140 * 39..24 - MIPI standard manufacturer code
2141 * 23..08 - Vendor defined part ID
2142 * 07..00 - MIPI class encoding
2143 */
2144void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
2145{
2146 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
2147 (((uint64_t)address->version & 0xf) << 44) |
2148 (((uint64_t)address->unique_id & 0xf) << 40) |
2149 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
2150 (((uint64_t)address->part_id & 0xffff) << 8) |
2151 (((uint64_t)address->class & 0xff)));
2152}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06002153
2154void acpigen_notify(const char *namestr, int value)
2155{
2156 acpigen_emit_byte(NOTIFY_OP);
2157 acpigen_emit_namestring(namestr);
2158 acpigen_write_integer(value);
2159}
Aaron Durbin80bc0912020-08-19 23:17:42 -06002160
2161static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
2162{
2163 acpigen_emit_byte(aml_op);
2164 acpigen_emit_byte(srcop);
2165 acpigen_write_integer(byte_offset);
2166 acpigen_emit_namestring(name);
2167}
2168
2169void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2170{
2171 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2172}
2173
2174void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2175{
2176 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2177}
2178
2179void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2180{
2181 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2182}
2183
2184void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2185{
2186 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2187}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002188
2189void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2190{
2191 acpigen_write_name("_PCT");
2192 acpigen_write_package(0x02);
2193 acpigen_write_register_resource(perf_ctrl);
2194 acpigen_write_register_resource(perf_sts);
2195
2196 acpigen_pop_len();
2197}
2198
2199void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2200{
2201 acpigen_write_package(0x08);
2202 acpigen_write_dword(pstate_value->core_freq);
2203 acpigen_write_dword(pstate_value->power);
2204 acpigen_write_dword(pstate_value->transition_latency);
2205 acpigen_write_dword(pstate_value->bus_master_latency);
2206
2207 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2208 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2209 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2210 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2211
2212 acpigen_pop_len();
2213}
2214
2215void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2216{
2217 size_t pstate;
2218
2219 acpigen_write_name("XPSS");
2220 acpigen_write_package(nentries);
2221 for (pstate = 0; pstate < nentries; pstate++) {
2222 acpigen_write_xpss_package(pstate_values);
2223 pstate_values++;
2224 }
2225
2226 acpigen_pop_len();
2227}
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002228
2229/* Delay up to wait_ms until provided namestr matches expected value. */
2230void acpigen_write_delay_until_namestr_int(uint32_t wait_ms, const char *name, uint64_t value)
2231{
2232 uint32_t wait_ms_segment = 1;
2233 uint32_t segments = wait_ms;
2234
2235 /* Sleep in 16ms segments if delay is more than 32ms. */
2236 if (wait_ms > 32) {
2237 wait_ms_segment = 16;
2238 segments = wait_ms / 16;
2239 }
2240
2241 acpigen_write_store_int_to_op(segments, LOCAL7_OP);
2242 acpigen_emit_byte(WHILE_OP);
2243 acpigen_write_len_f();
2244 acpigen_emit_byte(LGREATER_OP);
2245 acpigen_emit_byte(LOCAL7_OP);
2246 acpigen_emit_byte(ZERO_OP);
2247
2248 /* If name is not provided then just delay in a loop. */
2249 if (name) {
2250 acpigen_write_if_lequal_namestr_int(name, value);
2251 acpigen_emit_byte(BREAK_OP);
2252 acpigen_pop_len(); /* If */
2253 }
2254
2255 acpigen_write_sleep(wait_ms_segment);
2256 acpigen_emit_byte(DECREMENT_OP);
2257 acpigen_emit_byte(LOCAL7_OP);
2258 acpigen_pop_len(); /* While */
2259}