blob: 7479dce7fe42a78aa60d173b84e8e11e67e02cad [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
Felix Held575ee132023-11-13 14:50:35 +01006/* If you need to change this, change acpigen_pop_len too */
7#define ACPIGEN_RSVD_PKGLEN_BYTES 3
8#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +00009
Duncan Laurie3829f232016-05-09 11:08:46 -070010#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000011#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070012#include <acpi/acpigen.h>
Elyes HAOUAScd4fe0f2019-03-29 17:12:15 +010013#include <assert.h>
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -060014#include <commonlib/helpers.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000015#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000016#include <device/device.h>
Duncan Laurie08a942f2020-04-29 12:13:14 -070017#include <device/soundwire.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010018#include <types.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000019
20static char *gencurrent;
21
22char *len_stack[ACPIGEN_LENSTACK_SIZE];
23int ltop = 0;
24
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010025void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000026{
27 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010028 len_stack[ltop++] = gencurrent;
Felix Held575ee132023-11-13 14:50:35 +010029 /* Reserve ACPIGEN_RSVD_PKGLEN_BYTES bytes for PkgLength. The actual byte values will
30 be written later in the corresponding acpigen_pop_len call. */
31 for (size_t i = 0; i < ACPIGEN_RSVD_PKGLEN_BYTES; i++)
32 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000033}
34
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010035void acpigen_pop_len(void)
36{
Felix Helda6f74592023-11-10 19:57:27 +010037 size_t len;
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010038 ASSERT(ltop > 0)
39 char *p = len_stack[--ltop];
40 len = gencurrent - p;
41 ASSERT(len <= ACPIGEN_MAXLEN)
Felix Held575ee132023-11-13 14:50:35 +010042 const size_t payload_len = len - ACPIGEN_RSVD_PKGLEN_BYTES;
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010043
Felix Helda6f74592023-11-10 19:57:27 +010044 if (len <= 0x3f + 2) {
45 /* PkgLength of up to 0x3f can be encoded in one PkgLength byte instead of the
46 reserved 3 bytes. Since only 1 PkgLength byte will be written, the payload
47 data needs to be moved by 2 bytes */
Felix Held575ee132023-11-13 14:50:35 +010048 memmove(&p[ACPIGEN_RSVD_PKGLEN_BYTES - 2],
49 &p[ACPIGEN_RSVD_PKGLEN_BYTES], payload_len);
Felix Helda6f74592023-11-10 19:57:27 +010050 /* Adjust the PkgLength to take into account that we only use 1 of the 3
51 reserved bytes */
52 len -= 2;
53 /* The two most significant bits of PkgLength get the value of 0 to indicate
54 there are no additional PkgLength bytes. In this case the single PkgLength
55 byte encodes the length in its lower 6 bits */
56 p[0] = len;
57 /* Adjust pointer for next ACPI bytecode byte */
58 acpigen_set_current(p + len);
59 } else if (len <= 0xfff + 1) {
60 /* PkgLength of up to 0xfff can be encoded in 2 PkgLength bytes instead of the
61 reserved 3 bytes. Since only 2 PkgLength bytes will be written, the payload
62 data needs to be moved by 1 byte */
Felix Held575ee132023-11-13 14:50:35 +010063 memmove(&p[ACPIGEN_RSVD_PKGLEN_BYTES - 1],
64 &p[ACPIGEN_RSVD_PKGLEN_BYTES], payload_len);
Felix Helda6f74592023-11-10 19:57:27 +010065 /* Adjust the PkgLength to take into account that we only use 2 of the 3
66 reserved bytes */
67 len -= 1;
68 /* The two most significant bits of PkgLength get the value of 1 to indicate
69 there's a second PkgLength byte. The lower 4 bits of the first PkgLength
70 byte and the second PkgLength byte encode the length */
71 p[0] = (0x1 << 6 | (len & 0xf));
72 p[1] = (len >> 4 & 0xff);
73 /* Adjust pointer for next ACPI bytecode byte */
74 acpigen_set_current(p + len);
75 } else if (len <= 0xfffff) {
76 /* PkgLength of up to 0xfffff can be encoded in 3 PkgLength bytes. Since this
77 is the amount of reserved bytes, no need to move the payload in this case */
78 /* The two most significant bits of PkgLength get the value of 2 to indicate
79 there are two more PkgLength bytes following the first one. The lower 4 bits
80 of the first PkgLength byte and the two following PkgLength bytes encode the
81 length */
82 p[0] = (0x2 << 6 | (len & 0xf));
83 p[1] = (len >> 4 & 0xff);
84 p[2] = (len >> 12 & 0xff);
85 /* No need to adjust pointer for next ACPI bytecode byte */
86 } else {
87 /* The case of PkgLength up to 0xfffffff isn't supported at the moment */
88 printk(BIOS_ERR, "%s: package length exceeds maximum of 0xfffff.\n", __func__);
89 }
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010090}
91
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000092void acpigen_set_current(char *curr)
93{
94 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000095}
96
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000097char *acpigen_get_current(void)
98{
99 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000100}
101
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100102void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000103{
104 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000105}
106
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700107void acpigen_emit_ext_op(uint8_t op)
108{
109 acpigen_emit_byte(EXT_OP_PREFIX);
110 acpigen_emit_byte(op);
111}
112
Duncan Laurie9ccae752016-05-09 07:43:19 -0700113void acpigen_emit_word(unsigned int data)
114{
115 acpigen_emit_byte(data & 0xff);
116 acpigen_emit_byte((data >> 8) & 0xff);
117}
118
119void acpigen_emit_dword(unsigned int data)
120{
121 acpigen_emit_byte(data & 0xff);
122 acpigen_emit_byte((data >> 8) & 0xff);
123 acpigen_emit_byte((data >> 16) & 0xff);
124 acpigen_emit_byte((data >> 24) & 0xff);
125}
126
Duncan Laurie85d80272016-07-02 19:53:54 -0700127char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000128{
Duncan Laurie85d80272016-07-02 19:53:54 -0700129 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700130 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100131 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -0700132 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +0000133 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -0700134 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000135}
136
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100137void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000138{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700139 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000140 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000141}
142
Duncan Laurie9ccae752016-05-09 07:43:19 -0700143void acpigen_write_word(unsigned int data)
144{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700145 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700146 acpigen_emit_word(data);
147}
148
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100149void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000150{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700151 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700152 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000153}
154
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100155void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000156{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700157 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700158 acpigen_emit_dword(data & 0xffffffff);
159 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000160}
161
Duncan Laurief7c38762016-05-09 08:20:38 -0700162void acpigen_write_zero(void)
163{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700164 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700165}
166
167void acpigen_write_one(void)
168{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700169 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700170}
171
172void acpigen_write_ones(void)
173{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700174 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700175}
176
177void acpigen_write_integer(uint64_t data)
178{
179 if (data == 0)
180 acpigen_write_zero();
181 else if (data == 1)
182 acpigen_write_one();
183 else if (data <= 0xff)
184 acpigen_write_byte((unsigned char)data);
185 else if (data <= 0xffff)
186 acpigen_write_word((unsigned int)data);
187 else if (data <= 0xffffffff)
188 acpigen_write_dword((unsigned int)data);
189 else
190 acpigen_write_qword(data);
191}
192
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100193void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000194{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100195 acpigen_write_name(name);
196 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000197}
198
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100199void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000200{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100201 acpigen_write_name(name);
202 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000203}
204
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100205void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000206{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100207 acpigen_write_name(name);
208 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000209}
210
Duncan Laurief7c38762016-05-09 08:20:38 -0700211void acpigen_write_name_integer(const char *name, uint64_t val)
212{
213 acpigen_write_name(name);
214 acpigen_write_integer(val);
215}
216
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700217void acpigen_write_name_string(const char *name, const char *string)
218{
219 acpigen_write_name(name);
220 acpigen_write_string(string);
221}
222
Patrick Rudolph389c8272019-12-17 13:54:41 +0100223void acpigen_write_name_unicode(const char *name, const char *string)
224{
225 const size_t len = strlen(string) + 1;
226 acpigen_write_name(name);
227 acpigen_emit_byte(BUFFER_OP);
228 acpigen_write_len_f();
Matt DeVillierd4d40c62023-11-09 15:04:58 -0600229 acpigen_write_integer(2 * len);
Patrick Rudolph389c8272019-12-17 13:54:41 +0100230 for (size_t i = 0; i < len; i++) {
Arthur Heymans62ea7a82023-06-22 20:39:31 +0200231 const signed char c = string[i];
Patrick Rudolph389c8272019-12-17 13:54:41 +0100232 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
233 acpigen_emit_word(c >= 0 ? c : '?');
234 }
235 acpigen_pop_len();
236}
237
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100238void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000239{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000240 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700241 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000242 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000243}
244
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700245void acpigen_emit_string(const char *string)
246{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200247 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700248 acpigen_emit_byte('\0'); /* NUL */
249}
250
251void acpigen_write_string(const char *string)
252{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700253 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700254 acpigen_emit_string(string);
255}
256
Duncan Laurie37319032016-05-26 12:47:05 -0700257void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
258{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800259 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700260
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700261 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700262 acpigen_write_name_string("_HID", hid);
263}
264
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100265/*
266 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600267 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
268 * and "By convention, when an ASL compiler pads a name shorter than 4
269 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100270 *
271 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
272 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000273
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700274static void acpigen_emit_simple_namestring(const char *name)
275{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100276 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000277 char ud[] = "____";
278 for (i = 0; i < 4; i++) {
279 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100280 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000281 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000282 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700283 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000284 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000285}
286
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700287static void acpigen_emit_double_namestring(const char *name, int dotpos)
288{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700289 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100290 acpigen_emit_simple_namestring(name);
291 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000292}
293
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700294static void acpigen_emit_multi_namestring(const char *name)
295{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100296 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000297 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700298 acpigen_emit_byte(MULTI_NAME_PREFIX);
299 acpigen_emit_byte(ZERO_OP);
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100300 pathlen = ((unsigned char *)acpigen_get_current()) - 1;
Rudolf Marek3310d752009-06-21 20:26:13 +0000301
302 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100303 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000304 /* find end or next entity */
305 while ((name[0] != '.') && (name[0] != '\0'))
306 name++;
307 /* forward to next */
308 if (name[0] == '.')
309 name++;
310 count++;
311 }
312
313 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000314}
315
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700316void acpigen_emit_namestring(const char *namepath)
317{
Rudolf Marek3310d752009-06-21 20:26:13 +0000318 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000319 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000320
Ronak Kanabar7c0f0072020-11-30 15:40:51 +0530321 /* Check for NULL pointer */
322 if (!namepath)
323 return;
324
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600325 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000326 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100327 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000328 namepath++;
329 }
330
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600331 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000332 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100333 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000334 namepath++;
335 }
336
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200337 /* If we have only \\ or only ^...^. Then we need to put a null
338 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200339 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700340 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100341 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200342 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000343
344 i = 0;
345 while (namepath[i] != '\0') {
346 if (namepath[i] == '.') {
347 dotcount++;
348 dotpos = i;
349 }
350 i++;
351 }
352
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700353 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100354 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700355 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100356 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700357 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100358 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000359}
360
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100361void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000362{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700363 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100364 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000365}
366
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100367void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000368{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700369 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100370 acpigen_write_len_f();
371 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000372}
Rudolf Marekf997b552009-02-14 15:40:23 +0000373
Duncan Laurie2fe74712020-06-01 17:36:56 -0700374void acpigen_get_package_op_element(uint8_t package_op, unsigned int element, uint8_t dest_op)
375{
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800376 /* <dest_op> = DeRefOf (<package_op>[<element>]) */
Duncan Laurie2fe74712020-06-01 17:36:56 -0700377 acpigen_write_store();
378 acpigen_emit_byte(DEREF_OP);
379 acpigen_emit_byte(INDEX_OP);
380 acpigen_emit_byte(package_op);
381 acpigen_write_integer(element);
382 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
383 acpigen_emit_byte(dest_op);
384}
385
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800386void acpigen_set_package_op_element_int(uint8_t package_op, unsigned int element, uint64_t src)
387{
388 /* DeRefOf (<package>[<element>]) = <src> */
389 acpigen_write_store();
390 acpigen_write_integer(src);
391 acpigen_emit_byte(DEREF_OP);
392 acpigen_emit_byte(INDEX_OP);
393 acpigen_emit_byte(package_op);
394 acpigen_write_integer(element);
395 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
396}
397
398void acpigen_get_package_element(const char *package, unsigned int element, uint8_t dest_op)
399{
400 /* <dest_op> = <package>[<element>] */
401 acpigen_write_store();
402 acpigen_emit_byte(INDEX_OP);
403 acpigen_emit_namestring(package);
404 acpigen_write_integer(element);
405 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
406 acpigen_emit_byte(dest_op);
407}
408
409void acpigen_set_package_element_int(const char *package, unsigned int element, uint64_t src)
410{
411 /* <package>[<element>] = <src> */
412 acpigen_write_store();
413 acpigen_write_integer(src);
414 acpigen_emit_byte(INDEX_OP);
415 acpigen_emit_namestring(package);
416 acpigen_write_integer(element);
417 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
418}
419
420void acpigen_set_package_element_namestr(const char *package, unsigned int element,
421 const char *src)
422{
423 /* <package>[<element>] = <src> */
424 acpigen_write_store();
425 acpigen_emit_namestring(src);
426 acpigen_emit_byte(INDEX_OP);
427 acpigen_emit_namestring(package);
428 acpigen_write_integer(element);
429 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
430}
431
Felix Heldb57b12f2023-01-24 19:31:00 +0100432void acpigen_write_processor_namestring(unsigned int cpu_index)
433{
434 char buffer[16];
Felix Heldf0a8b042023-05-12 15:55:06 +0200435 snprintf(buffer, sizeof(buffer), "\\_SB." CONFIG_ACPI_CPU_STRING, cpu_index);
Felix Heldb57b12f2023-01-24 19:31:00 +0100436 acpigen_emit_namestring(buffer);
437}
438
Elyes Haouas9c824912023-01-28 09:13:17 +0100439/* Processor() operator is deprecated as of ACPI 6.0, use Device() instead. */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100440void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000441{
442/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100443 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200444 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000445*/
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700446 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100447 acpigen_write_len_f();
Felix Heldb57b12f2023-01-24 19:31:00 +0100448 acpigen_write_processor_namestring(cpuindex);
Rudolf Marekf997b552009-02-14 15:40:23 +0000449 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700450 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000451 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000452}
453
Felix Held32bba182023-01-28 03:37:21 +0100454void acpigen_write_processor_device(unsigned int cpu_index)
455{
456 acpigen_emit_ext_op(DEVICE_OP);
457 acpigen_write_len_f();
458 acpigen_write_processor_namestring(cpu_index);
459 acpigen_write_name_string("_HID", "ACPI0007");
460 acpigen_write_name_integer("_UID", cpu_index);
461}
462
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100463void acpigen_write_processor_package(const char *const name, const unsigned int first_core,
Nico Huber4d211ac2017-09-01 21:14:36 +0200464 const unsigned int core_count)
465{
466 unsigned int i;
Nico Huber4d211ac2017-09-01 21:14:36 +0200467
468 acpigen_write_name(name);
469 acpigen_write_package(core_count);
Felix Heldb57b12f2023-01-24 19:31:00 +0100470
471 for (i = first_core; i < first_core + core_count; ++i)
472 acpigen_write_processor_namestring(i);
473
Nico Huber4d211ac2017-09-01 21:14:36 +0200474 acpigen_pop_len();
475}
476
Arthur Heymans8f055272018-11-28 13:18:57 +0100477/* Method to notify all CPU cores */
478void acpigen_write_processor_cnot(const unsigned int number_of_cores)
479{
480 int core_id;
481
Christian Walterbe3979c2019-12-18 15:07:59 +0100482 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100483 for (core_id = 0; core_id < number_of_cores; core_id++) {
Arthur Heymans8f055272018-11-28 13:18:57 +0100484 acpigen_emit_byte(NOTIFY_OP);
Felix Heldb57b12f2023-01-24 19:31:00 +0100485 acpigen_write_processor_namestring(core_id);
Arthur Heymans8f055272018-11-28 13:18:57 +0100486 acpigen_emit_byte(ARG0_OP);
487 }
488 acpigen_pop_len();
489}
490
Naresh G Solanki8535c662016-10-25 00:51:24 +0530491/*
492 * Generate ACPI AML code for OperationRegion
493 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
494 * where rname is region name, space is region space, offset is region offset &
495 * len is region length.
496 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
497 */
Duncan Laurie35029602020-10-09 17:50:25 +0000498void acpigen_write_opregion(const struct opregion *opreg)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530499{
500 /* OpregionOp */
501 acpigen_emit_ext_op(OPREGION_OP);
502 /* NameString 4 chars only */
503 acpigen_emit_simple_namestring(opreg->name);
504 /* RegionSpace */
505 acpigen_emit_byte(opreg->regionspace);
506 /* RegionOffset & RegionLen, it can be byte word or double word */
507 acpigen_write_integer(opreg->regionoffset);
508 acpigen_write_integer(opreg->regionlen);
509}
510
Patrick Rudolph32bae492019-08-08 12:47:30 +0200511/*
512 * Generate ACPI AML code for Mutex
513 * Arg0: Pointer to name of mutex
514 * Arg1: Initial value of mutex
515 */
516void acpigen_write_mutex(const char *name, const uint8_t flags)
517{
518 /* MutexOp */
519 acpigen_emit_ext_op(MUTEX_OP);
Paweł Anikieled3b6882023-10-13 11:24:19 +0000520 acpigen_emit_namestring(name);
Patrick Rudolph32bae492019-08-08 12:47:30 +0200521 acpigen_emit_byte(flags);
522}
523
524void acpigen_write_acquire(const char *name, const uint16_t val)
525{
526 /* AcquireOp */
527 acpigen_emit_ext_op(ACQUIRE_OP);
Paweł Anikieled3b6882023-10-13 11:24:19 +0000528 acpigen_emit_namestring(name);
Patrick Rudolph32bae492019-08-08 12:47:30 +0200529 acpigen_emit_word(val);
530}
531
532void acpigen_write_release(const char *name)
533{
534 /* ReleaseOp */
535 acpigen_emit_ext_op(RELEASE_OP);
Paweł Anikieled3b6882023-10-13 11:24:19 +0000536 acpigen_emit_namestring(name);
Patrick Rudolph32bae492019-08-08 12:47:30 +0200537}
538
Patrick Rudolph894977b2017-07-01 16:15:05 +0200539static void acpigen_write_field_length(uint32_t len)
540{
541 uint8_t i, j;
542 uint8_t emit[4];
543
544 i = 1;
545 if (len < 0x40) {
546 emit[0] = len & 0x3F;
547 } else {
548 emit[0] = len & 0xF;
549 len >>= 4;
550 while (len) {
551 emit[i] = len & 0xFF;
552 i++;
553 len >>= 8;
554 }
555 }
556 /* Update bit 7:6 : Number of bytes followed by emit[0] */
557 emit[0] |= (i - 1) << 6;
558
559 for (j = 0; j < i; j++)
560 acpigen_emit_byte(emit[j]);
561}
562
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100563static void acpigen_write_field_offset(uint32_t offset, uint32_t current_bit_pos)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530564{
565 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530566
567 if (offset < current_bit_pos) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100568 printk(BIOS_WARNING, "%s: Cannot move offset backward", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530569 return;
570 }
571
572 diff_bits = offset - current_bit_pos;
573 /* Upper limit */
574 if (diff_bits > 0xFFFFFFF) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100575 printk(BIOS_WARNING, "%s: Offset very large to encode", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530576 return;
577 }
578
Naresh G Solanki8535c662016-10-25 00:51:24 +0530579 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200580 acpigen_write_field_length(diff_bits);
581}
582
Michael Niewöhner060dc7b2022-05-13 00:04:19 +0200583void acpigen_write_field_name(const char *name, uint32_t size)
Patrick Rudolph894977b2017-07-01 16:15:05 +0200584{
585 acpigen_emit_simple_namestring(name);
586 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530587}
588
Duncan Laurie095bbf92020-09-30 23:09:29 +0000589static void acpigen_write_field_reserved(uint32_t size)
590{
591 acpigen_emit_byte(0);
592 acpigen_write_field_length(size);
593}
594
Naresh G Solanki8535c662016-10-25 00:51:24 +0530595/*
596 * Generate ACPI AML code for Field
597 * Arg0: region name
598 * Arg1: Pointer to struct fieldlist.
599 * Arg2: no. of entries in Arg1
600 * Arg3: flags which indicate filed access type, lock rule & update rule.
601 * Example with fieldlist
602 * struct fieldlist l[] = {
603 * FIELDLIST_OFFSET(0x84),
604 * FIELDLIST_NAMESTR("PMCS", 2),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000605 * FIELDLIST_RESERVED(6),
Naresh G Solanki8535c662016-10-25 00:51:24 +0530606 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200607 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530608 * FIELD_PRESERVE);
609 * Output:
610 * Field (UART, AnyAcc, NoLock, Preserve)
611 * {
612 * Offset (0x84),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000613 * PMCS, 2,
614 * , 6,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530615 * }
616 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700617void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530618 uint8_t flags)
619{
620 uint16_t i;
621 uint32_t current_bit_pos = 0;
622
623 /* FieldOp */
624 acpigen_emit_ext_op(FIELD_OP);
625 /* Package Length */
626 acpigen_write_len_f();
627 /* NameString 4 chars only */
628 acpigen_emit_simple_namestring(name);
629 /* Field Flag */
630 acpigen_emit_byte(flags);
631
632 for (i = 0; i < count; i++) {
633 switch (l[i].type) {
634 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200635 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530636 current_bit_pos += l[i].bits;
637 break;
Duncan Laurie095bbf92020-09-30 23:09:29 +0000638 case RESERVED:
639 acpigen_write_field_reserved(l[i].bits);
640 current_bit_pos += l[i].bits;
641 break;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530642 case OFFSET:
643 acpigen_write_field_offset(l[i].bits, current_bit_pos);
644 current_bit_pos = l[i].bits;
645 break;
646 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100647 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530648 break;
649 }
650 }
651 acpigen_pop_len();
652}
653
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200654/*
655 * Generate ACPI AML code for IndexField
656 * Arg0: region name
657 * Arg1: Pointer to struct fieldlist.
658 * Arg2: no. of entries in Arg1
659 * Arg3: flags which indicate filed access type, lock rule & update rule.
660 * Example with fieldlist
661 * struct fieldlist l[] = {
662 * FIELDLIST_OFFSET(0x84),
663 * FIELDLIST_NAMESTR("PMCS", 2),
664 * };
665 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
666 * FIELD_NOLOCK |
667 * FIELD_PRESERVE);
668 * Output:
669 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
670 * {
671 * Offset (0x84),
672 * PMCS, 2
673 * }
674 */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100675void acpigen_write_indexfield(const char *idx, const char *data, struct fieldlist *l,
676 size_t count, uint8_t flags)
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200677{
678 uint16_t i;
679 uint32_t current_bit_pos = 0;
680
681 /* FieldOp */
682 acpigen_emit_ext_op(INDEX_FIELD_OP);
683 /* Package Length */
684 acpigen_write_len_f();
685 /* NameString 4 chars only */
686 acpigen_emit_simple_namestring(idx);
687 /* NameString 4 chars only */
688 acpigen_emit_simple_namestring(data);
689 /* Field Flag */
690 acpigen_emit_byte(flags);
691
692 for (i = 0; i < count; i++) {
693 switch (l[i].type) {
694 case NAME_STRING:
695 acpigen_write_field_name(l[i].name, l[i].bits);
696 current_bit_pos += l[i].bits;
697 break;
698 case OFFSET:
699 acpigen_write_field_offset(l[i].bits, current_bit_pos);
700 current_bit_pos = l[i].bits;
701 break;
702 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100703 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200704 break;
705 }
706 }
707 acpigen_pop_len();
708}
709
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100710void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000711{
712/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200713 Name (_PCT, Package (0x02)
714 {
715 ResourceTemplate ()
716 {
717 Register (FFixedHW,
718 0x00, // Bit Width
719 0x00, // Bit Offset
720 0x0000000000000000, // Address
721 ,)
722 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000723
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200724 ResourceTemplate ()
725 {
726 Register (FFixedHW,
727 0x00, // Bit Width
728 0x00, // Bit Offset
729 0x0000000000000000, // Address
730 ,)
731 }
732 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000733*/
734 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700735 /* 00000030 "0._PCT.," */
736 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
737 /* 00000038 "........" */
738 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
739 /* 00000040 "........" */
740 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
741 /* 00000048 "....y..." */
742 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
743 /* 00000050 "........" */
744 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
745 /* 00000058 "........" */
746 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000747 0x00, 0x79, 0x00
748 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100749 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000750}
751
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300752void acpigen_write_PTC(uint8_t duty_width, uint8_t duty_offset, uint16_t p_cnt)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200753{
754/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200755 Name (_PTC, Package (0x02)
756 {
757 ResourceTemplate ()
758 {
759 Register (FFixedHW,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300760 0x00, // Duty Width
761 0x00, // Duty Offset
762 0x0000000000000000, // P_CNT IO Address
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200763 ,)
764 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200765
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200766 ResourceTemplate ()
767 {
768 Register (FFixedHW,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300769 0x00, // Duty Width
770 0x00, // Duty Offset
771 0x0000000000000000, // P_CNT IO Address
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200772 ,)
773 }
774 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200775*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200776 acpi_addr_t addr = {
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300777 .bit_width = duty_width,
778 .bit_offset = duty_offset,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200779 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300780 .addrl = p_cnt,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100781 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200782 };
783
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300784 if (addr.addrl != 0)
785 addr.space_id = ACPI_ADDRESS_SPACE_IO;
786 else
787 addr.space_id = ACPI_ADDRESS_SPACE_FIXED;
788
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100789 acpigen_write_name("_PTC");
790 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200791
792 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700793 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200794
795 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700796 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200797
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100798 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200799}
800
Kyösti Mälkkiddc37d62023-04-17 12:11:03 +0300801void acpigen_write_empty_PTC(void)
802{
803 acpigen_write_PTC(0, 0, 0);
804}
805
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700806static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100807{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700808 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100809 acpigen_write_len_f();
810 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700811 acpigen_emit_byte(flags);
812}
813
814/* Method (name, nargs, NotSerialized) */
815void acpigen_write_method(const char *name, int nargs)
816{
817 __acpigen_write_method(name, (nargs & 7));
818}
819
820/* Method (name, nargs, Serialized) */
821void acpigen_write_method_serialized(const char *name, int nargs)
822{
823 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100824}
825
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100826void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100827{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700828 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100829 acpigen_write_len_f();
830 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100831}
832
Raul E Rangel052c9632021-05-12 17:01:30 -0600833void acpigen_write_thermal_zone(const char *name)
834{
835 acpigen_emit_ext_op(THERMAL_ZONE_OP);
836 acpigen_write_len_f();
837 acpigen_emit_namestring(name);
838}
839
Duncan Laurieabe2de82016-05-09 11:08:46 -0700840void acpigen_write_STA(uint8_t status)
841{
842 /*
843 * Method (_STA, 0, NotSerialized) { Return (status) }
844 */
845 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700846 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700847 acpigen_write_byte(status);
848 acpigen_pop_len();
849}
850
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530851void acpigen_write_STA_ext(const char *namestring)
852{
853 /*
854 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
855 */
856 acpigen_write_method("_STA", 0);
857 acpigen_emit_byte(RETURN_OP);
858 acpigen_emit_namestring(namestring);
859 acpigen_pop_len();
860}
861
Felix Held2d4112f2023-05-04 23:00:06 +0200862void acpigen_write_BBN(uint8_t base_bus_number)
863{
864 /*
865 * Method (_BBN, 0, NotSerialized) { Return (status) }
866 */
867 acpigen_write_method("_BBN", 0);
868 acpigen_emit_byte(RETURN_OP);
869 acpigen_write_byte(base_bus_number);
870 acpigen_pop_len();
871}
872
Raul E Rangelc7048322021-04-19 15:58:25 -0600873void acpigen_write_LPI_package(u64 level, const struct acpi_lpi_state *states, u16 nentries)
874{
875 /*
876 * Name (_LPI, Package (0x06) // _LPI: Low Power Idle States
877 * {
878 * 0x0000,
879 * 0x0000000000000000,
880 * 0x0003,
881 * Package (0x0A)
882 * {
883 * 0x00000002,
884 * 0x00000001,
885 * 0x00000001,
886 * 0x00000000,
887 * 0x00000000,
888 * 0x00000000,
889 * ResourceTemplate ()
890 * {
891 * Register (FFixedHW,
892 * 0x02, // Bit Width
893 * 0x02, // Bit Offset
894 * 0x0000000000000000, // Address
895 * ,)
896 * },
897 *
898 * ResourceTemplate ()
899 * {
900 * Register (SystemMemory,
901 * 0x00, // Bit Width
902 * 0x00, // Bit Offset
903 * 0x0000000000000000, // Address
904 * ,)
905 * },
906 *
907 * ResourceTemplate ()
908 * {
909 * Register (SystemMemory,
910 * 0x00, // Bit Width
911 * 0x00, // Bit Offset
912 * 0x0000000000000000, // Address
913 * ,)
914 * },
915 *
916 * "C1"
917 * },
918 * ...
919 * }
920 */
921
922 acpigen_write_name("_LPI");
923 acpigen_write_package(3 + nentries);
924 acpigen_write_word(0); /* Revision */
925 acpigen_write_qword(level);
926 acpigen_write_word(nentries);
927
928 for (size_t i = 0; i < nentries; i++, states++) {
929 acpigen_write_package(0xA);
930 acpigen_write_dword(states->min_residency_us);
931 acpigen_write_dword(states->worst_case_wakeup_latency_us);
932 acpigen_write_dword(states->flags);
933 acpigen_write_dword(states->arch_context_lost_flags);
934 acpigen_write_dword(states->residency_counter_frequency_hz);
935 acpigen_write_dword(states->enabled_parent_state);
936 acpigen_write_register_resource(&states->entry_method);
937 acpigen_write_register_resource(&states->residency_counter_register);
938 acpigen_write_register_resource(&states->usage_counter_register);
939 acpigen_write_string(states->state_name);
940 acpigen_pop_len();
941 }
942 acpigen_pop_len();
943}
944
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100945/*
946 * Generates a func with max supported P-states.
947 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100948void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000949{
950/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200951 Method (_PPC, 0, NotSerialized)
952 {
953 Return (nr)
954 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000955*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100956 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700957 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000958 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100959 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100960 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000961}
962
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100963/*
964 * Generates a func with max supported P-states saved
965 * in the variable PPCM.
966 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100967void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700968{
969/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200970 Method (_PPC, 0, NotSerialized)
971 {
972 Return (PPCM)
973 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700974*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100975 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700976 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700977 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100978 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100979 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700980}
981
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100982void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200983{
984/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200985 // Sample _TPC method
986 Method (_TPC, 0, NotSerialized)
987 {
988 Return (\TLVL)
989 }
990*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100991 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700992 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100993 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100994 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200995}
996
Duncan Laurieabe2de82016-05-09 11:08:46 -0700997void acpigen_write_PRW(u32 wake, u32 level)
998{
999 /*
1000 * Name (_PRW, Package () { wake, level }
1001 */
1002 acpigen_write_name("_PRW");
1003 acpigen_write_package(2);
1004 acpigen_write_integer(wake);
1005 acpigen_write_integer(level);
1006 acpigen_pop_len();
1007}
1008
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001009void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat, u32 control,
1010 u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +00001011{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001012 acpigen_write_package(6);
1013 acpigen_write_dword(coreFreq);
1014 acpigen_write_dword(power);
1015 acpigen_write_dword(transLat);
1016 acpigen_write_dword(busmLat);
1017 acpigen_write_dword(control);
1018 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001019 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -07001020
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001021 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n", coreFreq, power,
1022 control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +00001023}
Patrick Georgidf444bf2009-04-21 20:34:36 +00001024
Jason Gleneskca36aed2020-09-15 21:01:57 -07001025void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
1026{
1027 size_t pstate;
1028
1029 acpigen_write_name("_PSS");
1030 acpigen_write_package(nentries);
1031 for (pstate = 0; pstate < nentries; pstate++) {
1032 acpigen_write_PSS_package(
1033 pstate_values->core_freq, pstate_values->power,
1034 pstate_values->transition_latency, pstate_values->bus_master_latency,
1035 pstate_values->control_value, pstate_values->status_value);
1036 pstate_values++;
1037 }
1038
1039 acpigen_pop_len();
1040}
1041
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001042void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +00001043{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001044 acpigen_write_name("_PSD");
1045 acpigen_write_package(1);
1046 acpigen_write_package(5);
1047 acpigen_write_byte(5); // 5 values
1048 acpigen_write_byte(0); // revision 0
1049 acpigen_write_dword(domain);
1050 acpigen_write_dword(coordtype);
1051 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001052 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001053 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +00001054}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001055
Angel Ponsd2794ce2021-10-17 12:59:43 +02001056void acpigen_write_CST_package_entry(const acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001057{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001058 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001059 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -07001060 acpigen_write_byte(cstate->ctype);
1061 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001062 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001063 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001064}
1065
Angel Ponsd2794ce2021-10-17 12:59:43 +02001066void acpigen_write_CST_package(const acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001067{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001068 int i;
1069 acpigen_write_name("_CST");
1070 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -07001071 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001072
1073 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001074 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001075
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001076 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001077}
1078
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001079void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
1080 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -05001081{
1082 acpigen_write_name("_CSD");
1083 acpigen_write_package(1);
1084 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -07001085 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -05001086 acpigen_write_byte(0); // revision 0
1087 acpigen_write_dword(domain);
1088 acpigen_write_dword(coordtype);
1089 acpigen_write_dword(numprocs);
1090 acpigen_write_dword(index);
1091 acpigen_pop_len();
1092 acpigen_pop_len();
1093}
1094
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001095void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001096{
1097/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +02001098 Sample _TSS package with 100% and 50% duty cycles
1099 Name (_TSS, Package (0x02)
1100 {
1101 Package(){100, 1000, 0, 0x00, 0)
1102 Package(){50, 520, 0, 0x18, 0)
1103 })
1104*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001105 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001106 acpi_tstate_t *tstate = tstate_list;
1107
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001108 acpigen_write_name("_TSS");
1109 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +02001110
1111 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001112 acpigen_write_package(5);
1113 acpigen_write_dword(tstate->percent);
1114 acpigen_write_dword(tstate->power);
1115 acpigen_write_dword(tstate->latency);
1116 acpigen_write_dword(tstate->control);
1117 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001118 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001119 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001120 }
1121
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001122 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001123}
1124
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001125void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001126{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001127 acpigen_write_name("_TSD");
1128 acpigen_write_package(1);
1129 acpigen_write_package(5);
1130 acpigen_write_byte(5); // 5 values
1131 acpigen_write_byte(0); // revision 0
1132 acpigen_write_dword(domain);
1133 acpigen_write_dword(coordtype);
1134 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001135 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001136 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001137}
1138
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001139void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001140{
1141 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001142 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001143 * Byte 0:
1144 * Bit7 : 1 => big item
1145 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
1146 */
1147 acpigen_emit_byte(0x86);
1148 /* Byte 1+2: length (0x0009) */
1149 acpigen_emit_byte(0x09);
1150 acpigen_emit_byte(0x00);
1151 /* bit1-7 are ignored */
1152 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -07001153 acpigen_emit_dword(base);
1154 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001155}
1156
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001157static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001158{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +02001159 acpigen_emit_byte(0x82); /* Register Descriptor */
1160 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
1161 acpigen_emit_byte(0x00); /* Register Length 15:8 */
1162 acpigen_emit_byte(addr->space_id); /* Address Space ID */
1163 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
1164 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +01001165 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -07001166 acpigen_emit_dword(addr->addrl); /* Register Address Low */
1167 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +02001168}
1169
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001170void acpigen_write_register_resource(const acpi_addr_t *addr)
1171{
1172 acpigen_write_resourcetemplate_header();
1173 acpigen_write_register(addr);
1174 acpigen_write_resourcetemplate_footer();
1175}
1176
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001177void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001178{
1179 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001180 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001181 * Byte 0:
1182 * Bit7 : 0 => small item
1183 * Bit6-3: 0100 (0x4) => IRQ port descriptor
1184 * Bit2-0: 010 (0x2) => 2 Bytes long
1185 */
1186 acpigen_emit_byte(0x22);
1187 acpigen_emit_byte(mask & 0xff);
1188 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001189}
1190
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001191void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001192{
1193 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001194 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001195 * Byte 0:
1196 * Bit7 : 0 => small item
1197 * Bit6-3: 1000 (0x8) => I/O port descriptor
1198 * Bit2-0: 111 (0x7) => 7 Bytes long
1199 */
1200 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001201 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001202 /* bit1-7 are ignored */
1203 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1204 /* minimum base address the device may be configured for */
1205 acpigen_emit_byte(min & 0xff);
1206 acpigen_emit_byte((min >> 8) & 0xff);
1207 /* maximum base address the device may be configured for */
1208 acpigen_emit_byte(max & 0xff);
1209 acpigen_emit_byte((max >> 8) & 0xff);
1210 /* alignment for min base */
1211 acpigen_emit_byte(align & 0xff);
1212 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001213}
1214
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001215void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001216{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001217 /*
1218 * A ResourceTemplate() is a Buffer() with a
1219 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001220 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001221 * (small item 0xf, len 1)
1222 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001223 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001224 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001225 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001226 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001227 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001228 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001229 acpigen_emit_byte(0x00);
1230 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001231}
1232
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001233void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001234{
1235 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001236 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001237 /*
1238 * end tag (acpi 4.0 Section 6.4.2.8)
1239 * 0x79 <checksum>
1240 * 0x00 is treated as a good checksum according to the spec
1241 * and is what iasl generates.
1242 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001243 acpigen_emit_byte(0x79);
1244 acpigen_emit_byte(0x00);
1245
Nico Huber7d89ce32017-04-14 00:08:18 +02001246 /* Start counting past the 2-bytes length added in
1247 acpigen_write_resourcetemplate() above. */
1248 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001249
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001250 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001251 p[0] = len & 0xff;
1252 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001253 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001254 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001255}
1256
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001257static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001258{
1259 acpigen_write_mem32fixed(0, res->base, res->size);
1260}
1261
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001262static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001263{
1264 resource_t base = res->base;
1265 resource_t size = res->size;
1266 while (size > 0) {
1267 resource_t sz = size > 255 ? 255 : size;
1268 acpigen_write_io16(base, base, 0, sz, 1);
1269 size -= sz;
1270 base += sz;
1271 }
1272}
1273
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001274void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001275{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001276 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001277
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001278 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001279 search_global_resources(
1280 IORESOURCE_MEM | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001281 IORESOURCE_MEM | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001282 acpigen_add_mainboard_rsvd_mem32, 0);
1283
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001284 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001285 search_global_resources(
1286 IORESOURCE_IO | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001287 IORESOURCE_IO | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001288 acpigen_add_mainboard_rsvd_io, 0);
1289
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001290 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001291}
1292
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001293void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001294{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001295 acpigen_write_scope(scope);
1296 acpigen_write_name(name);
1297 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001298 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001299}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001300
1301static int hex2bin(const char c)
1302{
1303 if (c >= 'A' && c <= 'F')
1304 return c - 'A' + 10;
1305 if (c >= 'a' && c <= 'f')
1306 return c - 'a' + 10;
1307 return c - '0';
1308}
1309
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001310void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001311{
1312 u32 compact = 0;
1313
1314 /* Clamping individual values would be better but
1315 there is a disagreement over what is a valid
1316 EISA id, so accept anything and don't clamp,
1317 parent code should create a valid EISAid.
1318 */
1319 compact |= (eisaid[0] - 'A' + 1) << 26;
1320 compact |= (eisaid[1] - 'A' + 1) << 21;
1321 compact |= (eisaid[2] - 'A' + 1) << 16;
1322 compact |= hex2bin(eisaid[3]) << 12;
1323 compact |= hex2bin(eisaid[4]) << 8;
1324 compact |= hex2bin(eisaid[5]) << 4;
1325 compact |= hex2bin(eisaid[6]);
1326
1327 acpigen_emit_byte(0xc);
1328 acpigen_emit_byte((compact >> 24) & 0xff);
1329 acpigen_emit_byte((compact >> 16) & 0xff);
1330 acpigen_emit_byte((compact >> 8) & 0xff);
1331 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001332}
Duncan Laurie3829f232016-05-09 11:08:46 -07001333
1334/*
1335 * ToUUID(uuid)
1336 *
1337 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1338 * order for the bytes that make up a UUID Buffer object.
1339 * UUID byte order for input:
1340 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1341 * UUID byte order for output:
1342 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1343 */
1344#define UUID_LEN 16
1345void acpigen_write_uuid(const char *uuid)
1346{
1347 uint8_t buf[UUID_LEN];
1348 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1349 8, 9, 10, 11, 12, 13, 14, 15 };
1350
1351 /* Parse UUID string into bytes */
1352 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1353 return;
1354
1355 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001356 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001357 acpigen_write_len_f();
1358
1359 /* Buffer length in bytes */
1360 acpigen_write_word(UUID_LEN);
1361
1362 /* Output UUID in expected order */
1363 for (i = 0; i < UUID_LEN; i++)
1364 acpigen_emit_byte(buf[order[i]]);
1365
1366 acpigen_pop_len();
1367}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001368
1369/*
1370 * Name (_PRx, Package(One) { name })
1371 * ...
1372 * PowerResource (name, level, order)
1373 */
1374void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001375 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001376{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001377 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001378 for (i = 0; i < dev_states_count; i++) {
1379 acpigen_write_name(dev_states[i]);
1380 acpigen_write_package(1);
1381 acpigen_emit_simple_namestring(name);
1382 acpigen_pop_len(); /* Package */
1383 }
1384
1385 acpigen_emit_ext_op(POWER_RES_OP);
1386
1387 acpigen_write_len_f();
1388
1389 acpigen_emit_simple_namestring(name);
1390 acpigen_emit_byte(level);
1391 acpigen_emit_word(order);
1392}
1393
1394/* Sleep (ms) */
1395void acpigen_write_sleep(uint64_t sleep_ms)
1396{
1397 acpigen_emit_ext_op(SLEEP_OP);
1398 acpigen_write_integer(sleep_ms);
1399}
1400
1401void acpigen_write_store(void)
1402{
1403 acpigen_emit_byte(STORE_OP);
1404}
1405
1406/* Store (src, dst) */
1407void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1408{
1409 acpigen_write_store();
1410 acpigen_emit_byte(src);
1411 acpigen_emit_byte(dst);
1412}
1413
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001414/* Store (src, "namestr") */
1415void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1416{
1417 acpigen_write_store();
1418 acpigen_emit_byte(src);
1419 acpigen_emit_namestring(dst);
1420}
1421
Duncan Laurie8e391d32020-09-30 23:17:41 +00001422/* Store (src, "namestr") */
1423void acpigen_write_store_int_to_namestr(uint64_t src, const char *dst)
1424{
1425 acpigen_write_store();
1426 acpigen_write_integer(src);
1427 acpigen_emit_namestring(dst);
1428}
1429
Cliff Huang24f3dc82023-02-04 21:11:51 -08001430/* Store ("namestr", dst) */
1431void acpigen_write_store_namestr_to_op(const char *src, uint8_t dst)
1432{
1433 acpigen_write_store();
1434 acpigen_emit_namestring(src);
1435 acpigen_emit_byte(dst);
1436}
1437
Duncan Laurie8e391d32020-09-30 23:17:41 +00001438/* Store (src, dst) */
1439void acpigen_write_store_int_to_op(uint64_t src, uint8_t dst)
1440{
1441 acpigen_write_store();
1442 acpigen_write_integer(src);
1443 acpigen_emit_byte(dst);
1444}
1445
Felix Held178cf352023-02-09 16:29:46 +01001446/* Store ("namestr", "namestr") */
1447void acpigen_write_store_namestr_to_namestr(const char *src, const char *dst)
1448{
1449 acpigen_write_store();
1450 acpigen_emit_namestring(src);
1451 acpigen_emit_namestring(dst);
1452}
1453
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001454/* Or (arg1, arg2, res) */
1455void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1456{
1457 acpigen_emit_byte(OR_OP);
1458 acpigen_emit_byte(arg1);
1459 acpigen_emit_byte(arg2);
1460 acpigen_emit_byte(res);
1461}
1462
Rajat Jain310623b2020-02-26 11:02:53 -08001463/* Xor (arg1, arg2, res) */
1464void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1465{
1466 acpigen_emit_byte(XOR_OP);
1467 acpigen_emit_byte(arg1);
1468 acpigen_emit_byte(arg2);
1469 acpigen_emit_byte(res);
1470}
1471
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001472/* And (arg1, arg2, res) */
1473void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1474{
1475 acpigen_emit_byte(AND_OP);
1476 acpigen_emit_byte(arg1);
1477 acpigen_emit_byte(arg2);
1478 acpigen_emit_byte(res);
1479}
1480
1481/* Not (arg, res) */
1482void acpigen_write_not(uint8_t arg, uint8_t res)
1483{
1484 acpigen_emit_byte(NOT_OP);
1485 acpigen_emit_byte(arg);
1486 acpigen_emit_byte(res);
1487}
1488
Cliff Huange6083082023-01-19 21:18:23 -08001489/* Concatenate (str, src_res, dest_res) */
1490void acpigen_concatenate_string_op(const char *str, uint8_t src_res, uint8_t dest_res)
1491{
1492 acpigen_emit_byte(CONCATENATE_OP);
1493 acpigen_write_string(str);
1494 acpigen_emit_byte(src_res);
1495 acpigen_emit_byte(dest_res);
1496}
1497
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001498/* Store (str, DEBUG) */
1499void acpigen_write_debug_string(const char *str)
1500{
1501 acpigen_write_store();
1502 acpigen_write_string(str);
1503 acpigen_emit_ext_op(DEBUG_OP);
1504}
1505
1506/* Store (val, DEBUG) */
1507void acpigen_write_debug_integer(uint64_t val)
1508{
1509 acpigen_write_store();
1510 acpigen_write_integer(val);
1511 acpigen_emit_ext_op(DEBUG_OP);
1512}
1513
1514/* Store (op, DEBUG) */
1515void acpigen_write_debug_op(uint8_t op)
1516{
1517 acpigen_write_store();
1518 acpigen_emit_byte(op);
1519 acpigen_emit_ext_op(DEBUG_OP);
1520}
1521
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001522/* Store (str, DEBUG) */
1523void acpigen_write_debug_namestr(const char *str)
1524{
1525 acpigen_write_store();
1526 acpigen_emit_namestring(str);
1527 acpigen_emit_ext_op(DEBUG_OP);
1528}
1529
Cliff Huange6083082023-01-19 21:18:23 -08001530/* Concatenate (str1, res, tmp_res)
1531 Store(tmp_res, DEBUG) */
1532void acpigen_write_debug_concatenate_string_op(const char *str, uint8_t res,
1533 uint8_t tmp_res)
1534{
1535 acpigen_concatenate_string_op(str, res, tmp_res);
1536 acpigen_write_debug_op(tmp_res);
1537}
1538
Cliff Huang063a1b82023-02-18 00:17:26 -08001539static void acpigen_tx_byte(unsigned char byte, void *data)
1540{
1541 acpigen_emit_byte(byte);
1542}
1543
1544/* Store("formatted string", DEBUG) */
1545void acpigen_write_debug_sprintf(const char *fmt, ...)
1546{
1547 va_list args;
1548
1549 acpigen_write_store();
1550
1551 acpigen_emit_byte(STRING_PREFIX);
1552 va_start(args, fmt);
1553 vtxprintf(acpigen_tx_byte, fmt, args, NULL);
1554 va_end(args);
1555 acpigen_emit_byte('\0');
1556
1557 acpigen_emit_ext_op(DEBUG_OP);
1558}
1559
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001560void acpigen_write_if(void)
1561{
1562 acpigen_emit_byte(IF_OP);
1563 acpigen_write_len_f();
1564}
1565
1566/* If (And (arg1, arg2)) */
1567void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1568{
1569 acpigen_write_if();
1570 acpigen_emit_byte(AND_OP);
1571 acpigen_emit_byte(arg1);
1572 acpigen_emit_byte(arg2);
1573}
1574
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001575/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001576 * Generates ACPI code for checking if operand1 and operand2 are equal.
1577 * Both operand1 and operand2 are ACPI ops.
1578 *
1579 * If (Lequal (op,1 op2))
1580 */
1581void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1582{
1583 acpigen_write_if();
1584 acpigen_emit_byte(LEQUAL_OP);
1585 acpigen_emit_byte(op1);
1586 acpigen_emit_byte(op2);
1587}
1588
1589/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001590 * Generates ACPI code for checking if operand1 is greater than operand2.
1591 * Both operand1 and operand2 are ACPI ops.
1592 *
1593 * If (Lgreater (op1 op2))
1594 */
1595void acpigen_write_if_lgreater_op_op(uint8_t op1, uint8_t op2)
1596{
1597 acpigen_write_if();
1598 acpigen_emit_byte(LGREATER_OP);
1599 acpigen_emit_byte(op1);
1600 acpigen_emit_byte(op2);
1601}
1602
1603/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001604 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1605 * operand1 is ACPI op and operand2 is an integer.
1606 *
1607 * If (Lequal (op, val))
1608 */
1609void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001610{
1611 acpigen_write_if();
1612 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001613 acpigen_emit_byte(op);
1614 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001615}
1616
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001617/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001618 * Generates ACPI code for checking if operand is greater than the value, where,
1619 * operand is ACPI op and val is an integer.
1620 *
1621 * If (Lgreater (op, val))
1622 */
1623void acpigen_write_if_lgreater_op_int(uint8_t op, uint64_t val)
1624{
1625 acpigen_write_if();
1626 acpigen_emit_byte(LGREATER_OP);
1627 acpigen_emit_byte(op);
1628 acpigen_write_integer(val);
1629}
1630
1631/*
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001632 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1633 * operand1 is namestring and operand2 is an integer.
1634 *
1635 * If (Lequal ("namestr", val))
1636 */
1637void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1638{
1639 acpigen_write_if();
1640 acpigen_emit_byte(LEQUAL_OP);
1641 acpigen_emit_namestring(namestr);
1642 acpigen_write_integer(val);
1643}
1644
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001645/*
Cliff Huang24f3dc82023-02-04 21:11:51 -08001646 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1647 * operand1 is namestring and operand2 is an integer.
1648 *
1649 * If (Lgreater ("namestr", val))
1650 */
1651void acpigen_write_if_lgreater_namestr_int(const char *namestr, uint64_t val)
1652{
1653 acpigen_write_if();
1654 acpigen_emit_byte(LGREATER_OP);
1655 acpigen_emit_namestring(namestr);
1656 acpigen_write_integer(val);
1657}
1658
1659/*
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001660 * Generates ACPI code to check at runtime if an object named `namestring`
1661 * exists, and leaves the If scope open to continue execute code when this
1662 * is true. NOTE: Requires matching acpigen_write_if_end().
1663 *
1664 * If (CondRefOf (NAME))
1665 */
1666void acpigen_write_if_cond_ref_of(const char *namestring)
1667{
1668 acpigen_write_if();
1669 acpigen_emit_ext_op(COND_REFOF_OP);
1670 acpigen_emit_namestring(namestring);
1671 acpigen_emit_byte(ZERO_OP); /* ignore COND_REFOF_OP destination */
1672}
1673
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001674/* Closes previously opened if statement and generates ACPI code for else statement. */
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001675void acpigen_write_else(void)
1676{
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001677 acpigen_pop_len();
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001678 acpigen_emit_byte(ELSE_OP);
1679 acpigen_write_len_f();
1680}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001681
Duncan Laurie36858202020-10-06 21:01:51 +00001682void acpigen_write_shiftleft_op_int(uint8_t src_result, uint64_t count)
1683{
1684 acpigen_emit_byte(SHIFT_LEFT_OP);
1685 acpigen_emit_byte(src_result);
1686 acpigen_write_integer(count);
1687 acpigen_emit_byte(ZERO_OP);
1688}
1689
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001690void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1691{
1692 acpigen_emit_byte(TO_BUFFER_OP);
1693 acpigen_emit_byte(src);
1694 acpigen_emit_byte(dst);
1695}
1696
1697void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1698{
1699 acpigen_emit_byte(TO_INTEGER_OP);
1700 acpigen_emit_byte(src);
1701 acpigen_emit_byte(dst);
1702}
1703
Aaron Durbin80bc0912020-08-19 23:17:42 -06001704void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1705{
1706 acpigen_emit_byte(TO_INTEGER_OP);
1707 acpigen_emit_namestring(source);
1708 acpigen_emit_byte(dst_op);
1709}
1710
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301711void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001712{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301713 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001714
1715 acpigen_emit_byte(BUFFER_OP);
1716 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301717 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001718
1719 for (i = 0; i < size; i++)
1720 acpigen_emit_byte(arr[i]);
1721
1722 acpigen_pop_len();
1723}
1724
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301725void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001726{
1727 acpigen_emit_byte(RETURN_OP);
1728 acpigen_write_byte_buffer(arr, size);
1729}
1730
1731void acpigen_write_return_singleton_buffer(uint8_t arg)
1732{
1733 acpigen_write_return_byte_buffer(&arg, 1);
1734}
1735
Duncan Laurie2fe74712020-06-01 17:36:56 -07001736void acpigen_write_return_op(uint8_t arg)
1737{
1738 acpigen_emit_byte(RETURN_OP);
1739 acpigen_emit_byte(arg);
1740}
1741
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001742void acpigen_write_return_byte(uint8_t arg)
1743{
1744 acpigen_emit_byte(RETURN_OP);
1745 acpigen_write_byte(arg);
1746}
1747
Naresh G Solanki05abe432016-11-17 00:16:29 +05301748void acpigen_write_return_integer(uint64_t arg)
1749{
1750 acpigen_emit_byte(RETURN_OP);
1751 acpigen_write_integer(arg);
1752}
1753
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001754void acpigen_write_return_namestr(const char *arg)
1755{
1756 acpigen_emit_byte(RETURN_OP);
1757 acpigen_emit_namestring(arg);
1758}
1759
Naresh G Solanki05abe432016-11-17 00:16:29 +05301760void acpigen_write_return_string(const char *arg)
1761{
1762 acpigen_emit_byte(RETURN_OP);
1763 acpigen_write_string(arg);
1764}
1765
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001766void acpigen_write_upc(enum acpi_upc_type type)
1767{
1768 acpigen_write_name("_UPC");
1769 acpigen_write_package(4);
1770 /* Connectable */
1771 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1772 /* Type */
1773 acpigen_write_byte(type);
1774 /* Reserved0 */
1775 acpigen_write_zero();
1776 /* Reserved1 */
1777 acpigen_write_zero();
1778 acpigen_pop_len();
1779}
1780
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001781void acpigen_write_pld(const struct acpi_pld *pld)
1782{
1783 uint8_t buf[20];
1784
1785 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1786 return;
1787
1788 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001789 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001790 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001791 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001792}
1793
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001794void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *), size_t count, void *arg)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301795{
1796 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1797 acpigen_write_dsm_uuid_arr(&id, 1);
1798}
1799
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001800/*
1801 * Create a supported functions bitmask
1802 * bit 0: other functions than 0 are supported
1803 * bits 1-x: function x supported
1804 */
Arthur Heymans9c1f78d2023-06-22 21:04:06 +02001805/* On GCC aarch64 the compiler is worried about alloca() having unbounded stack usage. */
1806#if defined(__GNUC__) && !defined(__clang__)
1807#pragma GCC diagnostic ignored "-Wstack-usage="
1808#endif
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001809static void acpigen_dsm_uuid_enum_functions(const struct dsm_uuid *id)
1810{
1811 const size_t bytes = DIV_ROUND_UP(id->count, BITS_PER_BYTE);
1812 uint8_t *buffer = alloca(bytes);
1813 bool set = false;
1814 size_t cb_idx = 0;
1815
1816 memset(buffer, 0, bytes);
1817
1818 for (size_t i = 0; i < bytes; i++) {
1819 for (size_t j = 0; j < BITS_PER_BYTE; j++) {
1820 if (cb_idx >= id->count)
1821 break;
1822
1823 if (id->callbacks[cb_idx++]) {
1824 set = true;
1825 buffer[i] |= BIT(j);
1826 }
1827 }
1828 }
1829
1830 if (set)
1831 buffer[0] |= BIT(0);
1832
1833 acpigen_write_return_byte_buffer(buffer, bytes);
1834}
1835
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301836static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1837{
1838 size_t i;
1839
1840 /* If (LEqual (Local0, ToUUID(uuid))) */
1841 acpigen_write_if();
1842 acpigen_emit_byte(LEQUAL_OP);
1843 acpigen_emit_byte(LOCAL0_OP);
1844 acpigen_write_uuid(id->uuid);
1845
1846 /* ToInteger (Arg2, Local1) */
1847 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1848
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001849 /* If (LEqual(Local1, 0)) */
1850 {
1851 acpigen_write_if_lequal_op_int(LOCAL1_OP, 0);
1852 if (id->callbacks[0])
1853 id->callbacks[0](id->arg);
1854 else if (id->count)
1855 acpigen_dsm_uuid_enum_functions(id);
1856 acpigen_write_if_end();
1857 }
1858
1859 for (i = 1; i < id->count; i++) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301860 /* If (LEqual (Local1, i)) */
1861 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1862
1863 /* Callback to write if handler. */
1864 if (id->callbacks[i])
1865 id->callbacks[i](id->arg);
1866
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001867 acpigen_write_if_end(); /* If */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301868 }
1869
1870 /* Default case: Return (Buffer (One) { 0x0 }) */
1871 acpigen_write_return_singleton_buffer(0x0);
1872
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001873 acpigen_write_if_end(); /* If (LEqual (Local0, ToUUID(uuid))) */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301874
1875}
1876
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001877/*
1878 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301879 * This function takes as input array of uuid for the device, set of callbacks
1880 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1881 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1882 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001883 *
1884 * Arguments passed into _DSM method:
1885 * Arg0 = UUID
1886 * Arg1 = Revision
1887 * Arg2 = Function index
1888 * Arg3 = Function specific arguments
1889 *
1890 * AML code generated would look like:
1891 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301892 * ToBuffer (Arg0, Local0)
1893 * If (LEqual (Local0, ToUUID(uuid))) {
1894 * ToInteger (Arg2, Local1)
1895 * If (LEqual (Local1, 0)) {
1896 * <acpigen by callback[0]>
1897 * }
1898 * ...
1899 * If (LEqual (Local1, n)) {
1900 * <acpigen by callback[n]>
1901 * }
1902 * Return (Buffer (One) { 0x0 })
1903 * }
1904 * ...
1905 * If (LEqual (Local0, ToUUID(uuidn))) {
1906 * ...
1907 * }
1908 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001909 * }
1910 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301911void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001912{
1913 size_t i;
1914
1915 /* Method (_DSM, 4, Serialized) */
1916 acpigen_write_method_serialized("_DSM", 0x4);
1917
1918 /* ToBuffer (Arg0, Local0) */
1919 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1920
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001921 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301922 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001923
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301924 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001925 acpigen_write_return_singleton_buffer(0x0);
1926
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001927 acpigen_pop_len(); /* Method _DSM */
1928}
1929
Matt Delcob425bc82018-08-13 13:36:27 -07001930void acpigen_write_CPPC_package(const struct cppc_config *config)
1931{
1932 u32 i;
1933 u32 max;
1934 switch (config->version) {
1935 case 1:
1936 max = CPPC_MAX_FIELDS_VER_1;
1937 break;
1938 case 2:
1939 max = CPPC_MAX_FIELDS_VER_2;
1940 break;
1941 case 3:
1942 max = CPPC_MAX_FIELDS_VER_3;
1943 break;
1944 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001945 printk(BIOS_ERR, "CPPC version %u is not implemented\n", config->version);
Matt Delcob425bc82018-08-13 13:36:27 -07001946 return;
1947 }
1948 acpigen_write_name(CPPC_PACKAGE_NAME);
1949
1950 /* Adding 2 to account for length and version fields */
1951 acpigen_write_package(max + 2);
1952 acpigen_write_dword(max + 2);
1953
1954 acpigen_write_byte(config->version);
1955
1956 for (i = 0; i < max; ++i) {
Michael Niewöhner38107fa2021-10-05 22:22:21 +02001957 const cppc_entry_t *entry = &config->entries[i];
1958 if (entry->type == CPPC_TYPE_DWORD)
1959 acpigen_write_dword(entry->dword);
1960 else
1961 acpigen_write_register_resource(&entry->reg);
Matt Delcob425bc82018-08-13 13:36:27 -07001962 }
1963 acpigen_pop_len();
1964}
1965
1966void acpigen_write_CPPC_method(void)
1967{
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001968 char pscope[16];
Felix Heldf0a8b042023-05-12 15:55:06 +02001969 snprintf(pscope, sizeof(pscope),
1970 "\\_SB." CONFIG_ACPI_CPU_STRING "." CPPC_PACKAGE_NAME, 0);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001971
Matt Delcob425bc82018-08-13 13:36:27 -07001972 acpigen_write_method("_CPC", 0);
1973 acpigen_emit_byte(RETURN_OP);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001974 acpigen_emit_namestring(pscope);
Matt Delcob425bc82018-08-13 13:36:27 -07001975 acpigen_pop_len();
1976}
1977
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001978/*
1979 * Generate ACPI AML code for _ROM method.
1980 * This function takes as input ROM data and ROM length.
1981 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001982 * The ACPI spec isn't clear about what should happen at the end of the
1983 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1984 * bytes in the returned buffer with zeros.
1985 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001986 * Arguments passed into _DSM method:
1987 * Arg0 = Offset in Bytes
1988 * Arg1 = Bytes to return
1989 *
1990 * Example:
1991 * acpigen_write_rom(0xdeadbeef, 0x10000)
1992 *
1993 * AML code generated would look like:
1994 * Method (_ROM, 2, NotSerialized) {
1995 *
1996 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1997 * Field (ROMS, AnyAcc, NoLock, Preserve)
1998 * {
1999 * Offset (0),
2000 * RBF0, 0x80000
2001 * }
2002 *
2003 * Store (Arg0, Local0)
2004 * Store (Arg1, Local1)
2005 *
2006 * If (LGreater (Local1, 0x1000))
2007 * {
2008 * Store (0x1000, Local1)
2009 * }
2010 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002011 * Store (Local1, Local3)
2012 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002013 * If (LGreater (Local0, 0x10000))
2014 * {
2015 * Return(Buffer(Local1){0})
2016 * }
2017 *
2018 * If (LGreater (Local0, 0x0f000))
2019 * {
2020 * Subtract (0x10000, Local0, Local2)
2021 * If (LGreater (Local1, Local2))
2022 * {
2023 * Store (Local2, Local1)
2024 * }
2025 * }
2026 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002027 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002028 *
2029 * Multiply (Local0, 0x08, Local0)
2030 * Multiply (Local1, 0x08, Local1)
2031 *
2032 * CreateField (RBF0, Local0, Local1, TMPB)
2033 * Store (TMPB, ROM1)
2034 * Return (ROM1)
2035 * }
2036 */
2037
2038void acpigen_write_rom(void *bios, const size_t length)
2039{
2040 ASSERT(bios)
2041 ASSERT(length)
2042
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02002043 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06002044 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002045
2046 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002047 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY, (uintptr_t)bios, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002048 acpigen_write_opregion(&opreg);
2049
2050 struct fieldlist l[] = {
2051 FIELDLIST_OFFSET(0),
2052 FIELDLIST_NAMESTR("RBF0", 8 * length),
2053 };
2054
2055 /* Field (ROMS, AnyAcc, NoLock, Preserve)
2056 * {
2057 * Offset (0),
2058 * RBF0, 0x80000
2059 * } */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002060 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002061
2062 /* Store (Arg0, Local0) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002063 acpigen_write_store_ops(ARG0_OP, LOCAL0_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002064
2065 /* Store (Arg1, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002066 acpigen_write_store_ops(ARG1_OP, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002067
2068 /* ACPI SPEC requires to return at maximum 4KiB */
2069 /* If (LGreater (Local1, 0x1000)) */
Felix Held383a06e2023-02-09 16:25:38 +01002070 acpigen_write_if_lgreater_op_int(LOCAL1_OP, 0x1000);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002071
2072 /* Store (0x1000, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002073 acpigen_write_store_int_to_op(0x1000, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002074
2075 /* Pop if */
2076 acpigen_pop_len();
2077
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002078 /* Store (Local1, Local3) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002079 acpigen_write_store_ops(LOCAL1_OP, LOCAL3_OP);
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002080
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002081 /* If (LGreater (Local0, length)) */
Felix Held383a06e2023-02-09 16:25:38 +01002082 acpigen_write_if_lgreater_op_int(LOCAL0_OP, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002083
2084 /* Return(Buffer(Local1){0}) */
2085 acpigen_emit_byte(RETURN_OP);
2086 acpigen_emit_byte(BUFFER_OP);
2087 acpigen_write_len_f();
2088 acpigen_emit_byte(LOCAL1_OP);
2089 acpigen_emit_byte(0);
2090 acpigen_pop_len();
2091
2092 /* Pop if */
2093 acpigen_pop_len();
2094
2095 /* If (LGreater (Local0, length - 4096)) */
Felix Held383a06e2023-02-09 16:25:38 +01002096 acpigen_write_if_lgreater_op_int(LOCAL0_OP, length - 4096);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002097
2098 /* Subtract (length, Local0, Local2) */
2099 acpigen_emit_byte(SUBTRACT_OP);
2100 acpigen_write_integer(length);
2101 acpigen_emit_byte(LOCAL0_OP);
2102 acpigen_emit_byte(LOCAL2_OP);
2103
2104 /* If (LGreater (Local1, Local2)) */
Felix Held383a06e2023-02-09 16:25:38 +01002105 acpigen_write_if_lgreater_op_op(LOCAL1_OP, LOCAL2_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002106
2107 /* Store (Local2, Local1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002108 acpigen_write_store_ops(LOCAL2_OP, LOCAL1_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002109
2110 /* Pop if */
2111 acpigen_pop_len();
2112
2113 /* Pop if */
2114 acpigen_pop_len();
2115
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002116 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002117 acpigen_write_name("ROM1");
2118 acpigen_emit_byte(BUFFER_OP);
2119 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002120 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002121 acpigen_emit_byte(0);
2122 acpigen_pop_len();
2123
2124 /* Multiply (Local1, 0x08, Local1) */
2125 acpigen_emit_byte(MULTIPLY_OP);
2126 acpigen_emit_byte(LOCAL1_OP);
2127 acpigen_write_integer(0x08);
2128 acpigen_emit_byte(LOCAL1_OP);
2129
2130 /* Multiply (Local0, 0x08, Local0) */
2131 acpigen_emit_byte(MULTIPLY_OP);
2132 acpigen_emit_byte(LOCAL0_OP);
2133 acpigen_write_integer(0x08);
2134 acpigen_emit_byte(LOCAL0_OP);
2135
2136 /* CreateField (RBF0, Local0, Local1, TMPB) */
2137 acpigen_emit_ext_op(CREATEFIELD_OP);
2138 acpigen_emit_namestring("RBF0");
2139 acpigen_emit_byte(LOCAL0_OP);
2140 acpigen_emit_byte(LOCAL1_OP);
2141 acpigen_emit_namestring("TMPB");
2142
2143 /* Store (TMPB, ROM1) */
Felix Heldf28f27b2023-02-09 16:26:26 +01002144 acpigen_write_store_namestr_to_namestr("TMPB", "ROM1");
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002145
2146 /* Return (ROM1) */
2147 acpigen_emit_byte(RETURN_OP);
2148 acpigen_emit_namestring("ROM1");
2149
2150 /* Pop method */
2151 acpigen_pop_len();
2152}
2153
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002154/*
2155 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
2156 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
2157 * make callbacks into SoC acpigen code.
2158 *
2159 * Returns 0 on success and -1 on error.
2160 */
Duncan Laurie30c3f912020-10-09 04:48:53 +00002161int acpigen_enable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002162{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002163 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002164 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002165 else
2166 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002167}
2168
Duncan Laurie30c3f912020-10-09 04:48:53 +00002169int acpigen_disable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002170{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002171 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002172 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
2173 else
2174 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
2175}
Jonathan Zhang71299c22020-01-27 11:38:57 -08002176
Duncan Laurie30c3f912020-10-09 04:48:53 +00002177void acpigen_get_rx_gpio(const struct acpi_gpio *gpio)
Rajat Jain310623b2020-02-26 11:02:53 -08002178{
2179 acpigen_soc_read_rx_gpio(gpio->pins[0]);
2180
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002181 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08002182 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2183}
2184
Duncan Laurie30c3f912020-10-09 04:48:53 +00002185void acpigen_get_tx_gpio(const struct acpi_gpio *gpio)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002186{
2187 acpigen_soc_get_tx_gpio(gpio->pins[0]);
2188
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002189 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002190 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2191}
2192
Jonathan Zhang71299c22020-01-27 11:38:57 -08002193/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002194void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran, u16 range_min,
2195 u16 range_max, u16 translation, u16 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002196{
Felix Heldb2f2b532023-05-11 22:22:06 +02002197 /* Byte 0: Type 1, Large Item Value 0x8: Word Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002198 acpigen_emit_byte(0x88);
2199 /* Byte 1+2: length (0x000d) */
2200 acpigen_emit_byte(0x0d);
2201 acpigen_emit_byte(0x00);
2202 /* resource type */
2203 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2204 /* general flags */
2205 acpigen_emit_byte(gen_flags);
2206 /* type flags */
2207 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2208 acpigen_emit_byte(type_flags);
2209 /* granularity, min, max, translation, length */
2210 acpigen_emit_word(gran);
2211 acpigen_emit_word(range_min);
2212 acpigen_emit_word(range_max);
2213 acpigen_emit_word(translation);
2214 acpigen_emit_word(length);
2215}
2216
2217/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002218void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags, u32 gran,
2219 u32 range_min, u32 range_max, u32 translation, u32 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002220{
Felix Heldb2f2b532023-05-11 22:22:06 +02002221 /* Byte 0: Type 1, Large Item Value 0x7: DWord Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002222 acpigen_emit_byte(0x87);
2223 /* Byte 1+2: length (0023) */
2224 acpigen_emit_byte(23);
2225 acpigen_emit_byte(0x00);
2226 /* resource type */
2227 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2228 /* general flags */
2229 acpigen_emit_byte(gen_flags);
2230 /* type flags */
2231 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2232 acpigen_emit_byte(type_flags);
2233 /* granularity, min, max, translation, length */
2234 acpigen_emit_dword(gran);
2235 acpigen_emit_dword(range_min);
2236 acpigen_emit_dword(range_max);
2237 acpigen_emit_dword(translation);
2238 acpigen_emit_dword(length);
2239}
2240
2241static void acpigen_emit_qword(u64 data)
2242{
2243 acpigen_emit_dword(data & 0xffffffff);
2244 acpigen_emit_dword((data >> 32) & 0xffffffff);
2245}
2246
2247/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002248void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags, u64 gran,
2249 u64 range_min, u64 range_max, u64 translation, u64 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002250{
Felix Heldb2f2b532023-05-11 22:22:06 +02002251 /* Byte 0: Type 1, Large Item Value 0xa: QWord Address Space Descriptor */
Jonathan Zhang71299c22020-01-27 11:38:57 -08002252 acpigen_emit_byte(0x8a);
2253 /* Byte 1+2: length (0x002b) */
2254 acpigen_emit_byte(0x2b);
2255 acpigen_emit_byte(0x00);
2256 /* resource type */
2257 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2258 /* general flags */
2259 acpigen_emit_byte(gen_flags);
2260 /* type flags */
2261 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2262 acpigen_emit_byte(type_flags);
2263 /* granularity, min, max, translation, length */
2264 acpigen_emit_qword(gran);
2265 acpigen_emit_qword(range_min);
2266 acpigen_emit_qword(range_max);
2267 acpigen_emit_qword(translation);
2268 acpigen_emit_qword(length);
2269}
Furquan Shaikh1a829232020-04-23 11:11:05 -07002270
Felix Held0fdede02023-05-27 01:02:37 +02002271void acpigen_resource_producer_bus_number(u16 bus_base, u16 bus_limit)
Felix Held5a82f0d2023-05-09 16:10:35 +02002272{
2273 acpigen_resource_word(RSRC_TYPE_BUS, /* res_type */
2274 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2275 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002276 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2277 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held5a82f0d2023-05-09 16:10:35 +02002278 BUS_NUM_RANGE_RESOURCE_FLAG, /* type_flags */
2279 0, /* gran */
2280 bus_base, /* range_min */
2281 bus_limit, /* range_max */
2282 0x0, /* translation */
2283 bus_limit - bus_base + 1); /* length */
2284}
2285
Felix Held0fdede02023-05-27 01:02:37 +02002286void acpigen_resource_producer_io(u16 io_base, u16 io_limit)
Felix Held6695be62023-05-09 16:18:51 +02002287{
Felix Helde3c9a042023-06-05 19:59:25 +02002288 acpigen_resource_dword(RSRC_TYPE_IO, /* res_type */
Felix Held6695be62023-05-09 16:18:51 +02002289 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2290 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002291 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2292 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held6695be62023-05-09 16:18:51 +02002293 IO_RSRC_FLAG_ENTIRE_RANGE, /* type_flags */
2294 0, /* gran */
2295 io_base, /* range_min */
2296 io_limit, /* range_max */
2297 0x0, /* translation */
2298 io_limit - io_base + 1); /* length */
2299}
2300
Felix Held0fdede02023-05-27 01:02:37 +02002301static void acpigen_resource_producer_mmio32(u32 mmio_base, u32 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002302{
2303 acpigen_resource_dword(RSRC_TYPE_MEM, /* res_type */
2304 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2305 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002306 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2307 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held21594fd12023-05-09 16:39:57 +02002308 type_flags, /* type_flags */
2309 0, /* gran */
2310 mmio_base, /* range_min */
2311 mmio_limit, /* range_max */
2312 0x0, /* translation */
2313 mmio_limit - mmio_base + 1); /* length */
2314}
2315
Felix Held0fdede02023-05-27 01:02:37 +02002316static void acpigen_resource_producer_mmio64(u64 mmio_base, u64 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002317{
2318 acpigen_resource_qword(RSRC_TYPE_MEM, /* res_type */
2319 ADDR_SPACE_GENERAL_FLAG_MAX_FIXED
2320 | ADDR_SPACE_GENERAL_FLAG_MIN_FIXED
Felix Held0fdede02023-05-27 01:02:37 +02002321 | ADDR_SPACE_GENERAL_FLAG_DEC_POS
2322 | ADDR_SPACE_GENERAL_FLAG_PRODUCER, /* gen_flags */
Felix Held21594fd12023-05-09 16:39:57 +02002323 type_flags, /* type_flags */
2324 0, /* gran */
2325 mmio_base, /* range_min */
2326 mmio_limit, /* range_max */
2327 0x0, /* translation */
2328 mmio_limit - mmio_base + 1); /* length */
2329}
2330
Felix Held0fdede02023-05-27 01:02:37 +02002331void acpigen_resource_producer_mmio(u64 mmio_base, u64 mmio_limit, u16 type_flags)
Felix Held21594fd12023-05-09 16:39:57 +02002332{
2333 if (mmio_base < 4ULL * GiB && mmio_limit < 4ULL * GiB)
Felix Held0fdede02023-05-27 01:02:37 +02002334 acpigen_resource_producer_mmio32(mmio_base, mmio_limit, type_flags);
Felix Held21594fd12023-05-09 16:39:57 +02002335 else
Felix Held0fdede02023-05-27 01:02:37 +02002336 acpigen_resource_producer_mmio64(mmio_base, mmio_limit, type_flags);
Felix Held21594fd12023-05-09 16:39:57 +02002337}
2338
Furquan Shaikh1a829232020-04-23 11:11:05 -07002339void acpigen_write_ADR(uint64_t adr)
2340{
2341 acpigen_write_name_qword("_ADR", adr);
2342}
2343
Duncan Laurie08a942f2020-04-29 12:13:14 -07002344/**
2345 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
2346 * @address: SoundWire device address properties.
2347 *
2348 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
2349 *
2350 * 63..52 - Reserved (0)
2351 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
2352 * Used when a Controller has multiple master devices, each producing a
2353 * separate SoundWire Link. Set to 0 for single-link controllers.
2354 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
2355 * 47..44 - SoundWire specification version that this device supports
2356 * 43..40 - Unique ID for multiple devices
2357 * 39..24 - MIPI standard manufacturer code
2358 * 23..08 - Vendor defined part ID
2359 * 07..00 - MIPI class encoding
2360 */
2361void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
2362{
2363 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
2364 (((uint64_t)address->version & 0xf) << 44) |
2365 (((uint64_t)address->unique_id & 0xf) << 40) |
2366 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
2367 (((uint64_t)address->part_id & 0xffff) << 8) |
2368 (((uint64_t)address->class & 0xff)));
2369}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06002370
2371void acpigen_notify(const char *namestr, int value)
2372{
2373 acpigen_emit_byte(NOTIFY_OP);
2374 acpigen_emit_namestring(namestr);
2375 acpigen_write_integer(value);
2376}
Aaron Durbin80bc0912020-08-19 23:17:42 -06002377
2378static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
2379{
2380 acpigen_emit_byte(aml_op);
2381 acpigen_emit_byte(srcop);
2382 acpigen_write_integer(byte_offset);
2383 acpigen_emit_namestring(name);
2384}
2385
2386void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2387{
2388 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2389}
2390
2391void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2392{
2393 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2394}
2395
2396void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2397{
2398 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2399}
2400
2401void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2402{
2403 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2404}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002405
2406void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2407{
2408 acpigen_write_name("_PCT");
2409 acpigen_write_package(0x02);
2410 acpigen_write_register_resource(perf_ctrl);
2411 acpigen_write_register_resource(perf_sts);
2412
2413 acpigen_pop_len();
2414}
2415
2416void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2417{
2418 acpigen_write_package(0x08);
2419 acpigen_write_dword(pstate_value->core_freq);
2420 acpigen_write_dword(pstate_value->power);
2421 acpigen_write_dword(pstate_value->transition_latency);
2422 acpigen_write_dword(pstate_value->bus_master_latency);
2423
2424 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2425 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2426 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2427 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2428
2429 acpigen_pop_len();
2430}
2431
2432void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2433{
2434 size_t pstate;
2435
2436 acpigen_write_name("XPSS");
2437 acpigen_write_package(nentries);
2438 for (pstate = 0; pstate < nentries; pstate++) {
2439 acpigen_write_xpss_package(pstate_values);
2440 pstate_values++;
2441 }
2442
2443 acpigen_pop_len();
2444}
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002445
2446/* Delay up to wait_ms until provided namestr matches expected value. */
2447void acpigen_write_delay_until_namestr_int(uint32_t wait_ms, const char *name, uint64_t value)
2448{
2449 uint32_t wait_ms_segment = 1;
2450 uint32_t segments = wait_ms;
2451
2452 /* Sleep in 16ms segments if delay is more than 32ms. */
2453 if (wait_ms > 32) {
2454 wait_ms_segment = 16;
2455 segments = wait_ms / 16;
2456 }
2457
2458 acpigen_write_store_int_to_op(segments, LOCAL7_OP);
2459 acpigen_emit_byte(WHILE_OP);
2460 acpigen_write_len_f();
2461 acpigen_emit_byte(LGREATER_OP);
2462 acpigen_emit_byte(LOCAL7_OP);
2463 acpigen_emit_byte(ZERO_OP);
2464
2465 /* If name is not provided then just delay in a loop. */
2466 if (name) {
2467 acpigen_write_if_lequal_namestr_int(name, value);
2468 acpigen_emit_byte(BREAK_OP);
2469 acpigen_pop_len(); /* If */
2470 }
2471
2472 acpigen_write_sleep(wait_ms_segment);
2473 acpigen_emit_byte(DECREMENT_OP);
2474 acpigen_emit_byte(LOCAL7_OP);
2475 acpigen_pop_len(); /* While */
Cliff Huangf97598f2023-03-01 14:30:41 -08002476
2477 if (name) {
2478 acpigen_write_if_lequal_op_op(LOCAL7_OP, ZERO_OP);
2479 acpigen_write_debug_sprintf("WARN: Wait loop timeout for variable %s",
2480 name);
2481 acpigen_pop_len(); /* If */
2482 }
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002483}
Arthur Heymans0eb59742023-04-25 16:23:37 +02002484
2485void acpigen_ssdt_override_sleep_states(bool enable_s1, bool enable_s2, bool enable_s3,
2486 bool enable_s4)
2487{
2488 assert(!(enable_s1 && CONFIG(ACPI_S1_NOT_SUPPORTED)));
2489 assert(!(enable_s3 && !CONFIG(HAVE_ACPI_RESUME)));
2490 assert(!(enable_s4 && CONFIG(DISABLE_ACPI_HIBERNATE)));
2491
2492 acpigen_write_scope("\\");
2493 uint32_t sleep_enable = (enable_s1 << 0) | (enable_s2 << 1)
2494 | (enable_s3 << 2) | (enable_s4 << 3);
2495 acpigen_write_name_dword("OSFG", sleep_enable);
2496 acpigen_pop_len();
2497}