blob: 7ca4f021dd4c6636abd1b298180dbd7aa44a40a2 [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++) {
Arthur Heymans62ea7a82023-06-22 20:39:31 +0200190 const signed char c = string[i];
Patrick Rudolph389c8272019-12-17 13:54:41 +0100191 /* 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
Felix Heldb57b12f2023-01-24 19:31:00 +0100391void acpigen_write_processor_namestring(unsigned int cpu_index)
392{
393 char buffer[16];
Felix Heldf0a8b042023-05-12 15:55:06 +0200394 snprintf(buffer, sizeof(buffer), "\\_SB." CONFIG_ACPI_CPU_STRING, cpu_index);
Felix Heldb57b12f2023-01-24 19:31:00 +0100395 acpigen_emit_namestring(buffer);
396}
397
Elyes Haouas9c824912023-01-28 09:13:17 +0100398/* Processor() operator is deprecated as of ACPI 6.0, use Device() instead. */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100399void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000400{
401/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100402 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200403 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000404*/
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700405 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100406 acpigen_write_len_f();
Felix Heldb57b12f2023-01-24 19:31:00 +0100407 acpigen_write_processor_namestring(cpuindex);
Rudolf Marekf997b552009-02-14 15:40:23 +0000408 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700409 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000410 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000411}
412
Felix Held32bba182023-01-28 03:37:21 +0100413void acpigen_write_processor_device(unsigned int cpu_index)
414{
415 acpigen_emit_ext_op(DEVICE_OP);
416 acpigen_write_len_f();
417 acpigen_write_processor_namestring(cpu_index);
418 acpigen_write_name_string("_HID", "ACPI0007");
419 acpigen_write_name_integer("_UID", cpu_index);
420}
421
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100422void acpigen_write_processor_package(const char *const name, const unsigned int first_core,
Nico Huber4d211ac2017-09-01 21:14:36 +0200423 const unsigned int core_count)
424{
425 unsigned int i;
Nico Huber4d211ac2017-09-01 21:14:36 +0200426
427 acpigen_write_name(name);
428 acpigen_write_package(core_count);
Felix Heldb57b12f2023-01-24 19:31:00 +0100429
430 for (i = first_core; i < first_core + core_count; ++i)
431 acpigen_write_processor_namestring(i);
432
Nico Huber4d211ac2017-09-01 21:14:36 +0200433 acpigen_pop_len();
434}
435
Arthur Heymans8f055272018-11-28 13:18:57 +0100436/* Method to notify all CPU cores */
437void acpigen_write_processor_cnot(const unsigned int number_of_cores)
438{
439 int core_id;
440
Christian Walterbe3979c2019-12-18 15:07:59 +0100441 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100442 for (core_id = 0; core_id < number_of_cores; core_id++) {
Arthur Heymans8f055272018-11-28 13:18:57 +0100443 acpigen_emit_byte(NOTIFY_OP);
Felix Heldb57b12f2023-01-24 19:31:00 +0100444 acpigen_write_processor_namestring(core_id);
Arthur Heymans8f055272018-11-28 13:18:57 +0100445 acpigen_emit_byte(ARG0_OP);
446 }
447 acpigen_pop_len();
448}
449
Naresh G Solanki8535c662016-10-25 00:51:24 +0530450/*
451 * Generate ACPI AML code for OperationRegion
452 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
453 * where rname is region name, space is region space, offset is region offset &
454 * len is region length.
455 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
456 */
Duncan Laurie35029602020-10-09 17:50:25 +0000457void acpigen_write_opregion(const struct opregion *opreg)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530458{
459 /* OpregionOp */
460 acpigen_emit_ext_op(OPREGION_OP);
461 /* NameString 4 chars only */
462 acpigen_emit_simple_namestring(opreg->name);
463 /* RegionSpace */
464 acpigen_emit_byte(opreg->regionspace);
465 /* RegionOffset & RegionLen, it can be byte word or double word */
466 acpigen_write_integer(opreg->regionoffset);
467 acpigen_write_integer(opreg->regionlen);
468}
469
Patrick Rudolph32bae492019-08-08 12:47:30 +0200470/*
471 * Generate ACPI AML code for Mutex
472 * Arg0: Pointer to name of mutex
473 * Arg1: Initial value of mutex
474 */
475void acpigen_write_mutex(const char *name, const uint8_t flags)
476{
477 /* MutexOp */
478 acpigen_emit_ext_op(MUTEX_OP);
479 /* NameString 4 chars only */
480 acpigen_emit_simple_namestring(name);
481 acpigen_emit_byte(flags);
482}
483
484void acpigen_write_acquire(const char *name, const uint16_t val)
485{
486 /* AcquireOp */
487 acpigen_emit_ext_op(ACQUIRE_OP);
488 /* NameString 4 chars only */
489 acpigen_emit_simple_namestring(name);
490 acpigen_emit_word(val);
491}
492
493void acpigen_write_release(const char *name)
494{
495 /* ReleaseOp */
496 acpigen_emit_ext_op(RELEASE_OP);
497 /* NameString 4 chars only */
498 acpigen_emit_simple_namestring(name);
499}
500
Patrick Rudolph894977b2017-07-01 16:15:05 +0200501static void acpigen_write_field_length(uint32_t len)
502{
503 uint8_t i, j;
504 uint8_t emit[4];
505
506 i = 1;
507 if (len < 0x40) {
508 emit[0] = len & 0x3F;
509 } else {
510 emit[0] = len & 0xF;
511 len >>= 4;
512 while (len) {
513 emit[i] = len & 0xFF;
514 i++;
515 len >>= 8;
516 }
517 }
518 /* Update bit 7:6 : Number of bytes followed by emit[0] */
519 emit[0] |= (i - 1) << 6;
520
521 for (j = 0; j < i; j++)
522 acpigen_emit_byte(emit[j]);
523}
524
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100525static void acpigen_write_field_offset(uint32_t offset, uint32_t current_bit_pos)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530526{
527 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530528
529 if (offset < current_bit_pos) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100530 printk(BIOS_WARNING, "%s: Cannot move offset backward", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530531 return;
532 }
533
534 diff_bits = offset - current_bit_pos;
535 /* Upper limit */
536 if (diff_bits > 0xFFFFFFF) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100537 printk(BIOS_WARNING, "%s: Offset very large to encode", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530538 return;
539 }
540
Naresh G Solanki8535c662016-10-25 00:51:24 +0530541 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200542 acpigen_write_field_length(diff_bits);
543}
544
Michael Niewöhner060dc7b2022-05-13 00:04:19 +0200545void acpigen_write_field_name(const char *name, uint32_t size)
Patrick Rudolph894977b2017-07-01 16:15:05 +0200546{
547 acpigen_emit_simple_namestring(name);
548 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530549}
550
Duncan Laurie095bbf92020-09-30 23:09:29 +0000551static void acpigen_write_field_reserved(uint32_t size)
552{
553 acpigen_emit_byte(0);
554 acpigen_write_field_length(size);
555}
556
Naresh G Solanki8535c662016-10-25 00:51:24 +0530557/*
558 * Generate ACPI AML code for Field
559 * Arg0: region name
560 * Arg1: Pointer to struct fieldlist.
561 * Arg2: no. of entries in Arg1
562 * Arg3: flags which indicate filed access type, lock rule & update rule.
563 * Example with fieldlist
564 * struct fieldlist l[] = {
565 * FIELDLIST_OFFSET(0x84),
566 * FIELDLIST_NAMESTR("PMCS", 2),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000567 * FIELDLIST_RESERVED(6),
Naresh G Solanki8535c662016-10-25 00:51:24 +0530568 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200569 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530570 * FIELD_PRESERVE);
571 * Output:
572 * Field (UART, AnyAcc, NoLock, Preserve)
573 * {
574 * Offset (0x84),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000575 * PMCS, 2,
576 * , 6,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530577 * }
578 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700579void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530580 uint8_t flags)
581{
582 uint16_t i;
583 uint32_t current_bit_pos = 0;
584
585 /* FieldOp */
586 acpigen_emit_ext_op(FIELD_OP);
587 /* Package Length */
588 acpigen_write_len_f();
589 /* NameString 4 chars only */
590 acpigen_emit_simple_namestring(name);
591 /* Field Flag */
592 acpigen_emit_byte(flags);
593
594 for (i = 0; i < count; i++) {
595 switch (l[i].type) {
596 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200597 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530598 current_bit_pos += l[i].bits;
599 break;
Duncan Laurie095bbf92020-09-30 23:09:29 +0000600 case RESERVED:
601 acpigen_write_field_reserved(l[i].bits);
602 current_bit_pos += l[i].bits;
603 break;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530604 case OFFSET:
605 acpigen_write_field_offset(l[i].bits, current_bit_pos);
606 current_bit_pos = l[i].bits;
607 break;
608 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100609 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530610 break;
611 }
612 }
613 acpigen_pop_len();
614}
615
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200616/*
617 * Generate ACPI AML code for IndexField
618 * Arg0: region name
619 * Arg1: Pointer to struct fieldlist.
620 * Arg2: no. of entries in Arg1
621 * Arg3: flags which indicate filed access type, lock rule & update rule.
622 * Example with fieldlist
623 * struct fieldlist l[] = {
624 * FIELDLIST_OFFSET(0x84),
625 * FIELDLIST_NAMESTR("PMCS", 2),
626 * };
627 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
628 * FIELD_NOLOCK |
629 * FIELD_PRESERVE);
630 * Output:
631 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
632 * {
633 * Offset (0x84),
634 * PMCS, 2
635 * }
636 */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100637void acpigen_write_indexfield(const char *idx, const char *data, struct fieldlist *l,
638 size_t count, uint8_t flags)
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200639{
640 uint16_t i;
641 uint32_t current_bit_pos = 0;
642
643 /* FieldOp */
644 acpigen_emit_ext_op(INDEX_FIELD_OP);
645 /* Package Length */
646 acpigen_write_len_f();
647 /* NameString 4 chars only */
648 acpigen_emit_simple_namestring(idx);
649 /* NameString 4 chars only */
650 acpigen_emit_simple_namestring(data);
651 /* Field Flag */
652 acpigen_emit_byte(flags);
653
654 for (i = 0; i < count; i++) {
655 switch (l[i].type) {
656 case NAME_STRING:
657 acpigen_write_field_name(l[i].name, l[i].bits);
658 current_bit_pos += l[i].bits;
659 break;
660 case OFFSET:
661 acpigen_write_field_offset(l[i].bits, current_bit_pos);
662 current_bit_pos = l[i].bits;
663 break;
664 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100665 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200666 break;
667 }
668 }
669 acpigen_pop_len();
670}
671
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100672void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000673{
674/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200675 Name (_PCT, Package (0x02)
676 {
677 ResourceTemplate ()
678 {
679 Register (FFixedHW,
680 0x00, // Bit Width
681 0x00, // Bit Offset
682 0x0000000000000000, // Address
683 ,)
684 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000685
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200686 ResourceTemplate ()
687 {
688 Register (FFixedHW,
689 0x00, // Bit Width
690 0x00, // Bit Offset
691 0x0000000000000000, // Address
692 ,)
693 }
694 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000695*/
696 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700697 /* 00000030 "0._PCT.," */
698 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
699 /* 00000038 "........" */
700 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
701 /* 00000040 "........" */
702 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
703 /* 00000048 "....y..." */
704 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
705 /* 00000050 "........" */
706 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
707 /* 00000058 "........" */
708 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000709 0x00, 0x79, 0x00
710 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100711 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000712}
713
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300714void acpigen_write_PTC(uint8_t duty_width, uint8_t duty_offset, uint16_t p_cnt)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200715{
716/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200717 Name (_PTC, Package (0x02)
718 {
719 ResourceTemplate ()
720 {
721 Register (FFixedHW,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300722 0x00, // Duty Width
723 0x00, // Duty Offset
724 0x0000000000000000, // P_CNT IO Address
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200725 ,)
726 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200727
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200728 ResourceTemplate ()
729 {
730 Register (FFixedHW,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300731 0x00, // Duty Width
732 0x00, // Duty Offset
733 0x0000000000000000, // P_CNT IO Address
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200734 ,)
735 }
736 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200737*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200738 acpi_addr_t addr = {
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300739 .bit_width = duty_width,
740 .bit_offset = duty_offset,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200741 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300742 .addrl = p_cnt,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100743 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200744 };
745
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300746 if (addr.addrl != 0)
747 addr.space_id = ACPI_ADDRESS_SPACE_IO;
748 else
749 addr.space_id = ACPI_ADDRESS_SPACE_FIXED;
750
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100751 acpigen_write_name("_PTC");
752 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200753
754 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700755 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200756
757 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700758 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200759
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100760 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200761}
762
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300763void acpigen_write_empty_PTC(void)
764{
765 acpigen_write_PTC(0, 0, 0);
766}
767
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700768static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100769{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700770 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100771 acpigen_write_len_f();
772 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700773 acpigen_emit_byte(flags);
774}
775
776/* Method (name, nargs, NotSerialized) */
777void acpigen_write_method(const char *name, int nargs)
778{
779 __acpigen_write_method(name, (nargs & 7));
780}
781
782/* Method (name, nargs, Serialized) */
783void acpigen_write_method_serialized(const char *name, int nargs)
784{
785 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100786}
787
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100788void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100789{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700790 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100791 acpigen_write_len_f();
792 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100793}
794
Raul E Rangel052c9632021-05-12 17:01:30 -0600795void acpigen_write_thermal_zone(const char *name)
796{
797 acpigen_emit_ext_op(THERMAL_ZONE_OP);
798 acpigen_write_len_f();
799 acpigen_emit_namestring(name);
800}
801
Duncan Laurieabe2de82016-05-09 11:08:46 -0700802void acpigen_write_STA(uint8_t status)
803{
804 /*
805 * Method (_STA, 0, NotSerialized) { Return (status) }
806 */
807 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700808 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700809 acpigen_write_byte(status);
810 acpigen_pop_len();
811}
812
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530813void acpigen_write_STA_ext(const char *namestring)
814{
815 /*
816 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
817 */
818 acpigen_write_method("_STA", 0);
819 acpigen_emit_byte(RETURN_OP);
820 acpigen_emit_namestring(namestring);
821 acpigen_pop_len();
822}
823
Felix Held2d4112f2023-05-04 23:00:06 +0200824void acpigen_write_BBN(uint8_t base_bus_number)
825{
826 /*
827 * Method (_BBN, 0, NotSerialized) { Return (status) }
828 */
829 acpigen_write_method("_BBN", 0);
830 acpigen_emit_byte(RETURN_OP);
831 acpigen_write_byte(base_bus_number);
832 acpigen_pop_len();
833}
834
Raul E Rangelc7048322021-04-19 15:58:25 -0600835void acpigen_write_LPI_package(u64 level, const struct acpi_lpi_state *states, u16 nentries)
836{
837 /*
838 * Name (_LPI, Package (0x06) // _LPI: Low Power Idle States
839 * {
840 * 0x0000,
841 * 0x0000000000000000,
842 * 0x0003,
843 * Package (0x0A)
844 * {
845 * 0x00000002,
846 * 0x00000001,
847 * 0x00000001,
848 * 0x00000000,
849 * 0x00000000,
850 * 0x00000000,
851 * ResourceTemplate ()
852 * {
853 * Register (FFixedHW,
854 * 0x02, // Bit Width
855 * 0x02, // Bit Offset
856 * 0x0000000000000000, // Address
857 * ,)
858 * },
859 *
860 * ResourceTemplate ()
861 * {
862 * Register (SystemMemory,
863 * 0x00, // Bit Width
864 * 0x00, // Bit Offset
865 * 0x0000000000000000, // Address
866 * ,)
867 * },
868 *
869 * ResourceTemplate ()
870 * {
871 * Register (SystemMemory,
872 * 0x00, // Bit Width
873 * 0x00, // Bit Offset
874 * 0x0000000000000000, // Address
875 * ,)
876 * },
877 *
878 * "C1"
879 * },
880 * ...
881 * }
882 */
883
884 acpigen_write_name("_LPI");
885 acpigen_write_package(3 + nentries);
886 acpigen_write_word(0); /* Revision */
887 acpigen_write_qword(level);
888 acpigen_write_word(nentries);
889
890 for (size_t i = 0; i < nentries; i++, states++) {
891 acpigen_write_package(0xA);
892 acpigen_write_dword(states->min_residency_us);
893 acpigen_write_dword(states->worst_case_wakeup_latency_us);
894 acpigen_write_dword(states->flags);
895 acpigen_write_dword(states->arch_context_lost_flags);
896 acpigen_write_dword(states->residency_counter_frequency_hz);
897 acpigen_write_dword(states->enabled_parent_state);
898 acpigen_write_register_resource(&states->entry_method);
899 acpigen_write_register_resource(&states->residency_counter_register);
900 acpigen_write_register_resource(&states->usage_counter_register);
901 acpigen_write_string(states->state_name);
902 acpigen_pop_len();
903 }
904 acpigen_pop_len();
905}
906
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100907/*
908 * Generates a func with max supported P-states.
909 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100910void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000911{
912/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200913 Method (_PPC, 0, NotSerialized)
914 {
915 Return (nr)
916 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000917*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100918 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700919 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000920 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100921 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100922 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000923}
924
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100925/*
926 * Generates a func with max supported P-states saved
927 * in the variable PPCM.
928 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100929void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700930{
931/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200932 Method (_PPC, 0, NotSerialized)
933 {
934 Return (PPCM)
935 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700936*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100937 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700938 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700939 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100940 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100941 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700942}
943
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100944void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200945{
946/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200947 // Sample _TPC method
948 Method (_TPC, 0, NotSerialized)
949 {
950 Return (\TLVL)
951 }
952*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100953 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700954 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100955 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100956 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200957}
958
Duncan Laurieabe2de82016-05-09 11:08:46 -0700959void acpigen_write_PRW(u32 wake, u32 level)
960{
961 /*
962 * Name (_PRW, Package () { wake, level }
963 */
964 acpigen_write_name("_PRW");
965 acpigen_write_package(2);
966 acpigen_write_integer(wake);
967 acpigen_write_integer(level);
968 acpigen_pop_len();
969}
970
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100971void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat, u32 control,
972 u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000973{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100974 acpigen_write_package(6);
975 acpigen_write_dword(coreFreq);
976 acpigen_write_dword(power);
977 acpigen_write_dword(transLat);
978 acpigen_write_dword(busmLat);
979 acpigen_write_dword(control);
980 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100981 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700982
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100983 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n", coreFreq, power,
984 control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000985}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000986
Jason Gleneskca36aed2020-09-15 21:01:57 -0700987void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
988{
989 size_t pstate;
990
991 acpigen_write_name("_PSS");
992 acpigen_write_package(nentries);
993 for (pstate = 0; pstate < nentries; pstate++) {
994 acpigen_write_PSS_package(
995 pstate_values->core_freq, pstate_values->power,
996 pstate_values->transition_latency, pstate_values->bus_master_latency,
997 pstate_values->control_value, pstate_values->status_value);
998 pstate_values++;
999 }
1000
1001 acpigen_pop_len();
1002}
1003
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001004void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +00001005{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001006 acpigen_write_name("_PSD");
1007 acpigen_write_package(1);
1008 acpigen_write_package(5);
1009 acpigen_write_byte(5); // 5 values
1010 acpigen_write_byte(0); // revision 0
1011 acpigen_write_dword(domain);
1012 acpigen_write_dword(coordtype);
1013 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001014 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001015 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +00001016}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001017
Angel Ponsd2794ce2021-10-17 12:59:43 +02001018void acpigen_write_CST_package_entry(const acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001019{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001020 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001021 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -07001022 acpigen_write_byte(cstate->ctype);
1023 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001024 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001025 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001026}
1027
Angel Ponsd2794ce2021-10-17 12:59:43 +02001028void acpigen_write_CST_package(const acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001029{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001030 int i;
1031 acpigen_write_name("_CST");
1032 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -07001033 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001034
1035 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001036 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001037
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001038 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001039}
1040
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001041void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
1042 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -05001043{
1044 acpigen_write_name("_CSD");
1045 acpigen_write_package(1);
1046 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -07001047 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -05001048 acpigen_write_byte(0); // revision 0
1049 acpigen_write_dword(domain);
1050 acpigen_write_dword(coordtype);
1051 acpigen_write_dword(numprocs);
1052 acpigen_write_dword(index);
1053 acpigen_pop_len();
1054 acpigen_pop_len();
1055}
1056
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001057void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001058{
1059/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +02001060 Sample _TSS package with 100% and 50% duty cycles
1061 Name (_TSS, Package (0x02)
1062 {
1063 Package(){100, 1000, 0, 0x00, 0)
1064 Package(){50, 520, 0, 0x18, 0)
1065 })
1066*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001067 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001068 acpi_tstate_t *tstate = tstate_list;
1069
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001070 acpigen_write_name("_TSS");
1071 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +02001072
1073 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001074 acpigen_write_package(5);
1075 acpigen_write_dword(tstate->percent);
1076 acpigen_write_dword(tstate->power);
1077 acpigen_write_dword(tstate->latency);
1078 acpigen_write_dword(tstate->control);
1079 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001080 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001081 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001082 }
1083
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001084 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001085}
1086
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001087void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001088{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001089 acpigen_write_name("_TSD");
1090 acpigen_write_package(1);
1091 acpigen_write_package(5);
1092 acpigen_write_byte(5); // 5 values
1093 acpigen_write_byte(0); // revision 0
1094 acpigen_write_dword(domain);
1095 acpigen_write_dword(coordtype);
1096 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001097 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001098 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001099}
1100
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001101void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001102{
1103 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001104 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001105 * Byte 0:
1106 * Bit7 : 1 => big item
1107 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
1108 */
1109 acpigen_emit_byte(0x86);
1110 /* Byte 1+2: length (0x0009) */
1111 acpigen_emit_byte(0x09);
1112 acpigen_emit_byte(0x00);
1113 /* bit1-7 are ignored */
1114 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -07001115 acpigen_emit_dword(base);
1116 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001117}
1118
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001119static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001120{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +02001121 acpigen_emit_byte(0x82); /* Register Descriptor */
1122 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
1123 acpigen_emit_byte(0x00); /* Register Length 15:8 */
1124 acpigen_emit_byte(addr->space_id); /* Address Space ID */
1125 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
1126 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +01001127 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -07001128 acpigen_emit_dword(addr->addrl); /* Register Address Low */
1129 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +02001130}
1131
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001132void acpigen_write_register_resource(const acpi_addr_t *addr)
1133{
1134 acpigen_write_resourcetemplate_header();
1135 acpigen_write_register(addr);
1136 acpigen_write_resourcetemplate_footer();
1137}
1138
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001139void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001140{
1141 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001142 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001143 * Byte 0:
1144 * Bit7 : 0 => small item
1145 * Bit6-3: 0100 (0x4) => IRQ port descriptor
1146 * Bit2-0: 010 (0x2) => 2 Bytes long
1147 */
1148 acpigen_emit_byte(0x22);
1149 acpigen_emit_byte(mask & 0xff);
1150 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001151}
1152
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001153void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001154{
1155 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001156 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001157 * Byte 0:
1158 * Bit7 : 0 => small item
1159 * Bit6-3: 1000 (0x8) => I/O port descriptor
1160 * Bit2-0: 111 (0x7) => 7 Bytes long
1161 */
1162 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001163 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001164 /* bit1-7 are ignored */
1165 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1166 /* minimum base address the device may be configured for */
1167 acpigen_emit_byte(min & 0xff);
1168 acpigen_emit_byte((min >> 8) & 0xff);
1169 /* maximum base address the device may be configured for */
1170 acpigen_emit_byte(max & 0xff);
1171 acpigen_emit_byte((max >> 8) & 0xff);
1172 /* alignment for min base */
1173 acpigen_emit_byte(align & 0xff);
1174 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001175}
1176
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001177void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001178{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001179 /*
1180 * A ResourceTemplate() is a Buffer() with a
1181 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001182 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001183 * (small item 0xf, len 1)
1184 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001185 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001186 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001187 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001188 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001189 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001190 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001191 acpigen_emit_byte(0x00);
1192 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001193}
1194
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001195void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001196{
1197 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001198 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001199 /*
1200 * end tag (acpi 4.0 Section 6.4.2.8)
1201 * 0x79 <checksum>
1202 * 0x00 is treated as a good checksum according to the spec
1203 * and is what iasl generates.
1204 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001205 acpigen_emit_byte(0x79);
1206 acpigen_emit_byte(0x00);
1207
Nico Huber7d89ce32017-04-14 00:08:18 +02001208 /* Start counting past the 2-bytes length added in
1209 acpigen_write_resourcetemplate() above. */
1210 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001211
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001212 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001213 p[0] = len & 0xff;
1214 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001215 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001216 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001217}
1218
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001219static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001220{
1221 acpigen_write_mem32fixed(0, res->base, res->size);
1222}
1223
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001224static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001225{
1226 resource_t base = res->base;
1227 resource_t size = res->size;
1228 while (size > 0) {
1229 resource_t sz = size > 255 ? 255 : size;
1230 acpigen_write_io16(base, base, 0, sz, 1);
1231 size -= sz;
1232 base += sz;
1233 }
1234}
1235
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001236void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001237{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001238 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001239
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001240 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001241 search_global_resources(
1242 IORESOURCE_MEM | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001243 IORESOURCE_MEM | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001244 acpigen_add_mainboard_rsvd_mem32, 0);
1245
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001246 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001247 search_global_resources(
1248 IORESOURCE_IO | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001249 IORESOURCE_IO | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001250 acpigen_add_mainboard_rsvd_io, 0);
1251
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001252 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001253}
1254
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001255void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001256{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001257 acpigen_write_scope(scope);
1258 acpigen_write_name(name);
1259 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001260 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001261}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001262
1263static int hex2bin(const char c)
1264{
1265 if (c >= 'A' && c <= 'F')
1266 return c - 'A' + 10;
1267 if (c >= 'a' && c <= 'f')
1268 return c - 'a' + 10;
1269 return c - '0';
1270}
1271
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001272void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001273{
1274 u32 compact = 0;
1275
1276 /* Clamping individual values would be better but
1277 there is a disagreement over what is a valid
1278 EISA id, so accept anything and don't clamp,
1279 parent code should create a valid EISAid.
1280 */
1281 compact |= (eisaid[0] - 'A' + 1) << 26;
1282 compact |= (eisaid[1] - 'A' + 1) << 21;
1283 compact |= (eisaid[2] - 'A' + 1) << 16;
1284 compact |= hex2bin(eisaid[3]) << 12;
1285 compact |= hex2bin(eisaid[4]) << 8;
1286 compact |= hex2bin(eisaid[5]) << 4;
1287 compact |= hex2bin(eisaid[6]);
1288
1289 acpigen_emit_byte(0xc);
1290 acpigen_emit_byte((compact >> 24) & 0xff);
1291 acpigen_emit_byte((compact >> 16) & 0xff);
1292 acpigen_emit_byte((compact >> 8) & 0xff);
1293 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001294}
Duncan Laurie3829f232016-05-09 11:08:46 -07001295
1296/*
1297 * ToUUID(uuid)
1298 *
1299 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1300 * order for the bytes that make up a UUID Buffer object.
1301 * UUID byte order for input:
1302 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1303 * UUID byte order for output:
1304 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1305 */
1306#define UUID_LEN 16
1307void acpigen_write_uuid(const char *uuid)
1308{
1309 uint8_t buf[UUID_LEN];
1310 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1311 8, 9, 10, 11, 12, 13, 14, 15 };
1312
1313 /* Parse UUID string into bytes */
1314 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1315 return;
1316
1317 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001318 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001319 acpigen_write_len_f();
1320
1321 /* Buffer length in bytes */
1322 acpigen_write_word(UUID_LEN);
1323
1324 /* Output UUID in expected order */
1325 for (i = 0; i < UUID_LEN; i++)
1326 acpigen_emit_byte(buf[order[i]]);
1327
1328 acpigen_pop_len();
1329}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001330
1331/*
1332 * Name (_PRx, Package(One) { name })
1333 * ...
1334 * PowerResource (name, level, order)
1335 */
1336void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001337 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001338{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001339 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001340 for (i = 0; i < dev_states_count; i++) {
1341 acpigen_write_name(dev_states[i]);
1342 acpigen_write_package(1);
1343 acpigen_emit_simple_namestring(name);
1344 acpigen_pop_len(); /* Package */
1345 }
1346
1347 acpigen_emit_ext_op(POWER_RES_OP);
1348
1349 acpigen_write_len_f();
1350
1351 acpigen_emit_simple_namestring(name);
1352 acpigen_emit_byte(level);
1353 acpigen_emit_word(order);
1354}
1355
1356/* Sleep (ms) */
1357void acpigen_write_sleep(uint64_t sleep_ms)
1358{
1359 acpigen_emit_ext_op(SLEEP_OP);
1360 acpigen_write_integer(sleep_ms);
1361}
1362
1363void acpigen_write_store(void)
1364{
1365 acpigen_emit_byte(STORE_OP);
1366}
1367
1368/* Store (src, dst) */
1369void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1370{
1371 acpigen_write_store();
1372 acpigen_emit_byte(src);
1373 acpigen_emit_byte(dst);
1374}
1375
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001376/* Store (src, "namestr") */
1377void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1378{
1379 acpigen_write_store();
1380 acpigen_emit_byte(src);
1381 acpigen_emit_namestring(dst);
1382}
1383
Duncan Laurie8e391d32020-09-30 23:17:41 +00001384/* Store (src, "namestr") */
1385void acpigen_write_store_int_to_namestr(uint64_t src, const char *dst)
1386{
1387 acpigen_write_store();
1388 acpigen_write_integer(src);
1389 acpigen_emit_namestring(dst);
1390}
1391
Cliff Huang24f3dc82023-02-04 21:11:51 -08001392/* Store ("namestr", dst) */
1393void acpigen_write_store_namestr_to_op(const char *src, uint8_t dst)
1394{
1395 acpigen_write_store();
1396 acpigen_emit_namestring(src);
1397 acpigen_emit_byte(dst);
1398}
1399
Duncan Laurie8e391d32020-09-30 23:17:41 +00001400/* Store (src, dst) */
1401void acpigen_write_store_int_to_op(uint64_t src, uint8_t dst)
1402{
1403 acpigen_write_store();
1404 acpigen_write_integer(src);
1405 acpigen_emit_byte(dst);
1406}
1407
Felix Held178cf352023-02-09 16:29:46 +01001408/* Store ("namestr", "namestr") */
1409void acpigen_write_store_namestr_to_namestr(const char *src, const char *dst)
1410{
1411 acpigen_write_store();
1412 acpigen_emit_namestring(src);
1413 acpigen_emit_namestring(dst);
1414}
1415
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001416/* Or (arg1, arg2, res) */
1417void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1418{
1419 acpigen_emit_byte(OR_OP);
1420 acpigen_emit_byte(arg1);
1421 acpigen_emit_byte(arg2);
1422 acpigen_emit_byte(res);
1423}
1424
Rajat Jain310623b2020-02-26 11:02:53 -08001425/* Xor (arg1, arg2, res) */
1426void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1427{
1428 acpigen_emit_byte(XOR_OP);
1429 acpigen_emit_byte(arg1);
1430 acpigen_emit_byte(arg2);
1431 acpigen_emit_byte(res);
1432}
1433
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001434/* And (arg1, arg2, res) */
1435void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1436{
1437 acpigen_emit_byte(AND_OP);
1438 acpigen_emit_byte(arg1);
1439 acpigen_emit_byte(arg2);
1440 acpigen_emit_byte(res);
1441}
1442
1443/* Not (arg, res) */
1444void acpigen_write_not(uint8_t arg, uint8_t res)
1445{
1446 acpigen_emit_byte(NOT_OP);
1447 acpigen_emit_byte(arg);
1448 acpigen_emit_byte(res);
1449}
1450
Cliff Huange6083082023-01-19 21:18:23 -08001451/* Concatenate (str, src_res, dest_res) */
1452void acpigen_concatenate_string_op(const char *str, uint8_t src_res, uint8_t dest_res)
1453{
1454 acpigen_emit_byte(CONCATENATE_OP);
1455 acpigen_write_string(str);
1456 acpigen_emit_byte(src_res);
1457 acpigen_emit_byte(dest_res);
1458}
1459
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001460/* Store (str, DEBUG) */
1461void acpigen_write_debug_string(const char *str)
1462{
1463 acpigen_write_store();
1464 acpigen_write_string(str);
1465 acpigen_emit_ext_op(DEBUG_OP);
1466}
1467
1468/* Store (val, DEBUG) */
1469void acpigen_write_debug_integer(uint64_t val)
1470{
1471 acpigen_write_store();
1472 acpigen_write_integer(val);
1473 acpigen_emit_ext_op(DEBUG_OP);
1474}
1475
1476/* Store (op, DEBUG) */
1477void acpigen_write_debug_op(uint8_t op)
1478{
1479 acpigen_write_store();
1480 acpigen_emit_byte(op);
1481 acpigen_emit_ext_op(DEBUG_OP);
1482}
1483
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001484/* Store (str, DEBUG) */
1485void acpigen_write_debug_namestr(const char *str)
1486{
1487 acpigen_write_store();
1488 acpigen_emit_namestring(str);
1489 acpigen_emit_ext_op(DEBUG_OP);
1490}
1491
Cliff Huange6083082023-01-19 21:18:23 -08001492/* Concatenate (str1, res, tmp_res)
1493 Store(tmp_res, DEBUG) */
1494void acpigen_write_debug_concatenate_string_op(const char *str, uint8_t res,
1495 uint8_t tmp_res)
1496{
1497 acpigen_concatenate_string_op(str, res, tmp_res);
1498 acpigen_write_debug_op(tmp_res);
1499}
1500
Cliff Huang063a1b82023-02-18 00:17:26 -08001501static void acpigen_tx_byte(unsigned char byte, void *data)
1502{
1503 acpigen_emit_byte(byte);
1504}
1505
1506/* Store("formatted string", DEBUG) */
1507void acpigen_write_debug_sprintf(const char *fmt, ...)
1508{
1509 va_list args;
1510
1511 acpigen_write_store();
1512
1513 acpigen_emit_byte(STRING_PREFIX);
1514 va_start(args, fmt);
1515 vtxprintf(acpigen_tx_byte, fmt, args, NULL);
1516 va_end(args);
1517 acpigen_emit_byte('\0');
1518
1519 acpigen_emit_ext_op(DEBUG_OP);
1520}
1521
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001522void acpigen_write_if(void)
1523{
1524 acpigen_emit_byte(IF_OP);
1525 acpigen_write_len_f();
1526}
1527
1528/* If (And (arg1, arg2)) */
1529void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1530{
1531 acpigen_write_if();
1532 acpigen_emit_byte(AND_OP);
1533 acpigen_emit_byte(arg1);
1534 acpigen_emit_byte(arg2);
1535}
1536
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001537/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001538 * Generates ACPI code for checking if operand1 and operand2 are equal.
1539 * Both operand1 and operand2 are ACPI ops.
1540 *
1541 * If (Lequal (op,1 op2))
1542 */
1543void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1544{
1545 acpigen_write_if();
1546 acpigen_emit_byte(LEQUAL_OP);
1547 acpigen_emit_byte(op1);
1548 acpigen_emit_byte(op2);
1549}
1550
1551/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001552 * Generates ACPI code for checking if operand1 is greater than operand2.
1553 * Both operand1 and operand2 are ACPI ops.
1554 *
1555 * If (Lgreater (op1 op2))
1556 */
1557void acpigen_write_if_lgreater_op_op(uint8_t op1, uint8_t op2)
1558{
1559 acpigen_write_if();
1560 acpigen_emit_byte(LGREATER_OP);
1561 acpigen_emit_byte(op1);
1562 acpigen_emit_byte(op2);
1563}
1564
1565/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001566 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1567 * operand1 is ACPI op and operand2 is an integer.
1568 *
1569 * If (Lequal (op, val))
1570 */
1571void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001572{
1573 acpigen_write_if();
1574 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001575 acpigen_emit_byte(op);
1576 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001577}
1578
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001579/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001580 * Generates ACPI code for checking if operand is greater than the value, where,
1581 * operand is ACPI op and val is an integer.
1582 *
1583 * If (Lgreater (op, val))
1584 */
1585void acpigen_write_if_lgreater_op_int(uint8_t op, uint64_t val)
1586{
1587 acpigen_write_if();
1588 acpigen_emit_byte(LGREATER_OP);
1589 acpigen_emit_byte(op);
1590 acpigen_write_integer(val);
1591}
1592
1593/*
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001594 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1595 * operand1 is namestring and operand2 is an integer.
1596 *
1597 * If (Lequal ("namestr", val))
1598 */
1599void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1600{
1601 acpigen_write_if();
1602 acpigen_emit_byte(LEQUAL_OP);
1603 acpigen_emit_namestring(namestr);
1604 acpigen_write_integer(val);
1605}
1606
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001607/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001608 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1609 * operand1 is namestring and operand2 is an integer.
1610 *
1611 * If (Lgreater ("namestr", val))
1612 */
1613void acpigen_write_if_lgreater_namestr_int(const char *namestr, uint64_t val)
1614{
1615 acpigen_write_if();
1616 acpigen_emit_byte(LGREATER_OP);
1617 acpigen_emit_namestring(namestr);
1618 acpigen_write_integer(val);
1619}
1620
1621/*
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001622 * Generates ACPI code to check at runtime if an object named `namestring`
1623 * exists, and leaves the If scope open to continue execute code when this
1624 * is true. NOTE: Requires matching acpigen_write_if_end().
1625 *
1626 * If (CondRefOf (NAME))
1627 */
1628void acpigen_write_if_cond_ref_of(const char *namestring)
1629{
1630 acpigen_write_if();
1631 acpigen_emit_ext_op(COND_REFOF_OP);
1632 acpigen_emit_namestring(namestring);
1633 acpigen_emit_byte(ZERO_OP); /* ignore COND_REFOF_OP destination */
1634}
1635
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001636/* Closes previously opened if statement and generates ACPI code for else statement. */
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001637void acpigen_write_else(void)
1638{
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001639 acpigen_pop_len();
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001640 acpigen_emit_byte(ELSE_OP);
1641 acpigen_write_len_f();
1642}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001643
Duncan Laurie36858202020-10-06 21:01:51 +00001644void acpigen_write_shiftleft_op_int(uint8_t src_result, uint64_t count)
1645{
1646 acpigen_emit_byte(SHIFT_LEFT_OP);
1647 acpigen_emit_byte(src_result);
1648 acpigen_write_integer(count);
1649 acpigen_emit_byte(ZERO_OP);
1650}
1651
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001652void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1653{
1654 acpigen_emit_byte(TO_BUFFER_OP);
1655 acpigen_emit_byte(src);
1656 acpigen_emit_byte(dst);
1657}
1658
1659void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1660{
1661 acpigen_emit_byte(TO_INTEGER_OP);
1662 acpigen_emit_byte(src);
1663 acpigen_emit_byte(dst);
1664}
1665
Aaron Durbin80bc0912020-08-19 23:17:42 -06001666void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1667{
1668 acpigen_emit_byte(TO_INTEGER_OP);
1669 acpigen_emit_namestring(source);
1670 acpigen_emit_byte(dst_op);
1671}
1672
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301673void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001674{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301675 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001676
1677 acpigen_emit_byte(BUFFER_OP);
1678 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301679 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001680
1681 for (i = 0; i < size; i++)
1682 acpigen_emit_byte(arr[i]);
1683
1684 acpigen_pop_len();
1685}
1686
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301687void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001688{
1689 acpigen_emit_byte(RETURN_OP);
1690 acpigen_write_byte_buffer(arr, size);
1691}
1692
1693void acpigen_write_return_singleton_buffer(uint8_t arg)
1694{
1695 acpigen_write_return_byte_buffer(&arg, 1);
1696}
1697
Duncan Laurie2fe74712020-06-01 17:36:56 -07001698void acpigen_write_return_op(uint8_t arg)
1699{
1700 acpigen_emit_byte(RETURN_OP);
1701 acpigen_emit_byte(arg);
1702}
1703
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001704void acpigen_write_return_byte(uint8_t arg)
1705{
1706 acpigen_emit_byte(RETURN_OP);
1707 acpigen_write_byte(arg);
1708}
1709
Naresh G Solanki05abe432016-11-17 00:16:29 +05301710void acpigen_write_return_integer(uint64_t arg)
1711{
1712 acpigen_emit_byte(RETURN_OP);
1713 acpigen_write_integer(arg);
1714}
1715
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001716void acpigen_write_return_namestr(const char *arg)
1717{
1718 acpigen_emit_byte(RETURN_OP);
1719 acpigen_emit_namestring(arg);
1720}
1721
Naresh G Solanki05abe432016-11-17 00:16:29 +05301722void acpigen_write_return_string(const char *arg)
1723{
1724 acpigen_emit_byte(RETURN_OP);
1725 acpigen_write_string(arg);
1726}
1727
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001728void acpigen_write_upc(enum acpi_upc_type type)
1729{
1730 acpigen_write_name("_UPC");
1731 acpigen_write_package(4);
1732 /* Connectable */
1733 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1734 /* Type */
1735 acpigen_write_byte(type);
1736 /* Reserved0 */
1737 acpigen_write_zero();
1738 /* Reserved1 */
1739 acpigen_write_zero();
1740 acpigen_pop_len();
1741}
1742
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001743void acpigen_write_pld(const struct acpi_pld *pld)
1744{
1745 uint8_t buf[20];
1746
1747 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1748 return;
1749
1750 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001751 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001752 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001753 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001754}
1755
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001756void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *), size_t count, void *arg)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301757{
1758 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1759 acpigen_write_dsm_uuid_arr(&id, 1);
1760}
1761
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001762/*
1763 * Create a supported functions bitmask
1764 * bit 0: other functions than 0 are supported
1765 * bits 1-x: function x supported
1766 */
Arthur Heymans9c1f78d2023-06-22 21:04:06 +02001767/* On GCC aarch64 the compiler is worried about alloca() having unbounded stack usage. */
1768#if defined(__GNUC__) && !defined(__clang__)
1769#pragma GCC diagnostic ignored "-Wstack-usage="
1770#endif
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001771static void acpigen_dsm_uuid_enum_functions(const struct dsm_uuid *id)
1772{
1773 const size_t bytes = DIV_ROUND_UP(id->count, BITS_PER_BYTE);
1774 uint8_t *buffer = alloca(bytes);
1775 bool set = false;
1776 size_t cb_idx = 0;
1777
1778 memset(buffer, 0, bytes);
1779
1780 for (size_t i = 0; i < bytes; i++) {
1781 for (size_t j = 0; j < BITS_PER_BYTE; j++) {
1782 if (cb_idx >= id->count)
1783 break;
1784
1785 if (id->callbacks[cb_idx++]) {
1786 set = true;
1787 buffer[i] |= BIT(j);
1788 }
1789 }
1790 }
1791
1792 if (set)
1793 buffer[0] |= BIT(0);
1794
1795 acpigen_write_return_byte_buffer(buffer, bytes);
1796}
1797
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301798static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1799{
1800 size_t i;
1801
1802 /* If (LEqual (Local0, ToUUID(uuid))) */
1803 acpigen_write_if();
1804 acpigen_emit_byte(LEQUAL_OP);
1805 acpigen_emit_byte(LOCAL0_OP);
1806 acpigen_write_uuid(id->uuid);
1807
1808 /* ToInteger (Arg2, Local1) */
1809 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1810
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001811 /* If (LEqual(Local1, 0)) */
1812 {
1813 acpigen_write_if_lequal_op_int(LOCAL1_OP, 0);
1814 if (id->callbacks[0])
1815 id->callbacks[0](id->arg);
1816 else if (id->count)
1817 acpigen_dsm_uuid_enum_functions(id);
1818 acpigen_write_if_end();
1819 }
1820
1821 for (i = 1; i < id->count; i++) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301822 /* If (LEqual (Local1, i)) */
1823 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1824
1825 /* Callback to write if handler. */
1826 if (id->callbacks[i])
1827 id->callbacks[i](id->arg);
1828
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001829 acpigen_write_if_end(); /* If */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301830 }
1831
1832 /* Default case: Return (Buffer (One) { 0x0 }) */
1833 acpigen_write_return_singleton_buffer(0x0);
1834
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001835 acpigen_write_if_end(); /* If (LEqual (Local0, ToUUID(uuid))) */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301836
1837}
1838
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001839/*
1840 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301841 * This function takes as input array of uuid for the device, set of callbacks
1842 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1843 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1844 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001845 *
1846 * Arguments passed into _DSM method:
1847 * Arg0 = UUID
1848 * Arg1 = Revision
1849 * Arg2 = Function index
1850 * Arg3 = Function specific arguments
1851 *
1852 * AML code generated would look like:
1853 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301854 * ToBuffer (Arg0, Local0)
1855 * If (LEqual (Local0, ToUUID(uuid))) {
1856 * ToInteger (Arg2, Local1)
1857 * If (LEqual (Local1, 0)) {
1858 * <acpigen by callback[0]>
1859 * }
1860 * ...
1861 * If (LEqual (Local1, n)) {
1862 * <acpigen by callback[n]>
1863 * }
1864 * Return (Buffer (One) { 0x0 })
1865 * }
1866 * ...
1867 * If (LEqual (Local0, ToUUID(uuidn))) {
1868 * ...
1869 * }
1870 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001871 * }
1872 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301873void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001874{
1875 size_t i;
1876
1877 /* Method (_DSM, 4, Serialized) */
1878 acpigen_write_method_serialized("_DSM", 0x4);
1879
1880 /* ToBuffer (Arg0, Local0) */
1881 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1882
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001883 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301884 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001885
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301886 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001887 acpigen_write_return_singleton_buffer(0x0);
1888
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001889 acpigen_pop_len(); /* Method _DSM */
1890}
1891
Matt Delcob425bc82018-08-13 13:36:27 -07001892void acpigen_write_CPPC_package(const struct cppc_config *config)
1893{
1894 u32 i;
1895 u32 max;
1896 switch (config->version) {
1897 case 1:
1898 max = CPPC_MAX_FIELDS_VER_1;
1899 break;
1900 case 2:
1901 max = CPPC_MAX_FIELDS_VER_2;
1902 break;
1903 case 3:
1904 max = CPPC_MAX_FIELDS_VER_3;
1905 break;
1906 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001907 printk(BIOS_ERR, "CPPC version %u is not implemented\n", config->version);
Matt Delcob425bc82018-08-13 13:36:27 -07001908 return;
1909 }
1910 acpigen_write_name(CPPC_PACKAGE_NAME);
1911
1912 /* Adding 2 to account for length and version fields */
1913 acpigen_write_package(max + 2);
1914 acpigen_write_dword(max + 2);
1915
1916 acpigen_write_byte(config->version);
1917
1918 for (i = 0; i < max; ++i) {
Michael Niewöhner38107fa2021-10-05 22:22:21 +02001919 const cppc_entry_t *entry = &config->entries[i];
1920 if (entry->type == CPPC_TYPE_DWORD)
1921 acpigen_write_dword(entry->dword);
1922 else
1923 acpigen_write_register_resource(&entry->reg);
Matt Delcob425bc82018-08-13 13:36:27 -07001924 }
1925 acpigen_pop_len();
1926}
1927
1928void acpigen_write_CPPC_method(void)
1929{
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001930 char pscope[16];
Felix Heldf0a8b042023-05-12 15:55:06 +02001931 snprintf(pscope, sizeof(pscope),
1932 "\\_SB." CONFIG_ACPI_CPU_STRING "." CPPC_PACKAGE_NAME, 0);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001933
Matt Delcob425bc82018-08-13 13:36:27 -07001934 acpigen_write_method("_CPC", 0);
1935 acpigen_emit_byte(RETURN_OP);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001936 acpigen_emit_namestring(pscope);
Matt Delcob425bc82018-08-13 13:36:27 -07001937 acpigen_pop_len();
1938}
1939
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001940/*
1941 * Generate ACPI AML code for _ROM method.
1942 * This function takes as input ROM data and ROM length.
1943 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001944 * The ACPI spec isn't clear about what should happen at the end of the
1945 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1946 * bytes in the returned buffer with zeros.
1947 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001948 * Arguments passed into _DSM method:
1949 * Arg0 = Offset in Bytes
1950 * Arg1 = Bytes to return
1951 *
1952 * Example:
1953 * acpigen_write_rom(0xdeadbeef, 0x10000)
1954 *
1955 * AML code generated would look like:
1956 * Method (_ROM, 2, NotSerialized) {
1957 *
1958 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1959 * Field (ROMS, AnyAcc, NoLock, Preserve)
1960 * {
1961 * Offset (0),
1962 * RBF0, 0x80000
1963 * }
1964 *
1965 * Store (Arg0, Local0)
1966 * Store (Arg1, Local1)
1967 *
1968 * If (LGreater (Local1, 0x1000))
1969 * {
1970 * Store (0x1000, Local1)
1971 * }
1972 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001973 * Store (Local1, Local3)
1974 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001975 * If (LGreater (Local0, 0x10000))
1976 * {
1977 * Return(Buffer(Local1){0})
1978 * }
1979 *
1980 * If (LGreater (Local0, 0x0f000))
1981 * {
1982 * Subtract (0x10000, Local0, Local2)
1983 * If (LGreater (Local1, Local2))
1984 * {
1985 * Store (Local2, Local1)
1986 * }
1987 * }
1988 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001989 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001990 *
1991 * Multiply (Local0, 0x08, Local0)
1992 * Multiply (Local1, 0x08, Local1)
1993 *
1994 * CreateField (RBF0, Local0, Local1, TMPB)
1995 * Store (TMPB, ROM1)
1996 * Return (ROM1)
1997 * }
1998 */
1999
2000void acpigen_write_rom(void *bios, const size_t length)
2001{
2002 ASSERT(bios)
2003 ASSERT(length)
2004
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02002005 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06002006 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002007
2008 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002009 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY, (uintptr_t)bios, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002010 acpigen_write_opregion(&opreg);
2011
2012 struct fieldlist l[] = {
2013 FIELDLIST_OFFSET(0),
2014 FIELDLIST_NAMESTR("RBF0", 8 * length),
2015 };
2016
2017 /* Field (ROMS, AnyAcc, NoLock, Preserve)
2018 * {
2019 * Offset (0),
2020 * RBF0, 0x80000
2021 * } */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002022 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002023
2024 /* Store (Arg0, Local0) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002025 acpigen_write_store_ops(ARG0_OP, LOCAL0_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002026
2027 /* Store (Arg1, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002028 acpigen_write_store_ops(ARG1_OP, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002029
2030 /* ACPI SPEC requires to return at maximum 4KiB */
2031 /* If (LGreater (Local1, 0x1000)) */
Felix Held383a06e2023-02-09 16:25:38 +01002032 acpigen_write_if_lgreater_op_int(LOCAL1_OP, 0x1000);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002033
2034 /* Store (0x1000, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002035 acpigen_write_store_int_to_op(0x1000, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002036
2037 /* Pop if */
2038 acpigen_pop_len();
2039
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002040 /* Store (Local1, Local3) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002041 acpigen_write_store_ops(LOCAL1_OP, LOCAL3_OP);
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002042
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002043 /* If (LGreater (Local0, length)) */
Felix Held383a06e2023-02-09 16:25:38 +01002044 acpigen_write_if_lgreater_op_int(LOCAL0_OP, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002045
2046 /* Return(Buffer(Local1){0}) */
2047 acpigen_emit_byte(RETURN_OP);
2048 acpigen_emit_byte(BUFFER_OP);
2049 acpigen_write_len_f();
2050 acpigen_emit_byte(LOCAL1_OP);
2051 acpigen_emit_byte(0);
2052 acpigen_pop_len();
2053
2054 /* Pop if */
2055 acpigen_pop_len();
2056
2057 /* If (LGreater (Local0, length - 4096)) */
Felix Held383a06e2023-02-09 16:25:38 +01002058 acpigen_write_if_lgreater_op_int(LOCAL0_OP, length - 4096);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002059
2060 /* Subtract (length, Local0, Local2) */
2061 acpigen_emit_byte(SUBTRACT_OP);
2062 acpigen_write_integer(length);
2063 acpigen_emit_byte(LOCAL0_OP);
2064 acpigen_emit_byte(LOCAL2_OP);
2065
2066 /* If (LGreater (Local1, Local2)) */
Felix Held383a06e2023-02-09 16:25:38 +01002067 acpigen_write_if_lgreater_op_op(LOCAL1_OP, LOCAL2_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002068
2069 /* Store (Local2, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002070 acpigen_write_store_ops(LOCAL2_OP, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002071
2072 /* Pop if */
2073 acpigen_pop_len();
2074
2075 /* Pop if */
2076 acpigen_pop_len();
2077
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002078 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002079 acpigen_write_name("ROM1");
2080 acpigen_emit_byte(BUFFER_OP);
2081 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002082 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002083 acpigen_emit_byte(0);
2084 acpigen_pop_len();
2085
2086 /* Multiply (Local1, 0x08, Local1) */
2087 acpigen_emit_byte(MULTIPLY_OP);
2088 acpigen_emit_byte(LOCAL1_OP);
2089 acpigen_write_integer(0x08);
2090 acpigen_emit_byte(LOCAL1_OP);
2091
2092 /* Multiply (Local0, 0x08, Local0) */
2093 acpigen_emit_byte(MULTIPLY_OP);
2094 acpigen_emit_byte(LOCAL0_OP);
2095 acpigen_write_integer(0x08);
2096 acpigen_emit_byte(LOCAL0_OP);
2097
2098 /* CreateField (RBF0, Local0, Local1, TMPB) */
2099 acpigen_emit_ext_op(CREATEFIELD_OP);
2100 acpigen_emit_namestring("RBF0");
2101 acpigen_emit_byte(LOCAL0_OP);
2102 acpigen_emit_byte(LOCAL1_OP);
2103 acpigen_emit_namestring("TMPB");
2104
2105 /* Store (TMPB, ROM1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002106 acpigen_write_store_namestr_to_namestr("TMPB", "ROM1");
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002107
2108 /* Return (ROM1) */
2109 acpigen_emit_byte(RETURN_OP);
2110 acpigen_emit_namestring("ROM1");
2111
2112 /* Pop method */
2113 acpigen_pop_len();
2114}
2115
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002116/*
2117 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
2118 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
2119 * make callbacks into SoC acpigen code.
2120 *
2121 * Returns 0 on success and -1 on error.
2122 */
Duncan Laurie30c3f912020-10-09 04:48:53 +00002123int acpigen_enable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002124{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002125 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002126 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002127 else
2128 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002129}
2130
Duncan Laurie30c3f912020-10-09 04:48:53 +00002131int acpigen_disable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002132{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002133 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002134 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
2135 else
2136 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
2137}
Jonathan Zhang71299c22020-01-27 11:38:57 -08002138
Duncan Laurie30c3f912020-10-09 04:48:53 +00002139void acpigen_get_rx_gpio(const struct acpi_gpio *gpio)
Rajat Jain310623b2020-02-26 11:02:53 -08002140{
2141 acpigen_soc_read_rx_gpio(gpio->pins[0]);
2142
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002143 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08002144 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2145}
2146
Duncan Laurie30c3f912020-10-09 04:48:53 +00002147void acpigen_get_tx_gpio(const struct acpi_gpio *gpio)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002148{
2149 acpigen_soc_get_tx_gpio(gpio->pins[0]);
2150
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002151 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002152 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2153}
2154
Jonathan Zhang71299c22020-01-27 11:38:57 -08002155/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002156void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran, u16 range_min,
2157 u16 range_max, u16 translation, u16 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002158{
Felix Heldb2f2b532023-05-11 22:22:06 +02002159 /* Byte 0: Type 1, Large Item Value 0x8: Word Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002160 acpigen_emit_byte(0x88);
2161 /* Byte 1+2: length (0x000d) */
2162 acpigen_emit_byte(0x0d);
2163 acpigen_emit_byte(0x00);
2164 /* resource type */
2165 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2166 /* general flags */
2167 acpigen_emit_byte(gen_flags);
2168 /* type flags */
2169 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2170 acpigen_emit_byte(type_flags);
2171 /* granularity, min, max, translation, length */
2172 acpigen_emit_word(gran);
2173 acpigen_emit_word(range_min);
2174 acpigen_emit_word(range_max);
2175 acpigen_emit_word(translation);
2176 acpigen_emit_word(length);
2177}
2178
2179/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002180void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags, u32 gran,
2181 u32 range_min, u32 range_max, u32 translation, u32 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002182{
Felix Heldb2f2b532023-05-11 22:22:06 +02002183 /* Byte 0: Type 1, Large Item Value 0x7: DWord Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002184 acpigen_emit_byte(0x87);
2185 /* Byte 1+2: length (0023) */
2186 acpigen_emit_byte(23);
2187 acpigen_emit_byte(0x00);
2188 /* resource type */
2189 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2190 /* general flags */
2191 acpigen_emit_byte(gen_flags);
2192 /* type flags */
2193 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2194 acpigen_emit_byte(type_flags);
2195 /* granularity, min, max, translation, length */
2196 acpigen_emit_dword(gran);
2197 acpigen_emit_dword(range_min);
2198 acpigen_emit_dword(range_max);
2199 acpigen_emit_dword(translation);
2200 acpigen_emit_dword(length);
2201}
2202
2203static void acpigen_emit_qword(u64 data)
2204{
2205 acpigen_emit_dword(data & 0xffffffff);
2206 acpigen_emit_dword((data >> 32) & 0xffffffff);
2207}
2208
2209/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002210void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags, u64 gran,
2211 u64 range_min, u64 range_max, u64 translation, u64 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002212{
Felix Heldb2f2b532023-05-11 22:22:06 +02002213 /* Byte 0: Type 1, Large Item Value 0xa: QWord Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002214 acpigen_emit_byte(0x8a);
2215 /* Byte 1+2: length (0x002b) */
2216 acpigen_emit_byte(0x2b);
2217 acpigen_emit_byte(0x00);
2218 /* resource type */
2219 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2220 /* general flags */
2221 acpigen_emit_byte(gen_flags);
2222 /* type flags */
2223 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2224 acpigen_emit_byte(type_flags);
2225 /* granularity, min, max, translation, length */
2226 acpigen_emit_qword(gran);
2227 acpigen_emit_qword(range_min);
2228 acpigen_emit_qword(range_max);
2229 acpigen_emit_qword(translation);
2230 acpigen_emit_qword(length);
2231}
Furquan Shaikh1a829232020-04-23 11:11:05 -07002232
Felix Held0fdede02023-05-27 01:02:37 +02002233void acpigen_resource_producer_bus_number(u16 bus_base, u16 bus_limit)
Felix Held5a82f0d2023-05-09 16:10:35 +02002234{
2235 acpigen_resource_word(RSRC_TYPE_BUS, /* res_type */
2236 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2237 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002238 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2239 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held5a82f0d2023-05-09 16:10:35 +02002240 BUS_NUM_RANGE_RESOURCE_FLAG, /* type_flags */
2241 0, /* gran */
2242 bus_base, /* range_min */
2243 bus_limit, /* range_max */
2244 0x0, /* translation */
2245 bus_limit - bus_base + 1); /* length */
2246}
2247
Felix Held0fdede02023-05-27 01:02:37 +02002248void acpigen_resource_producer_io(u16 io_base, u16 io_limit)
Felix Held6695be62023-05-09 16:18:51 +02002249{
Felix Helde3c9a042023-06-05 19:59:25 +02002250 acpigen_resource_dword(RSRC_TYPE_IO, /* res_type */
Felix Held6695be62023-05-09 16:18:51 +02002251 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2252 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002253 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2254 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held6695be62023-05-09 16:18:51 +02002255 IO_RSRC_FLAG_ENTIRE_RANGE, /* type_flags */
2256 0, /* gran */
2257 io_base, /* range_min */
2258 io_limit, /* range_max */
2259 0x0, /* translation */
2260 io_limit - io_base + 1); /* length */
2261}
2262
Felix Held0fdede02023-05-27 01:02:37 +02002263static void acpigen_resource_producer_mmio32(u32 mmio_base, u32 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002264{
2265 acpigen_resource_dword(RSRC_TYPE_MEM, /* res_type */
2266 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2267 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002268 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2269 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held21594fd12023-05-09 16:39:57 +02002270 type_flags, /* type_flags */
2271 0, /* gran */
2272 mmio_base, /* range_min */
2273 mmio_limit, /* range_max */
2274 0x0, /* translation */
2275 mmio_limit - mmio_base + 1); /* length */
2276}
2277
Felix Held0fdede02023-05-27 01:02:37 +02002278static void acpigen_resource_producer_mmio64(u64 mmio_base, u64 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002279{
2280 acpigen_resource_qword(RSRC_TYPE_MEM, /* res_type */
2281 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2282 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002283 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2284 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held21594fd12023-05-09 16:39:57 +02002285 type_flags, /* type_flags */
2286 0, /* gran */
2287 mmio_base, /* range_min */
2288 mmio_limit, /* range_max */
2289 0x0, /* translation */
2290 mmio_limit - mmio_base + 1); /* length */
2291}
2292
Felix Held0fdede02023-05-27 01:02:37 +02002293void acpigen_resource_producer_mmio(u64 mmio_base, u64 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002294{
2295 if (mmio_base < 4ULL * GiB && mmio_limit < 4ULL * GiB)
Felix Held0fdede02023-05-27 01:02:37 +02002296 acpigen_resource_producer_mmio32(mmio_base, mmio_limit, type_flags);
Felix Held21594fd12023-05-09 16:39:57 +02002297 else
Felix Held0fdede02023-05-27 01:02:37 +02002298 acpigen_resource_producer_mmio64(mmio_base, mmio_limit, type_flags);
Felix Held21594fd12023-05-09 16:39:57 +02002299}
2300
Furquan Shaikh1a829232020-04-23 11:11:05 -07002301void acpigen_write_ADR(uint64_t adr)
2302{
2303 acpigen_write_name_qword("_ADR", adr);
2304}
2305
Duncan Laurie08a942f2020-04-29 12:13:14 -07002306/**
2307 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
2308 * @address: SoundWire device address properties.
2309 *
2310 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
2311 *
2312 * 63..52 - Reserved (0)
2313 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
2314 * Used when a Controller has multiple master devices, each producing a
2315 * separate SoundWire Link. Set to 0 for single-link controllers.
2316 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
2317 * 47..44 - SoundWire specification version that this device supports
2318 * 43..40 - Unique ID for multiple devices
2319 * 39..24 - MIPI standard manufacturer code
2320 * 23..08 - Vendor defined part ID
2321 * 07..00 - MIPI class encoding
2322 */
2323void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
2324{
2325 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
2326 (((uint64_t)address->version & 0xf) << 44) |
2327 (((uint64_t)address->unique_id & 0xf) << 40) |
2328 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
2329 (((uint64_t)address->part_id & 0xffff) << 8) |
2330 (((uint64_t)address->class & 0xff)));
2331}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06002332
2333void acpigen_notify(const char *namestr, int value)
2334{
2335 acpigen_emit_byte(NOTIFY_OP);
2336 acpigen_emit_namestring(namestr);
2337 acpigen_write_integer(value);
2338}
Aaron Durbin80bc0912020-08-19 23:17:42 -06002339
2340static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
2341{
2342 acpigen_emit_byte(aml_op);
2343 acpigen_emit_byte(srcop);
2344 acpigen_write_integer(byte_offset);
2345 acpigen_emit_namestring(name);
2346}
2347
2348void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2349{
2350 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2351}
2352
2353void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2354{
2355 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2356}
2357
2358void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2359{
2360 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2361}
2362
2363void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2364{
2365 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2366}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002367
2368void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2369{
2370 acpigen_write_name("_PCT");
2371 acpigen_write_package(0x02);
2372 acpigen_write_register_resource(perf_ctrl);
2373 acpigen_write_register_resource(perf_sts);
2374
2375 acpigen_pop_len();
2376}
2377
2378void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2379{
2380 acpigen_write_package(0x08);
2381 acpigen_write_dword(pstate_value->core_freq);
2382 acpigen_write_dword(pstate_value->power);
2383 acpigen_write_dword(pstate_value->transition_latency);
2384 acpigen_write_dword(pstate_value->bus_master_latency);
2385
2386 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2387 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2388 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2389 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2390
2391 acpigen_pop_len();
2392}
2393
2394void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2395{
2396 size_t pstate;
2397
2398 acpigen_write_name("XPSS");
2399 acpigen_write_package(nentries);
2400 for (pstate = 0; pstate < nentries; pstate++) {
2401 acpigen_write_xpss_package(pstate_values);
2402 pstate_values++;
2403 }
2404
2405 acpigen_pop_len();
2406}
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002407
2408/* Delay up to wait_ms until provided namestr matches expected value. */
2409void acpigen_write_delay_until_namestr_int(uint32_t wait_ms, const char *name, uint64_t value)
2410{
2411 uint32_t wait_ms_segment = 1;
2412 uint32_t segments = wait_ms;
2413
2414 /* Sleep in 16ms segments if delay is more than 32ms. */
2415 if (wait_ms > 32) {
2416 wait_ms_segment = 16;
2417 segments = wait_ms / 16;
2418 }
2419
2420 acpigen_write_store_int_to_op(segments, LOCAL7_OP);
2421 acpigen_emit_byte(WHILE_OP);
2422 acpigen_write_len_f();
2423 acpigen_emit_byte(LGREATER_OP);
2424 acpigen_emit_byte(LOCAL7_OP);
2425 acpigen_emit_byte(ZERO_OP);
2426
2427 /* If name is not provided then just delay in a loop. */
2428 if (name) {
2429 acpigen_write_if_lequal_namestr_int(name, value);
2430 acpigen_emit_byte(BREAK_OP);
2431 acpigen_pop_len(); /* If */
2432 }
2433
2434 acpigen_write_sleep(wait_ms_segment);
2435 acpigen_emit_byte(DECREMENT_OP);
2436 acpigen_emit_byte(LOCAL7_OP);
2437 acpigen_pop_len(); /* While */
Cliff Huangf97598f2023-03-01 14:30:41 -08002438
2439 if (name) {
2440 acpigen_write_if_lequal_op_op(LOCAL7_OP, ZERO_OP);
2441 acpigen_write_debug_sprintf("WARN: Wait loop timeout for variable %s",
2442 name);
2443 acpigen_pop_len(); /* If */
2444 }
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002445}
Arthur Heymans0eb59742023-04-25 16:23:37 +02002446
2447void acpigen_ssdt_override_sleep_states(bool enable_s1, bool enable_s2, bool enable_s3,
2448 bool enable_s4)
2449{
2450 assert(!(enable_s1 && CONFIG(ACPI_S1_NOT_SUPPORTED)));
2451 assert(!(enable_s3 && !CONFIG(HAVE_ACPI_RESUME)));
2452 assert(!(enable_s4 && CONFIG(DISABLE_ACPI_HIBERNATE)));
2453
2454 acpigen_write_scope("\\");
2455 uint32_t sleep_enable = (enable_s1 << 0) | (enable_s2 << 1)
2456 | (enable_s3 << 2) | (enable_s4 << 3);
2457 acpigen_write_name_dword("OSFG", sleep_enable);
2458 acpigen_pop_len();
2459}