blob: 305cddb0f02e97d6982552aca2f59bc4954628e1 [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Rudolf Marek293b5f52009-02-01 18:35:15 +00002
Paul Menzel0f4c0e22013-02-22 12:33:08 +01003/* How much nesting do we support? */
Rudolf Marek293b5f52009-02-01 18:35:15 +00004#define ACPIGEN_LENSTACK_SIZE 10
5
Paul Menzel0f4c0e22013-02-22 12:33:08 +01006/*
Timothy Pearson83abd812015-06-08 19:35:06 -05007 * If you need to change this, change acpigen_write_len_f and
Vladimir Serbinenko8104da72014-11-09 03:33:51 +01008 * acpigen_pop_len
Paul Menzel0f4c0e22013-02-22 12:33:08 +01009 */
Rudolf Marek293b5f52009-02-01 18:35:15 +000010
Timothy Pearson83abd812015-06-08 19:35:06 -050011#define ACPIGEN_MAXLEN 0xfffff
Rudolf Marek293b5f52009-02-01 18:35:15 +000012
Duncan Laurie3829f232016-05-09 11:08:46 -070013#include <lib.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000014#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070015#include <acpi/acpigen.h>
Elyes HAOUAScd4fe0f2019-03-29 17:12:15 +010016#include <assert.h>
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -060017#include <commonlib/helpers.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000018#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000019#include <device/device.h>
Duncan Laurie08a942f2020-04-29 12:13:14 -070020#include <device/soundwire.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010021#include <types.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000022
23static char *gencurrent;
24
25char *len_stack[ACPIGEN_LENSTACK_SIZE];
26int ltop = 0;
27
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010028void acpigen_write_len_f(void)
Rudolf Marek293b5f52009-02-01 18:35:15 +000029{
30 ASSERT(ltop < (ACPIGEN_LENSTACK_SIZE - 1))
Paul Menzel0f4c0e22013-02-22 12:33:08 +010031 len_stack[ltop++] = gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000032 acpigen_emit_byte(0);
33 acpigen_emit_byte(0);
Timothy Pearson83abd812015-06-08 19:35:06 -050034 acpigen_emit_byte(0);
Rudolf Marek293b5f52009-02-01 18:35:15 +000035}
36
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010037void acpigen_pop_len(void)
38{
39 int len;
40 ASSERT(ltop > 0)
41 char *p = len_stack[--ltop];
42 len = gencurrent - p;
43 ASSERT(len <= ACPIGEN_MAXLEN)
Timothy Pearson83abd812015-06-08 19:35:06 -050044 /* generate store length for 0xfffff max */
45 p[0] = (0x80 | (len & 0xf));
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010046 p[1] = (len >> 4 & 0xff);
Timothy Pearson83abd812015-06-08 19:35:06 -050047 p[2] = (len >> 12 & 0xff);
Vladimir Serbinenko430363a2014-11-02 21:51:22 +010048
49}
50
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000051void acpigen_set_current(char *curr)
52{
53 gencurrent = curr;
Rudolf Marek293b5f52009-02-01 18:35:15 +000054}
55
Stefan Reinauerf96c2d92009-04-22 16:23:47 +000056char *acpigen_get_current(void)
57{
58 return gencurrent;
Rudolf Marek293b5f52009-02-01 18:35:15 +000059}
60
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010061void acpigen_emit_byte(unsigned char b)
Rudolf Marek293b5f52009-02-01 18:35:15 +000062{
63 (*gencurrent++) = b;
Rudolf Marek293b5f52009-02-01 18:35:15 +000064}
65
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070066void acpigen_emit_ext_op(uint8_t op)
67{
68 acpigen_emit_byte(EXT_OP_PREFIX);
69 acpigen_emit_byte(op);
70}
71
Duncan Laurie9ccae752016-05-09 07:43:19 -070072void acpigen_emit_word(unsigned int data)
73{
74 acpigen_emit_byte(data & 0xff);
75 acpigen_emit_byte((data >> 8) & 0xff);
76}
77
78void acpigen_emit_dword(unsigned int data)
79{
80 acpigen_emit_byte(data & 0xff);
81 acpigen_emit_byte((data >> 8) & 0xff);
82 acpigen_emit_byte((data >> 16) & 0xff);
83 acpigen_emit_byte((data >> 24) & 0xff);
84}
85
Duncan Laurie85d80272016-07-02 19:53:54 -070086char *acpigen_write_package(int nr_el)
Rudolf Marek293b5f52009-02-01 18:35:15 +000087{
Duncan Laurie85d80272016-07-02 19:53:54 -070088 char *p;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070089 acpigen_emit_byte(PACKAGE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010090 acpigen_write_len_f();
Duncan Laurie85d80272016-07-02 19:53:54 -070091 p = acpigen_get_current();
Rudolf Marek293b5f52009-02-01 18:35:15 +000092 acpigen_emit_byte(nr_el);
Duncan Laurie85d80272016-07-02 19:53:54 -070093 return p;
Rudolf Marek293b5f52009-02-01 18:35:15 +000094}
95
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +010096void acpigen_write_byte(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +000097{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -070098 acpigen_emit_byte(BYTE_PREFIX);
Rudolf Marek293b5f52009-02-01 18:35:15 +000099 acpigen_emit_byte(data & 0xff);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000100}
101
Duncan Laurie9ccae752016-05-09 07:43:19 -0700102void acpigen_write_word(unsigned int data)
103{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700104 acpigen_emit_byte(WORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700105 acpigen_emit_word(data);
106}
107
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100108void acpigen_write_dword(unsigned int data)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000109{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700110 acpigen_emit_byte(DWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700111 acpigen_emit_dword(data);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000112}
113
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100114void acpigen_write_qword(uint64_t data)
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000115{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700116 acpigen_emit_byte(QWORD_PREFIX);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700117 acpigen_emit_dword(data & 0xffffffff);
118 acpigen_emit_dword((data >> 32) & 0xffffffff);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000119}
120
Duncan Laurief7c38762016-05-09 08:20:38 -0700121void acpigen_write_zero(void)
122{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700123 acpigen_emit_byte(ZERO_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700124}
125
126void acpigen_write_one(void)
127{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700128 acpigen_emit_byte(ONE_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700129}
130
131void acpigen_write_ones(void)
132{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700133 acpigen_emit_byte(ONES_OP);
Duncan Laurief7c38762016-05-09 08:20:38 -0700134}
135
136void acpigen_write_integer(uint64_t data)
137{
138 if (data == 0)
139 acpigen_write_zero();
140 else if (data == 1)
141 acpigen_write_one();
142 else if (data <= 0xff)
143 acpigen_write_byte((unsigned char)data);
144 else if (data <= 0xffff)
145 acpigen_write_word((unsigned int)data);
146 else if (data <= 0xffffffff)
147 acpigen_write_dword((unsigned int)data);
148 else
149 acpigen_write_qword(data);
150}
151
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100152void acpigen_write_name_byte(const char *name, uint8_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000153{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100154 acpigen_write_name(name);
155 acpigen_write_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000156}
157
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100158void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000159{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100160 acpigen_write_name(name);
161 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000162}
163
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100164void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000165{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100166 acpigen_write_name(name);
167 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000168}
169
Duncan Laurief7c38762016-05-09 08:20:38 -0700170void acpigen_write_name_integer(const char *name, uint64_t val)
171{
172 acpigen_write_name(name);
173 acpigen_write_integer(val);
174}
175
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700176void acpigen_write_name_string(const char *name, const char *string)
177{
178 acpigen_write_name(name);
179 acpigen_write_string(string);
180}
181
Patrick Rudolph389c8272019-12-17 13:54:41 +0100182void acpigen_write_name_unicode(const char *name, const char *string)
183{
184 const size_t len = strlen(string) + 1;
185 acpigen_write_name(name);
186 acpigen_emit_byte(BUFFER_OP);
187 acpigen_write_len_f();
188 acpigen_write_integer(len);
189 for (size_t i = 0; i < len; i++) {
190 const char c = string[i];
191 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
192 acpigen_emit_word(c >= 0 ? c : '?');
193 }
194 acpigen_pop_len();
195}
196
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100197void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000198{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000199 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700200 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000201 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000202}
203
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700204void acpigen_emit_string(const char *string)
205{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200206 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700207 acpigen_emit_byte('\0'); /* NUL */
208}
209
210void acpigen_write_string(const char *string)
211{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700212 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700213 acpigen_emit_string(string);
214}
215
Duncan Laurie37319032016-05-26 12:47:05 -0700216void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
217{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800218 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700219
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700220 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700221 acpigen_write_name_string("_HID", hid);
222}
223
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100224/*
225 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600226 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
227 * and "By convention, when an ASL compiler pads a name shorter than 4
228 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100229 *
230 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
231 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000232
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700233static void acpigen_emit_simple_namestring(const char *name)
234{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100235 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000236 char ud[] = "____";
237 for (i = 0; i < 4; i++) {
238 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100239 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000240 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000241 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700242 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000243 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000244}
245
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700246static void acpigen_emit_double_namestring(const char *name, int dotpos)
247{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700248 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100249 acpigen_emit_simple_namestring(name);
250 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000251}
252
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700253static void acpigen_emit_multi_namestring(const char *name)
254{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100255 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000256 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700257 acpigen_emit_byte(MULTI_NAME_PREFIX);
258 acpigen_emit_byte(ZERO_OP);
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100259 pathlen = ((unsigned char *)acpigen_get_current()) - 1;
Rudolf Marek3310d752009-06-21 20:26:13 +0000260
261 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100262 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000263 /* find end or next entity */
264 while ((name[0] != '.') && (name[0] != '\0'))
265 name++;
266 /* forward to next */
267 if (name[0] == '.')
268 name++;
269 count++;
270 }
271
272 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000273}
274
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700275void acpigen_emit_namestring(const char *namepath)
276{
Rudolf Marek3310d752009-06-21 20:26:13 +0000277 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000278 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000279
Ronak Kanabar7c0f0072020-11-30 15:40:51 +0530280 /* Check for NULL pointer */
281 if (!namepath)
282 return;
283
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600284 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000285 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100286 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000287 namepath++;
288 }
289
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600290 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000291 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100292 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000293 namepath++;
294 }
295
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200296 /* If we have only \\ or only ^...^. Then we need to put a null
297 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200298 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700299 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100300 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200301 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000302
303 i = 0;
304 while (namepath[i] != '\0') {
305 if (namepath[i] == '.') {
306 dotcount++;
307 dotpos = i;
308 }
309 i++;
310 }
311
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700312 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100313 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700314 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100315 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700316 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100317 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000318}
319
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100320void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000321{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700322 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100323 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000324}
325
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100326void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000327{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700328 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100329 acpigen_write_len_f();
330 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000331}
Rudolf Marekf997b552009-02-14 15:40:23 +0000332
Duncan Laurie2fe74712020-06-01 17:36:56 -0700333void acpigen_get_package_op_element(uint8_t package_op, unsigned int element, uint8_t dest_op)
334{
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800335 /* <dest_op> = DeRefOf (<package_op>[<element>]) */
Duncan Laurie2fe74712020-06-01 17:36:56 -0700336 acpigen_write_store();
337 acpigen_emit_byte(DEREF_OP);
338 acpigen_emit_byte(INDEX_OP);
339 acpigen_emit_byte(package_op);
340 acpigen_write_integer(element);
341 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
342 acpigen_emit_byte(dest_op);
343}
344
Duncan Laurieec2e3e42020-11-03 15:19:08 -0800345void acpigen_set_package_op_element_int(uint8_t package_op, unsigned int element, uint64_t src)
346{
347 /* DeRefOf (<package>[<element>]) = <src> */
348 acpigen_write_store();
349 acpigen_write_integer(src);
350 acpigen_emit_byte(DEREF_OP);
351 acpigen_emit_byte(INDEX_OP);
352 acpigen_emit_byte(package_op);
353 acpigen_write_integer(element);
354 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
355}
356
357void acpigen_get_package_element(const char *package, unsigned int element, uint8_t dest_op)
358{
359 /* <dest_op> = <package>[<element>] */
360 acpigen_write_store();
361 acpigen_emit_byte(INDEX_OP);
362 acpigen_emit_namestring(package);
363 acpigen_write_integer(element);
364 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
365 acpigen_emit_byte(dest_op);
366}
367
368void acpigen_set_package_element_int(const char *package, unsigned int element, uint64_t src)
369{
370 /* <package>[<element>] = <src> */
371 acpigen_write_store();
372 acpigen_write_integer(src);
373 acpigen_emit_byte(INDEX_OP);
374 acpigen_emit_namestring(package);
375 acpigen_write_integer(element);
376 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
377}
378
379void acpigen_set_package_element_namestr(const char *package, unsigned int element,
380 const char *src)
381{
382 /* <package>[<element>] = <src> */
383 acpigen_write_store();
384 acpigen_emit_namestring(src);
385 acpigen_emit_byte(INDEX_OP);
386 acpigen_emit_namestring(package);
387 acpigen_write_integer(element);
388 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
389}
390
Felix Heldb57b12f2023-01-24 19:31:00 +0100391void acpigen_write_processor_namestring(unsigned int cpu_index)
392{
393 char buffer[16];
394 snprintf(buffer, sizeof(buffer), CONFIG_ACPI_CPU_STRING, cpu_index);
395 acpigen_emit_namestring(buffer);
396}
397
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100398void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000399{
400/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100401 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200402 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000403*/
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700404 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100405 acpigen_write_len_f();
Felix Heldb57b12f2023-01-24 19:31:00 +0100406 acpigen_write_processor_namestring(cpuindex);
Rudolf Marekf997b552009-02-14 15:40:23 +0000407 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700408 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000409 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000410}
411
Felix Held32bba182023-01-28 03:37:21 +0100412void acpigen_write_processor_device(unsigned int cpu_index)
413{
414 acpigen_emit_ext_op(DEVICE_OP);
415 acpigen_write_len_f();
416 acpigen_write_processor_namestring(cpu_index);
417 acpigen_write_name_string("_HID", "ACPI0007");
418 acpigen_write_name_integer("_UID", cpu_index);
419}
420
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100421void acpigen_write_processor_package(const char *const name, const unsigned int first_core,
Nico Huber4d211ac2017-09-01 21:14:36 +0200422 const unsigned int core_count)
423{
424 unsigned int i;
Nico Huber4d211ac2017-09-01 21:14:36 +0200425
426 acpigen_write_name(name);
427 acpigen_write_package(core_count);
Felix Heldb57b12f2023-01-24 19:31:00 +0100428
429 for (i = first_core; i < first_core + core_count; ++i)
430 acpigen_write_processor_namestring(i);
431
Nico Huber4d211ac2017-09-01 21:14:36 +0200432 acpigen_pop_len();
433}
434
Arthur Heymans8f055272018-11-28 13:18:57 +0100435/* Method to notify all CPU cores */
436void acpigen_write_processor_cnot(const unsigned int number_of_cores)
437{
438 int core_id;
439
Christian Walterbe3979c2019-12-18 15:07:59 +0100440 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100441 for (core_id = 0; core_id < number_of_cores; core_id++) {
Arthur Heymans8f055272018-11-28 13:18:57 +0100442 acpigen_emit_byte(NOTIFY_OP);
Felix Heldb57b12f2023-01-24 19:31:00 +0100443 acpigen_write_processor_namestring(core_id);
Arthur Heymans8f055272018-11-28 13:18:57 +0100444 acpigen_emit_byte(ARG0_OP);
445 }
446 acpigen_pop_len();
447}
448
Naresh G Solanki8535c662016-10-25 00:51:24 +0530449/*
450 * Generate ACPI AML code for OperationRegion
451 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
452 * where rname is region name, space is region space, offset is region offset &
453 * len is region length.
454 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
455 */
Duncan Laurie35029602020-10-09 17:50:25 +0000456void acpigen_write_opregion(const struct opregion *opreg)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530457{
458 /* OpregionOp */
459 acpigen_emit_ext_op(OPREGION_OP);
460 /* NameString 4 chars only */
461 acpigen_emit_simple_namestring(opreg->name);
462 /* RegionSpace */
463 acpigen_emit_byte(opreg->regionspace);
464 /* RegionOffset & RegionLen, it can be byte word or double word */
465 acpigen_write_integer(opreg->regionoffset);
466 acpigen_write_integer(opreg->regionlen);
467}
468
Patrick Rudolph32bae492019-08-08 12:47:30 +0200469/*
470 * Generate ACPI AML code for Mutex
471 * Arg0: Pointer to name of mutex
472 * Arg1: Initial value of mutex
473 */
474void acpigen_write_mutex(const char *name, const uint8_t flags)
475{
476 /* MutexOp */
477 acpigen_emit_ext_op(MUTEX_OP);
478 /* NameString 4 chars only */
479 acpigen_emit_simple_namestring(name);
480 acpigen_emit_byte(flags);
481}
482
483void acpigen_write_acquire(const char *name, const uint16_t val)
484{
485 /* AcquireOp */
486 acpigen_emit_ext_op(ACQUIRE_OP);
487 /* NameString 4 chars only */
488 acpigen_emit_simple_namestring(name);
489 acpigen_emit_word(val);
490}
491
492void acpigen_write_release(const char *name)
493{
494 /* ReleaseOp */
495 acpigen_emit_ext_op(RELEASE_OP);
496 /* NameString 4 chars only */
497 acpigen_emit_simple_namestring(name);
498}
499
Patrick Rudolph894977b2017-07-01 16:15:05 +0200500static void acpigen_write_field_length(uint32_t len)
501{
502 uint8_t i, j;
503 uint8_t emit[4];
504
505 i = 1;
506 if (len < 0x40) {
507 emit[0] = len & 0x3F;
508 } else {
509 emit[0] = len & 0xF;
510 len >>= 4;
511 while (len) {
512 emit[i] = len & 0xFF;
513 i++;
514 len >>= 8;
515 }
516 }
517 /* Update bit 7:6 : Number of bytes followed by emit[0] */
518 emit[0] |= (i - 1) << 6;
519
520 for (j = 0; j < i; j++)
521 acpigen_emit_byte(emit[j]);
522}
523
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100524static void acpigen_write_field_offset(uint32_t offset, uint32_t current_bit_pos)
Naresh G Solanki8535c662016-10-25 00:51:24 +0530525{
526 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530527
528 if (offset < current_bit_pos) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100529 printk(BIOS_WARNING, "%s: Cannot move offset backward", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530530 return;
531 }
532
533 diff_bits = offset - current_bit_pos;
534 /* Upper limit */
535 if (diff_bits > 0xFFFFFFF) {
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100536 printk(BIOS_WARNING, "%s: Offset very large to encode", __func__);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530537 return;
538 }
539
Naresh G Solanki8535c662016-10-25 00:51:24 +0530540 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200541 acpigen_write_field_length(diff_bits);
542}
543
Michael Niewöhner060dc7b2022-05-13 00:04:19 +0200544void acpigen_write_field_name(const char *name, uint32_t size)
Patrick Rudolph894977b2017-07-01 16:15:05 +0200545{
546 acpigen_emit_simple_namestring(name);
547 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530548}
549
Duncan Laurie095bbf92020-09-30 23:09:29 +0000550static void acpigen_write_field_reserved(uint32_t size)
551{
552 acpigen_emit_byte(0);
553 acpigen_write_field_length(size);
554}
555
Naresh G Solanki8535c662016-10-25 00:51:24 +0530556/*
557 * Generate ACPI AML code for Field
558 * Arg0: region name
559 * Arg1: Pointer to struct fieldlist.
560 * Arg2: no. of entries in Arg1
561 * Arg3: flags which indicate filed access type, lock rule & update rule.
562 * Example with fieldlist
563 * struct fieldlist l[] = {
564 * FIELDLIST_OFFSET(0x84),
565 * FIELDLIST_NAMESTR("PMCS", 2),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000566 * FIELDLIST_RESERVED(6),
Naresh G Solanki8535c662016-10-25 00:51:24 +0530567 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200568 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530569 * FIELD_PRESERVE);
570 * Output:
571 * Field (UART, AnyAcc, NoLock, Preserve)
572 * {
573 * Offset (0x84),
Duncan Laurie095bbf92020-09-30 23:09:29 +0000574 * PMCS, 2,
575 * , 6,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530576 * }
577 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700578void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530579 uint8_t flags)
580{
581 uint16_t i;
582 uint32_t current_bit_pos = 0;
583
584 /* FieldOp */
585 acpigen_emit_ext_op(FIELD_OP);
586 /* Package Length */
587 acpigen_write_len_f();
588 /* NameString 4 chars only */
589 acpigen_emit_simple_namestring(name);
590 /* Field Flag */
591 acpigen_emit_byte(flags);
592
593 for (i = 0; i < count; i++) {
594 switch (l[i].type) {
595 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200596 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530597 current_bit_pos += l[i].bits;
598 break;
Duncan Laurie095bbf92020-09-30 23:09:29 +0000599 case RESERVED:
600 acpigen_write_field_reserved(l[i].bits);
601 current_bit_pos += l[i].bits;
602 break;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530603 case OFFSET:
604 acpigen_write_field_offset(l[i].bits, current_bit_pos);
605 current_bit_pos = l[i].bits;
606 break;
607 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100608 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530609 break;
610 }
611 }
612 acpigen_pop_len();
613}
614
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200615/*
616 * Generate ACPI AML code for IndexField
617 * Arg0: region name
618 * Arg1: Pointer to struct fieldlist.
619 * Arg2: no. of entries in Arg1
620 * Arg3: flags which indicate filed access type, lock rule & update rule.
621 * Example with fieldlist
622 * struct fieldlist l[] = {
623 * FIELDLIST_OFFSET(0x84),
624 * FIELDLIST_NAMESTR("PMCS", 2),
625 * };
626 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
627 * FIELD_NOLOCK |
628 * FIELD_PRESERVE);
629 * Output:
630 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
631 * {
632 * Offset (0x84),
633 * PMCS, 2
634 * }
635 */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100636void acpigen_write_indexfield(const char *idx, const char *data, struct fieldlist *l,
637 size_t count, uint8_t flags)
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200638{
639 uint16_t i;
640 uint32_t current_bit_pos = 0;
641
642 /* FieldOp */
643 acpigen_emit_ext_op(INDEX_FIELD_OP);
644 /* Package Length */
645 acpigen_write_len_f();
646 /* NameString 4 chars only */
647 acpigen_emit_simple_namestring(idx);
648 /* NameString 4 chars only */
649 acpigen_emit_simple_namestring(data);
650 /* Field Flag */
651 acpigen_emit_byte(flags);
652
653 for (i = 0; i < count; i++) {
654 switch (l[i].type) {
655 case NAME_STRING:
656 acpigen_write_field_name(l[i].name, l[i].bits);
657 current_bit_pos += l[i].bits;
658 break;
659 case OFFSET:
660 acpigen_write_field_offset(l[i].bits, current_bit_pos);
661 current_bit_pos = l[i].bits;
662 break;
663 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100664 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n", __func__, l[i].type);
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200665 break;
666 }
667 }
668 acpigen_pop_len();
669}
670
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100671void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000672{
673/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200674 Name (_PCT, Package (0x02)
675 {
676 ResourceTemplate ()
677 {
678 Register (FFixedHW,
679 0x00, // Bit Width
680 0x00, // Bit Offset
681 0x0000000000000000, // Address
682 ,)
683 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000684
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200685 ResourceTemplate ()
686 {
687 Register (FFixedHW,
688 0x00, // Bit Width
689 0x00, // Bit Offset
690 0x0000000000000000, // Address
691 ,)
692 }
693 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000694*/
695 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700696 /* 00000030 "0._PCT.," */
697 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
698 /* 00000038 "........" */
699 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
700 /* 00000040 "........" */
701 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
702 /* 00000048 "....y..." */
703 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
704 /* 00000050 "........" */
705 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
706 /* 00000058 "........" */
707 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000708 0x00, 0x79, 0x00
709 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100710 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000711}
712
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100713void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200714{
715/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200716 Name (_PTC, Package (0x02)
717 {
718 ResourceTemplate ()
719 {
720 Register (FFixedHW,
721 0x00, // Bit Width
722 0x00, // Bit Offset
723 0x0000000000000000, // Address
724 ,)
725 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200726
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200727 ResourceTemplate ()
728 {
729 Register (FFixedHW,
730 0x00, // Bit Width
731 0x00, // Bit Offset
732 0x0000000000000000, // Address
733 ,)
734 }
735 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200736*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200737 acpi_addr_t addr = {
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100738 .space_id = ACPI_ADDRESS_SPACE_FIXED,
739 .bit_width = 0,
740 .bit_offset = 0,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200741 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100742 .addrl = 0,
743 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200744 };
745
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100746 acpigen_write_name("_PTC");
747 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200748
749 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700750 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200751
752 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700753 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200754
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100755 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200756}
757
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700758static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100759{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700760 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100761 acpigen_write_len_f();
762 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700763 acpigen_emit_byte(flags);
764}
765
766/* Method (name, nargs, NotSerialized) */
767void acpigen_write_method(const char *name, int nargs)
768{
769 __acpigen_write_method(name, (nargs & 7));
770}
771
772/* Method (name, nargs, Serialized) */
773void acpigen_write_method_serialized(const char *name, int nargs)
774{
775 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100776}
777
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100778void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100779{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700780 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100781 acpigen_write_len_f();
782 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100783}
784
Raul E Rangel052c9632021-05-12 17:01:30 -0600785void acpigen_write_thermal_zone(const char *name)
786{
787 acpigen_emit_ext_op(THERMAL_ZONE_OP);
788 acpigen_write_len_f();
789 acpigen_emit_namestring(name);
790}
791
Duncan Laurieabe2de82016-05-09 11:08:46 -0700792void acpigen_write_STA(uint8_t status)
793{
794 /*
795 * Method (_STA, 0, NotSerialized) { Return (status) }
796 */
797 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700798 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700799 acpigen_write_byte(status);
800 acpigen_pop_len();
801}
802
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530803void acpigen_write_STA_ext(const char *namestring)
804{
805 /*
806 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
807 */
808 acpigen_write_method("_STA", 0);
809 acpigen_emit_byte(RETURN_OP);
810 acpigen_emit_namestring(namestring);
811 acpigen_pop_len();
812}
813
Raul E Rangelc7048322021-04-19 15:58:25 -0600814void acpigen_write_LPI_package(u64 level, const struct acpi_lpi_state *states, u16 nentries)
815{
816 /*
817 * Name (_LPI, Package (0x06) // _LPI: Low Power Idle States
818 * {
819 * 0x0000,
820 * 0x0000000000000000,
821 * 0x0003,
822 * Package (0x0A)
823 * {
824 * 0x00000002,
825 * 0x00000001,
826 * 0x00000001,
827 * 0x00000000,
828 * 0x00000000,
829 * 0x00000000,
830 * ResourceTemplate ()
831 * {
832 * Register (FFixedHW,
833 * 0x02, // Bit Width
834 * 0x02, // Bit Offset
835 * 0x0000000000000000, // Address
836 * ,)
837 * },
838 *
839 * ResourceTemplate ()
840 * {
841 * Register (SystemMemory,
842 * 0x00, // Bit Width
843 * 0x00, // Bit Offset
844 * 0x0000000000000000, // Address
845 * ,)
846 * },
847 *
848 * ResourceTemplate ()
849 * {
850 * Register (SystemMemory,
851 * 0x00, // Bit Width
852 * 0x00, // Bit Offset
853 * 0x0000000000000000, // Address
854 * ,)
855 * },
856 *
857 * "C1"
858 * },
859 * ...
860 * }
861 */
862
863 acpigen_write_name("_LPI");
864 acpigen_write_package(3 + nentries);
865 acpigen_write_word(0); /* Revision */
866 acpigen_write_qword(level);
867 acpigen_write_word(nentries);
868
869 for (size_t i = 0; i < nentries; i++, states++) {
870 acpigen_write_package(0xA);
871 acpigen_write_dword(states->min_residency_us);
872 acpigen_write_dword(states->worst_case_wakeup_latency_us);
873 acpigen_write_dword(states->flags);
874 acpigen_write_dword(states->arch_context_lost_flags);
875 acpigen_write_dword(states->residency_counter_frequency_hz);
876 acpigen_write_dword(states->enabled_parent_state);
877 acpigen_write_register_resource(&states->entry_method);
878 acpigen_write_register_resource(&states->residency_counter_register);
879 acpigen_write_register_resource(&states->usage_counter_register);
880 acpigen_write_string(states->state_name);
881 acpigen_pop_len();
882 }
883 acpigen_pop_len();
884}
885
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100886/*
887 * Generates a func with max supported P-states.
888 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100889void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000890{
891/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200892 Method (_PPC, 0, NotSerialized)
893 {
894 Return (nr)
895 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000896*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100897 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700898 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000899 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100900 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100901 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000902}
903
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100904/*
905 * Generates a func with max supported P-states saved
906 * in the variable PPCM.
907 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100908void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700909{
910/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200911 Method (_PPC, 0, NotSerialized)
912 {
913 Return (PPCM)
914 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700915*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100916 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700917 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700918 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100919 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100920 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700921}
922
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100923void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200924{
925/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200926 // Sample _TPC method
927 Method (_TPC, 0, NotSerialized)
928 {
929 Return (\TLVL)
930 }
931*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100932 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700933 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100934 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100935 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200936}
937
Duncan Laurieabe2de82016-05-09 11:08:46 -0700938void acpigen_write_PRW(u32 wake, u32 level)
939{
940 /*
941 * Name (_PRW, Package () { wake, level }
942 */
943 acpigen_write_name("_PRW");
944 acpigen_write_package(2);
945 acpigen_write_integer(wake);
946 acpigen_write_integer(level);
947 acpigen_pop_len();
948}
949
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100950void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat, u32 busmLat, u32 control,
951 u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000952{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100953 acpigen_write_package(6);
954 acpigen_write_dword(coreFreq);
955 acpigen_write_dword(power);
956 acpigen_write_dword(transLat);
957 acpigen_write_dword(busmLat);
958 acpigen_write_dword(control);
959 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100960 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700961
Elyes Haouas1f5e1b42022-02-17 17:44:07 +0100962 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n", coreFreq, power,
963 control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000964}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000965
Jason Gleneskca36aed2020-09-15 21:01:57 -0700966void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
967{
968 size_t pstate;
969
970 acpigen_write_name("_PSS");
971 acpigen_write_package(nentries);
972 for (pstate = 0; pstate < nentries; pstate++) {
973 acpigen_write_PSS_package(
974 pstate_values->core_freq, pstate_values->power,
975 pstate_values->transition_latency, pstate_values->bus_master_latency,
976 pstate_values->control_value, pstate_values->status_value);
977 pstate_values++;
978 }
979
980 acpigen_pop_len();
981}
982
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100983void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000984{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100985 acpigen_write_name("_PSD");
986 acpigen_write_package(1);
987 acpigen_write_package(5);
988 acpigen_write_byte(5); // 5 values
989 acpigen_write_byte(0); // revision 0
990 acpigen_write_dword(domain);
991 acpigen_write_dword(coordtype);
992 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100993 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100994 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000995}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000996
Angel Ponsd2794ce2021-10-17 12:59:43 +0200997void acpigen_write_CST_package_entry(const acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200998{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100999 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001000 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -07001001 acpigen_write_byte(cstate->ctype);
1002 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001003 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001004 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001005}
1006
Angel Ponsd2794ce2021-10-17 12:59:43 +02001007void acpigen_write_CST_package(const acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001008{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001009 int i;
1010 acpigen_write_name("_CST");
1011 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -07001012 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001013
1014 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001015 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +02001016
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001017 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +02001018}
1019
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001020void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
1021 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -05001022{
1023 acpigen_write_name("_CSD");
1024 acpigen_write_package(1);
1025 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -07001026 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -05001027 acpigen_write_byte(0); // revision 0
1028 acpigen_write_dword(domain);
1029 acpigen_write_dword(coordtype);
1030 acpigen_write_dword(numprocs);
1031 acpigen_write_dword(index);
1032 acpigen_pop_len();
1033 acpigen_pop_len();
1034}
1035
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001036void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001037{
1038/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +02001039 Sample _TSS package with 100% and 50% duty cycles
1040 Name (_TSS, Package (0x02)
1041 {
1042 Package(){100, 1000, 0, 0x00, 0)
1043 Package(){50, 520, 0, 0x18, 0)
1044 })
1045*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001046 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001047 acpi_tstate_t *tstate = tstate_list;
1048
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001049 acpigen_write_name("_TSS");
1050 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +02001051
1052 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001053 acpigen_write_package(5);
1054 acpigen_write_dword(tstate->percent);
1055 acpigen_write_dword(tstate->power);
1056 acpigen_write_dword(tstate->latency);
1057 acpigen_write_dword(tstate->control);
1058 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001059 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001060 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +02001061 }
1062
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001063 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001064}
1065
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001066void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +02001067{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001068 acpigen_write_name("_TSD");
1069 acpigen_write_package(1);
1070 acpigen_write_package(5);
1071 acpigen_write_byte(5); // 5 values
1072 acpigen_write_byte(0); // revision 0
1073 acpigen_write_dword(domain);
1074 acpigen_write_dword(coordtype);
1075 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001076 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001077 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +02001078}
1079
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001080void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001081{
1082 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001083 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001084 * Byte 0:
1085 * Bit7 : 1 => big item
1086 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
1087 */
1088 acpigen_emit_byte(0x86);
1089 /* Byte 1+2: length (0x0009) */
1090 acpigen_emit_byte(0x09);
1091 acpigen_emit_byte(0x00);
1092 /* bit1-7 are ignored */
1093 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -07001094 acpigen_emit_dword(base);
1095 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001096}
1097
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001098static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +02001099{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +02001100 acpigen_emit_byte(0x82); /* Register Descriptor */
1101 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
1102 acpigen_emit_byte(0x00); /* Register Length 15:8 */
1103 acpigen_emit_byte(addr->space_id); /* Address Space ID */
1104 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
1105 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +01001106 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -07001107 acpigen_emit_dword(addr->addrl); /* Register Address Low */
1108 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +02001109}
1110
Matt Delcoc3f9d7a2018-07-27 14:01:05 -07001111void acpigen_write_register_resource(const acpi_addr_t *addr)
1112{
1113 acpigen_write_resourcetemplate_header();
1114 acpigen_write_register(addr);
1115 acpigen_write_resourcetemplate_footer();
1116}
1117
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001118void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001119{
1120 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001121 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001122 * Byte 0:
1123 * Bit7 : 0 => small item
1124 * Bit6-3: 0100 (0x4) => IRQ port descriptor
1125 * Bit2-0: 010 (0x2) => 2 Bytes long
1126 */
1127 acpigen_emit_byte(0x22);
1128 acpigen_emit_byte(mask & 0xff);
1129 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +01001130}
1131
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001132void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001133{
1134 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001135 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001136 * Byte 0:
1137 * Bit7 : 0 => small item
1138 * Bit6-3: 1000 (0x8) => I/O port descriptor
1139 * Bit2-0: 111 (0x7) => 7 Bytes long
1140 */
1141 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001142 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001143 /* bit1-7 are ignored */
1144 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1145 /* minimum base address the device may be configured for */
1146 acpigen_emit_byte(min & 0xff);
1147 acpigen_emit_byte((min >> 8) & 0xff);
1148 /* maximum base address the device may be configured for */
1149 acpigen_emit_byte(max & 0xff);
1150 acpigen_emit_byte((max >> 8) & 0xff);
1151 /* alignment for min base */
1152 acpigen_emit_byte(align & 0xff);
1153 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001154}
1155
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001156void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001157{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001158 /*
1159 * A ResourceTemplate() is a Buffer() with a
1160 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001161 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001162 * (small item 0xf, len 1)
1163 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001164 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001165 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001166 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001167 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001168 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001169 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001170 acpigen_emit_byte(0x00);
1171 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001172}
1173
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001174void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001175{
1176 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001177 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001178 /*
1179 * end tag (acpi 4.0 Section 6.4.2.8)
1180 * 0x79 <checksum>
1181 * 0x00 is treated as a good checksum according to the spec
1182 * and is what iasl generates.
1183 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001184 acpigen_emit_byte(0x79);
1185 acpigen_emit_byte(0x00);
1186
Nico Huber7d89ce32017-04-14 00:08:18 +02001187 /* Start counting past the 2-bytes length added in
1188 acpigen_write_resourcetemplate() above. */
1189 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001190
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001191 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001192 p[0] = len & 0xff;
1193 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001194 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001195 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001196}
1197
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001198static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001199{
1200 acpigen_write_mem32fixed(0, res->base, res->size);
1201}
1202
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001203static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev, struct resource *res)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001204{
1205 resource_t base = res->base;
1206 resource_t size = res->size;
1207 while (size > 0) {
1208 resource_t sz = size > 255 ? 255 : size;
1209 acpigen_write_io16(base, base, 0, sz, 1);
1210 size -= sz;
1211 base += sz;
1212 }
1213}
1214
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001215void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001216{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001217 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001218
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001219 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001220 search_global_resources(
1221 IORESOURCE_MEM | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001222 IORESOURCE_MEM | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001223 acpigen_add_mainboard_rsvd_mem32, 0);
1224
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001225 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001226 search_global_resources(
1227 IORESOURCE_IO | IORESOURCE_RESERVE,
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001228 IORESOURCE_IO | IORESOURCE_RESERVE,
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001229 acpigen_add_mainboard_rsvd_io, 0);
1230
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001231 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001232}
1233
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001234void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001235{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001236 acpigen_write_scope(scope);
1237 acpigen_write_name(name);
1238 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001239 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001240}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001241
1242static int hex2bin(const char c)
1243{
1244 if (c >= 'A' && c <= 'F')
1245 return c - 'A' + 10;
1246 if (c >= 'a' && c <= 'f')
1247 return c - 'a' + 10;
1248 return c - '0';
1249}
1250
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001251void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001252{
1253 u32 compact = 0;
1254
1255 /* Clamping individual values would be better but
1256 there is a disagreement over what is a valid
1257 EISA id, so accept anything and don't clamp,
1258 parent code should create a valid EISAid.
1259 */
1260 compact |= (eisaid[0] - 'A' + 1) << 26;
1261 compact |= (eisaid[1] - 'A' + 1) << 21;
1262 compact |= (eisaid[2] - 'A' + 1) << 16;
1263 compact |= hex2bin(eisaid[3]) << 12;
1264 compact |= hex2bin(eisaid[4]) << 8;
1265 compact |= hex2bin(eisaid[5]) << 4;
1266 compact |= hex2bin(eisaid[6]);
1267
1268 acpigen_emit_byte(0xc);
1269 acpigen_emit_byte((compact >> 24) & 0xff);
1270 acpigen_emit_byte((compact >> 16) & 0xff);
1271 acpigen_emit_byte((compact >> 8) & 0xff);
1272 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001273}
Duncan Laurie3829f232016-05-09 11:08:46 -07001274
1275/*
1276 * ToUUID(uuid)
1277 *
1278 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1279 * order for the bytes that make up a UUID Buffer object.
1280 * UUID byte order for input:
1281 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1282 * UUID byte order for output:
1283 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1284 */
1285#define UUID_LEN 16
1286void acpigen_write_uuid(const char *uuid)
1287{
1288 uint8_t buf[UUID_LEN];
1289 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1290 8, 9, 10, 11, 12, 13, 14, 15 };
1291
1292 /* Parse UUID string into bytes */
1293 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1294 return;
1295
1296 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001297 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001298 acpigen_write_len_f();
1299
1300 /* Buffer length in bytes */
1301 acpigen_write_word(UUID_LEN);
1302
1303 /* Output UUID in expected order */
1304 for (i = 0; i < UUID_LEN; i++)
1305 acpigen_emit_byte(buf[order[i]]);
1306
1307 acpigen_pop_len();
1308}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001309
1310/*
1311 * Name (_PRx, Package(One) { name })
1312 * ...
1313 * PowerResource (name, level, order)
1314 */
1315void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001316 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001317{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001318 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001319 for (i = 0; i < dev_states_count; i++) {
1320 acpigen_write_name(dev_states[i]);
1321 acpigen_write_package(1);
1322 acpigen_emit_simple_namestring(name);
1323 acpigen_pop_len(); /* Package */
1324 }
1325
1326 acpigen_emit_ext_op(POWER_RES_OP);
1327
1328 acpigen_write_len_f();
1329
1330 acpigen_emit_simple_namestring(name);
1331 acpigen_emit_byte(level);
1332 acpigen_emit_word(order);
1333}
1334
1335/* Sleep (ms) */
1336void acpigen_write_sleep(uint64_t sleep_ms)
1337{
1338 acpigen_emit_ext_op(SLEEP_OP);
1339 acpigen_write_integer(sleep_ms);
1340}
1341
1342void acpigen_write_store(void)
1343{
1344 acpigen_emit_byte(STORE_OP);
1345}
1346
1347/* Store (src, dst) */
1348void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1349{
1350 acpigen_write_store();
1351 acpigen_emit_byte(src);
1352 acpigen_emit_byte(dst);
1353}
1354
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001355/* Store (src, "namestr") */
1356void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1357{
1358 acpigen_write_store();
1359 acpigen_emit_byte(src);
1360 acpigen_emit_namestring(dst);
1361}
1362
Duncan Laurie8e391d32020-09-30 23:17:41 +00001363/* Store (src, "namestr") */
1364void acpigen_write_store_int_to_namestr(uint64_t src, const char *dst)
1365{
1366 acpigen_write_store();
1367 acpigen_write_integer(src);
1368 acpigen_emit_namestring(dst);
1369}
1370
1371/* Store (src, dst) */
1372void acpigen_write_store_int_to_op(uint64_t src, uint8_t dst)
1373{
1374 acpigen_write_store();
1375 acpigen_write_integer(src);
1376 acpigen_emit_byte(dst);
1377}
1378
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001379/* Or (arg1, arg2, res) */
1380void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1381{
1382 acpigen_emit_byte(OR_OP);
1383 acpigen_emit_byte(arg1);
1384 acpigen_emit_byte(arg2);
1385 acpigen_emit_byte(res);
1386}
1387
Rajat Jain310623b2020-02-26 11:02:53 -08001388/* Xor (arg1, arg2, res) */
1389void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1390{
1391 acpigen_emit_byte(XOR_OP);
1392 acpigen_emit_byte(arg1);
1393 acpigen_emit_byte(arg2);
1394 acpigen_emit_byte(res);
1395}
1396
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001397/* And (arg1, arg2, res) */
1398void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1399{
1400 acpigen_emit_byte(AND_OP);
1401 acpigen_emit_byte(arg1);
1402 acpigen_emit_byte(arg2);
1403 acpigen_emit_byte(res);
1404}
1405
1406/* Not (arg, res) */
1407void acpigen_write_not(uint8_t arg, uint8_t res)
1408{
1409 acpigen_emit_byte(NOT_OP);
1410 acpigen_emit_byte(arg);
1411 acpigen_emit_byte(res);
1412}
1413
Cliff Huange6083082023-01-19 21:18:23 -08001414/* Concatenate (str1, str2, res) */
1415void acpigen_concatenate_string_string(const char *str1, const char *str2, uint8_t res)
1416{
1417 acpigen_emit_byte(CONCATENATE_OP);
1418 acpigen_write_string(str1);
1419 acpigen_write_string(str2);
1420 acpigen_emit_byte(res);
1421}
1422
1423/* Concatenate (str, val, tmp_res) */
1424void acpigen_concatenate_string_int(const char *str, uint64_t val, uint8_t res)
1425{
1426 acpigen_emit_byte(CONCATENATE_OP);
1427 acpigen_write_string(str);
1428 acpigen_write_integer(val);
1429 acpigen_emit_byte(res);
1430}
1431
1432/* Concatenate (str, src_res, dest_res) */
1433void acpigen_concatenate_string_op(const char *str, uint8_t src_res, uint8_t dest_res)
1434{
1435 acpigen_emit_byte(CONCATENATE_OP);
1436 acpigen_write_string(str);
1437 acpigen_emit_byte(src_res);
1438 acpigen_emit_byte(dest_res);
1439}
1440
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001441/* Store (str, DEBUG) */
1442void acpigen_write_debug_string(const char *str)
1443{
1444 acpigen_write_store();
1445 acpigen_write_string(str);
1446 acpigen_emit_ext_op(DEBUG_OP);
1447}
1448
1449/* Store (val, DEBUG) */
1450void acpigen_write_debug_integer(uint64_t val)
1451{
1452 acpigen_write_store();
1453 acpigen_write_integer(val);
1454 acpigen_emit_ext_op(DEBUG_OP);
1455}
1456
1457/* Store (op, DEBUG) */
1458void acpigen_write_debug_op(uint8_t op)
1459{
1460 acpigen_write_store();
1461 acpigen_emit_byte(op);
1462 acpigen_emit_ext_op(DEBUG_OP);
1463}
1464
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001465/* Store (str, DEBUG) */
1466void acpigen_write_debug_namestr(const char *str)
1467{
1468 acpigen_write_store();
1469 acpigen_emit_namestring(str);
1470 acpigen_emit_ext_op(DEBUG_OP);
1471}
1472
Cliff Huange6083082023-01-19 21:18:23 -08001473/* Concatenate (str1, str2, tmp_res)
1474 Store(tmp_res, DEBUG) */
1475void acpigen_write_debug_concatenate_string_string(const char *str1, const char *str2,
1476 uint8_t tmp_res)
1477{
1478 acpigen_concatenate_string_string(str1, str2, tmp_res);
1479 acpigen_write_debug_op(tmp_res);
1480}
1481
1482/* Concatenate (str1, val, tmp_res)
1483 Store(tmp_res, DEBUG) */
1484void acpigen_write_debug_concatenate_string_int(const char *str, uint64_t val,
1485 uint8_t tmp_res)
1486{
1487 acpigen_concatenate_string_int(str, val, tmp_res);
1488 acpigen_write_debug_op(tmp_res);
1489}
1490
1491/* Concatenate (str1, res, tmp_res)
1492 Store(tmp_res, DEBUG) */
1493void acpigen_write_debug_concatenate_string_op(const char *str, uint8_t res,
1494 uint8_t tmp_res)
1495{
1496 acpigen_concatenate_string_op(str, res, tmp_res);
1497 acpigen_write_debug_op(tmp_res);
1498}
1499
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001500void acpigen_write_if(void)
1501{
1502 acpigen_emit_byte(IF_OP);
1503 acpigen_write_len_f();
1504}
1505
1506/* If (And (arg1, arg2)) */
1507void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1508{
1509 acpigen_write_if();
1510 acpigen_emit_byte(AND_OP);
1511 acpigen_emit_byte(arg1);
1512 acpigen_emit_byte(arg2);
1513}
1514
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001515/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001516 * Generates ACPI code for checking if operand1 and operand2 are equal.
1517 * Both operand1 and operand2 are ACPI ops.
1518 *
1519 * If (Lequal (op,1 op2))
1520 */
1521void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1522{
1523 acpigen_write_if();
1524 acpigen_emit_byte(LEQUAL_OP);
1525 acpigen_emit_byte(op1);
1526 acpigen_emit_byte(op2);
1527}
1528
1529/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001530 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1531 * operand1 is ACPI op and operand2 is an integer.
1532 *
1533 * If (Lequal (op, val))
1534 */
1535void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001536{
1537 acpigen_write_if();
1538 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001539 acpigen_emit_byte(op);
1540 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001541}
1542
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001543/*
1544 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1545 * operand1 is namestring and operand2 is an integer.
1546 *
1547 * If (Lequal ("namestr", val))
1548 */
1549void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1550{
1551 acpigen_write_if();
1552 acpigen_emit_byte(LEQUAL_OP);
1553 acpigen_emit_namestring(namestr);
1554 acpigen_write_integer(val);
1555}
1556
Tim Wawrzynczakc4ca2f62021-07-01 11:18:50 -06001557/*
1558 * Generates ACPI code to check at runtime if an object named `namestring`
1559 * exists, and leaves the If scope open to continue execute code when this
1560 * is true. NOTE: Requires matching acpigen_write_if_end().
1561 *
1562 * If (CondRefOf (NAME))
1563 */
1564void acpigen_write_if_cond_ref_of(const char *namestring)
1565{
1566 acpigen_write_if();
1567 acpigen_emit_ext_op(COND_REFOF_OP);
1568 acpigen_emit_namestring(namestring);
1569 acpigen_emit_byte(ZERO_OP); /* ignore COND_REFOF_OP destination */
1570}
1571
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001572/* Closes previously opened if statement and generates ACPI code for else statement. */
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001573void acpigen_write_else(void)
1574{
Jakub Czapiga61fcb7e2021-02-19 11:44:22 +01001575 acpigen_pop_len();
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001576 acpigen_emit_byte(ELSE_OP);
1577 acpigen_write_len_f();
1578}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001579
Duncan Laurie36858202020-10-06 21:01:51 +00001580void acpigen_write_shiftleft_op_int(uint8_t src_result, uint64_t count)
1581{
1582 acpigen_emit_byte(SHIFT_LEFT_OP);
1583 acpigen_emit_byte(src_result);
1584 acpigen_write_integer(count);
1585 acpigen_emit_byte(ZERO_OP);
1586}
1587
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001588void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1589{
1590 acpigen_emit_byte(TO_BUFFER_OP);
1591 acpigen_emit_byte(src);
1592 acpigen_emit_byte(dst);
1593}
1594
1595void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1596{
1597 acpigen_emit_byte(TO_INTEGER_OP);
1598 acpigen_emit_byte(src);
1599 acpigen_emit_byte(dst);
1600}
1601
Aaron Durbin80bc0912020-08-19 23:17:42 -06001602void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1603{
1604 acpigen_emit_byte(TO_INTEGER_OP);
1605 acpigen_emit_namestring(source);
1606 acpigen_emit_byte(dst_op);
1607}
1608
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301609void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001610{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301611 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001612
1613 acpigen_emit_byte(BUFFER_OP);
1614 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301615 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001616
1617 for (i = 0; i < size; i++)
1618 acpigen_emit_byte(arr[i]);
1619
1620 acpigen_pop_len();
1621}
1622
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301623void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001624{
1625 acpigen_emit_byte(RETURN_OP);
1626 acpigen_write_byte_buffer(arr, size);
1627}
1628
1629void acpigen_write_return_singleton_buffer(uint8_t arg)
1630{
1631 acpigen_write_return_byte_buffer(&arg, 1);
1632}
1633
Duncan Laurie2fe74712020-06-01 17:36:56 -07001634void acpigen_write_return_op(uint8_t arg)
1635{
1636 acpigen_emit_byte(RETURN_OP);
1637 acpigen_emit_byte(arg);
1638}
1639
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001640void acpigen_write_return_byte(uint8_t arg)
1641{
1642 acpigen_emit_byte(RETURN_OP);
1643 acpigen_write_byte(arg);
1644}
1645
Naresh G Solanki05abe432016-11-17 00:16:29 +05301646void acpigen_write_return_integer(uint64_t arg)
1647{
1648 acpigen_emit_byte(RETURN_OP);
1649 acpigen_write_integer(arg);
1650}
1651
Duncan Laurieec2e3e42020-11-03 15:19:08 -08001652void acpigen_write_return_namestr(const char *arg)
1653{
1654 acpigen_emit_byte(RETURN_OP);
1655 acpigen_emit_namestring(arg);
1656}
1657
Naresh G Solanki05abe432016-11-17 00:16:29 +05301658void acpigen_write_return_string(const char *arg)
1659{
1660 acpigen_emit_byte(RETURN_OP);
1661 acpigen_write_string(arg);
1662}
1663
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001664void acpigen_write_upc(enum acpi_upc_type type)
1665{
1666 acpigen_write_name("_UPC");
1667 acpigen_write_package(4);
1668 /* Connectable */
1669 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1670 /* Type */
1671 acpigen_write_byte(type);
1672 /* Reserved0 */
1673 acpigen_write_zero();
1674 /* Reserved1 */
1675 acpigen_write_zero();
1676 acpigen_pop_len();
1677}
1678
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001679void acpigen_write_pld(const struct acpi_pld *pld)
1680{
1681 uint8_t buf[20];
1682
1683 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1684 return;
1685
1686 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001687 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001688 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001689 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001690}
1691
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001692void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *), size_t count, void *arg)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301693{
1694 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1695 acpigen_write_dsm_uuid_arr(&id, 1);
1696}
1697
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001698/*
1699 * Create a supported functions bitmask
1700 * bit 0: other functions than 0 are supported
1701 * bits 1-x: function x supported
1702 */
1703static void acpigen_dsm_uuid_enum_functions(const struct dsm_uuid *id)
1704{
1705 const size_t bytes = DIV_ROUND_UP(id->count, BITS_PER_BYTE);
1706 uint8_t *buffer = alloca(bytes);
1707 bool set = false;
1708 size_t cb_idx = 0;
1709
1710 memset(buffer, 0, bytes);
1711
1712 for (size_t i = 0; i < bytes; i++) {
1713 for (size_t j = 0; j < BITS_PER_BYTE; j++) {
1714 if (cb_idx >= id->count)
1715 break;
1716
1717 if (id->callbacks[cb_idx++]) {
1718 set = true;
1719 buffer[i] |= BIT(j);
1720 }
1721 }
1722 }
1723
1724 if (set)
1725 buffer[0] |= BIT(0);
1726
1727 acpigen_write_return_byte_buffer(buffer, bytes);
1728}
1729
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301730static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1731{
1732 size_t i;
1733
1734 /* If (LEqual (Local0, ToUUID(uuid))) */
1735 acpigen_write_if();
1736 acpigen_emit_byte(LEQUAL_OP);
1737 acpigen_emit_byte(LOCAL0_OP);
1738 acpigen_write_uuid(id->uuid);
1739
1740 /* ToInteger (Arg2, Local1) */
1741 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1742
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001743 /* If (LEqual(Local1, 0)) */
1744 {
1745 acpigen_write_if_lequal_op_int(LOCAL1_OP, 0);
1746 if (id->callbacks[0])
1747 id->callbacks[0](id->arg);
1748 else if (id->count)
1749 acpigen_dsm_uuid_enum_functions(id);
1750 acpigen_write_if_end();
1751 }
1752
1753 for (i = 1; i < id->count; i++) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301754 /* If (LEqual (Local1, i)) */
1755 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1756
1757 /* Callback to write if handler. */
1758 if (id->callbacks[i])
1759 id->callbacks[i](id->arg);
1760
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001761 acpigen_write_if_end(); /* If */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301762 }
1763
1764 /* Default case: Return (Buffer (One) { 0x0 }) */
1765 acpigen_write_return_singleton_buffer(0x0);
1766
Tim Wawrzynczakd96f3a22021-07-14 15:56:57 -06001767 acpigen_write_if_end(); /* If (LEqual (Local0, ToUUID(uuid))) */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301768
1769}
1770
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001771/*
1772 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301773 * This function takes as input array of uuid for the device, set of callbacks
1774 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1775 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1776 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001777 *
1778 * Arguments passed into _DSM method:
1779 * Arg0 = UUID
1780 * Arg1 = Revision
1781 * Arg2 = Function index
1782 * Arg3 = Function specific arguments
1783 *
1784 * AML code generated would look like:
1785 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301786 * ToBuffer (Arg0, Local0)
1787 * If (LEqual (Local0, ToUUID(uuid))) {
1788 * ToInteger (Arg2, Local1)
1789 * If (LEqual (Local1, 0)) {
1790 * <acpigen by callback[0]>
1791 * }
1792 * ...
1793 * If (LEqual (Local1, n)) {
1794 * <acpigen by callback[n]>
1795 * }
1796 * Return (Buffer (One) { 0x0 })
1797 * }
1798 * ...
1799 * If (LEqual (Local0, ToUUID(uuidn))) {
1800 * ...
1801 * }
1802 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001803 * }
1804 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301805void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001806{
1807 size_t i;
1808
1809 /* Method (_DSM, 4, Serialized) */
1810 acpigen_write_method_serialized("_DSM", 0x4);
1811
1812 /* ToBuffer (Arg0, Local0) */
1813 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1814
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001815 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301816 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001817
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301818 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001819 acpigen_write_return_singleton_buffer(0x0);
1820
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001821 acpigen_pop_len(); /* Method _DSM */
1822}
1823
Matt Delcob425bc82018-08-13 13:36:27 -07001824void acpigen_write_CPPC_package(const struct cppc_config *config)
1825{
1826 u32 i;
1827 u32 max;
1828 switch (config->version) {
1829 case 1:
1830 max = CPPC_MAX_FIELDS_VER_1;
1831 break;
1832 case 2:
1833 max = CPPC_MAX_FIELDS_VER_2;
1834 break;
1835 case 3:
1836 max = CPPC_MAX_FIELDS_VER_3;
1837 break;
1838 default:
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001839 printk(BIOS_ERR, "CPPC version %u is not implemented\n", config->version);
Matt Delcob425bc82018-08-13 13:36:27 -07001840 return;
1841 }
1842 acpigen_write_name(CPPC_PACKAGE_NAME);
1843
1844 /* Adding 2 to account for length and version fields */
1845 acpigen_write_package(max + 2);
1846 acpigen_write_dword(max + 2);
1847
1848 acpigen_write_byte(config->version);
1849
1850 for (i = 0; i < max; ++i) {
Michael Niewöhner38107fa2021-10-05 22:22:21 +02001851 const cppc_entry_t *entry = &config->entries[i];
1852 if (entry->type == CPPC_TYPE_DWORD)
1853 acpigen_write_dword(entry->dword);
1854 else
1855 acpigen_write_register_resource(&entry->reg);
Matt Delcob425bc82018-08-13 13:36:27 -07001856 }
1857 acpigen_pop_len();
1858}
1859
1860void acpigen_write_CPPC_method(void)
1861{
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001862 char pscope[16];
1863 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING "." CPPC_PACKAGE_NAME, 0);
1864
Matt Delcob425bc82018-08-13 13:36:27 -07001865 acpigen_write_method("_CPC", 0);
1866 acpigen_emit_byte(RETURN_OP);
Michael Niewöhnerb20aac02020-10-14 19:30:46 +02001867 acpigen_emit_namestring(pscope);
Matt Delcob425bc82018-08-13 13:36:27 -07001868 acpigen_pop_len();
1869}
1870
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001871/*
1872 * Generate ACPI AML code for _ROM method.
1873 * This function takes as input ROM data and ROM length.
1874 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001875 * The ACPI spec isn't clear about what should happen at the end of the
1876 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1877 * bytes in the returned buffer with zeros.
1878 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001879 * Arguments passed into _DSM method:
1880 * Arg0 = Offset in Bytes
1881 * Arg1 = Bytes to return
1882 *
1883 * Example:
1884 * acpigen_write_rom(0xdeadbeef, 0x10000)
1885 *
1886 * AML code generated would look like:
1887 * Method (_ROM, 2, NotSerialized) {
1888 *
1889 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1890 * Field (ROMS, AnyAcc, NoLock, Preserve)
1891 * {
1892 * Offset (0),
1893 * RBF0, 0x80000
1894 * }
1895 *
1896 * Store (Arg0, Local0)
1897 * Store (Arg1, Local1)
1898 *
1899 * If (LGreater (Local1, 0x1000))
1900 * {
1901 * Store (0x1000, Local1)
1902 * }
1903 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001904 * Store (Local1, Local3)
1905 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001906 * If (LGreater (Local0, 0x10000))
1907 * {
1908 * Return(Buffer(Local1){0})
1909 * }
1910 *
1911 * If (LGreater (Local0, 0x0f000))
1912 * {
1913 * Subtract (0x10000, Local0, Local2)
1914 * If (LGreater (Local1, Local2))
1915 * {
1916 * Store (Local2, Local1)
1917 * }
1918 * }
1919 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001920 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001921 *
1922 * Multiply (Local0, 0x08, Local0)
1923 * Multiply (Local1, 0x08, Local1)
1924 *
1925 * CreateField (RBF0, Local0, Local1, TMPB)
1926 * Store (TMPB, ROM1)
1927 * Return (ROM1)
1928 * }
1929 */
1930
1931void acpigen_write_rom(void *bios, const size_t length)
1932{
1933 ASSERT(bios)
1934 ASSERT(length)
1935
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02001936 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06001937 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001938
1939 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001940 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY, (uintptr_t)bios, length);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001941 acpigen_write_opregion(&opreg);
1942
1943 struct fieldlist l[] = {
1944 FIELDLIST_OFFSET(0),
1945 FIELDLIST_NAMESTR("RBF0", 8 * length),
1946 };
1947
1948 /* Field (ROMS, AnyAcc, NoLock, Preserve)
1949 * {
1950 * Offset (0),
1951 * RBF0, 0x80000
1952 * } */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01001953 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001954
1955 /* Store (Arg0, Local0) */
1956 acpigen_write_store();
1957 acpigen_emit_byte(ARG0_OP);
1958 acpigen_emit_byte(LOCAL0_OP);
1959
1960 /* Store (Arg1, Local1) */
1961 acpigen_write_store();
1962 acpigen_emit_byte(ARG1_OP);
1963 acpigen_emit_byte(LOCAL1_OP);
1964
1965 /* ACPI SPEC requires to return at maximum 4KiB */
1966 /* If (LGreater (Local1, 0x1000)) */
1967 acpigen_write_if();
1968 acpigen_emit_byte(LGREATER_OP);
1969 acpigen_emit_byte(LOCAL1_OP);
1970 acpigen_write_integer(0x1000);
1971
1972 /* Store (0x1000, Local1) */
1973 acpigen_write_store();
1974 acpigen_write_integer(0x1000);
1975 acpigen_emit_byte(LOCAL1_OP);
1976
1977 /* Pop if */
1978 acpigen_pop_len();
1979
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001980 /* Store (Local1, Local3) */
1981 acpigen_write_store();
1982 acpigen_emit_byte(LOCAL1_OP);
1983 acpigen_emit_byte(LOCAL3_OP);
1984
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001985 /* If (LGreater (Local0, length)) */
1986 acpigen_write_if();
1987 acpigen_emit_byte(LGREATER_OP);
1988 acpigen_emit_byte(LOCAL0_OP);
1989 acpigen_write_integer(length);
1990
1991 /* Return(Buffer(Local1){0}) */
1992 acpigen_emit_byte(RETURN_OP);
1993 acpigen_emit_byte(BUFFER_OP);
1994 acpigen_write_len_f();
1995 acpigen_emit_byte(LOCAL1_OP);
1996 acpigen_emit_byte(0);
1997 acpigen_pop_len();
1998
1999 /* Pop if */
2000 acpigen_pop_len();
2001
2002 /* If (LGreater (Local0, length - 4096)) */
2003 acpigen_write_if();
2004 acpigen_emit_byte(LGREATER_OP);
2005 acpigen_emit_byte(LOCAL0_OP);
2006 acpigen_write_integer(length - 4096);
2007
2008 /* Subtract (length, Local0, Local2) */
2009 acpigen_emit_byte(SUBTRACT_OP);
2010 acpigen_write_integer(length);
2011 acpigen_emit_byte(LOCAL0_OP);
2012 acpigen_emit_byte(LOCAL2_OP);
2013
2014 /* If (LGreater (Local1, Local2)) */
2015 acpigen_write_if();
2016 acpigen_emit_byte(LGREATER_OP);
2017 acpigen_emit_byte(LOCAL1_OP);
2018 acpigen_emit_byte(LOCAL2_OP);
2019
2020 /* Store (Local2, Local1) */
2021 acpigen_write_store();
2022 acpigen_emit_byte(LOCAL2_OP);
2023 acpigen_emit_byte(LOCAL1_OP);
2024
2025 /* Pop if */
2026 acpigen_pop_len();
2027
2028 /* Pop if */
2029 acpigen_pop_len();
2030
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002031 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002032 acpigen_write_name("ROM1");
2033 acpigen_emit_byte(BUFFER_OP);
2034 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02002035 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02002036 acpigen_emit_byte(0);
2037 acpigen_pop_len();
2038
2039 /* Multiply (Local1, 0x08, Local1) */
2040 acpigen_emit_byte(MULTIPLY_OP);
2041 acpigen_emit_byte(LOCAL1_OP);
2042 acpigen_write_integer(0x08);
2043 acpigen_emit_byte(LOCAL1_OP);
2044
2045 /* Multiply (Local0, 0x08, Local0) */
2046 acpigen_emit_byte(MULTIPLY_OP);
2047 acpigen_emit_byte(LOCAL0_OP);
2048 acpigen_write_integer(0x08);
2049 acpigen_emit_byte(LOCAL0_OP);
2050
2051 /* CreateField (RBF0, Local0, Local1, TMPB) */
2052 acpigen_emit_ext_op(CREATEFIELD_OP);
2053 acpigen_emit_namestring("RBF0");
2054 acpigen_emit_byte(LOCAL0_OP);
2055 acpigen_emit_byte(LOCAL1_OP);
2056 acpigen_emit_namestring("TMPB");
2057
2058 /* Store (TMPB, ROM1) */
2059 acpigen_write_store();
2060 acpigen_emit_namestring("TMPB");
2061 acpigen_emit_namestring("ROM1");
2062
2063 /* Return (ROM1) */
2064 acpigen_emit_byte(RETURN_OP);
2065 acpigen_emit_namestring("ROM1");
2066
2067 /* Pop method */
2068 acpigen_pop_len();
2069}
2070
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002071/*
2072 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
2073 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
2074 * make callbacks into SoC acpigen code.
2075 *
2076 * Returns 0 on success and -1 on error.
2077 */
Duncan Laurie30c3f912020-10-09 04:48:53 +00002078int acpigen_enable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002079{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002080 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002081 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002082 else
2083 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002084}
2085
Duncan Laurie30c3f912020-10-09 04:48:53 +00002086int acpigen_disable_tx_gpio(const struct acpi_gpio *gpio)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002087{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002088 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08002089 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
2090 else
2091 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
2092}
Jonathan Zhang71299c22020-01-27 11:38:57 -08002093
Duncan Laurie30c3f912020-10-09 04:48:53 +00002094void acpigen_get_rx_gpio(const struct acpi_gpio *gpio)
Rajat Jain310623b2020-02-26 11:02:53 -08002095{
2096 acpigen_soc_read_rx_gpio(gpio->pins[0]);
2097
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002098 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08002099 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2100}
2101
Duncan Laurie30c3f912020-10-09 04:48:53 +00002102void acpigen_get_tx_gpio(const struct acpi_gpio *gpio)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002103{
2104 acpigen_soc_get_tx_gpio(gpio->pins[0]);
2105
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07002106 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07002107 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
2108}
2109
Jonathan Zhang71299c22020-01-27 11:38:57 -08002110/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002111void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran, u16 range_min,
2112 u16 range_max, u16 translation, u16 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002113{
2114 acpigen_emit_byte(0x88);
2115 /* Byte 1+2: length (0x000d) */
2116 acpigen_emit_byte(0x0d);
2117 acpigen_emit_byte(0x00);
2118 /* resource type */
2119 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2120 /* general flags */
2121 acpigen_emit_byte(gen_flags);
2122 /* type flags */
2123 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2124 acpigen_emit_byte(type_flags);
2125 /* granularity, min, max, translation, length */
2126 acpigen_emit_word(gran);
2127 acpigen_emit_word(range_min);
2128 acpigen_emit_word(range_max);
2129 acpigen_emit_word(translation);
2130 acpigen_emit_word(length);
2131}
2132
2133/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002134void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags, u32 gran,
2135 u32 range_min, u32 range_max, u32 translation, u32 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002136{
2137 acpigen_emit_byte(0x87);
2138 /* Byte 1+2: length (0023) */
2139 acpigen_emit_byte(23);
2140 acpigen_emit_byte(0x00);
2141 /* resource type */
2142 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2143 /* general flags */
2144 acpigen_emit_byte(gen_flags);
2145 /* type flags */
2146 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2147 acpigen_emit_byte(type_flags);
2148 /* granularity, min, max, translation, length */
2149 acpigen_emit_dword(gran);
2150 acpigen_emit_dword(range_min);
2151 acpigen_emit_dword(range_max);
2152 acpigen_emit_dword(translation);
2153 acpigen_emit_dword(length);
2154}
2155
2156static void acpigen_emit_qword(u64 data)
2157{
2158 acpigen_emit_dword(data & 0xffffffff);
2159 acpigen_emit_dword((data >> 32) & 0xffffffff);
2160}
2161
2162/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
Elyes Haouas1f5e1b42022-02-17 17:44:07 +01002163void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags, u64 gran,
2164 u64 range_min, u64 range_max, u64 translation, u64 length)
Jonathan Zhang71299c22020-01-27 11:38:57 -08002165{
2166 acpigen_emit_byte(0x8a);
2167 /* Byte 1+2: length (0x002b) */
2168 acpigen_emit_byte(0x2b);
2169 acpigen_emit_byte(0x00);
2170 /* resource type */
2171 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
2172 /* general flags */
2173 acpigen_emit_byte(gen_flags);
2174 /* type flags */
2175 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
2176 acpigen_emit_byte(type_flags);
2177 /* granularity, min, max, translation, length */
2178 acpigen_emit_qword(gran);
2179 acpigen_emit_qword(range_min);
2180 acpigen_emit_qword(range_max);
2181 acpigen_emit_qword(translation);
2182 acpigen_emit_qword(length);
2183}
Furquan Shaikh1a829232020-04-23 11:11:05 -07002184
2185void acpigen_write_ADR(uint64_t adr)
2186{
2187 acpigen_write_name_qword("_ADR", adr);
2188}
2189
Duncan Laurie08a942f2020-04-29 12:13:14 -07002190/**
2191 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
2192 * @address: SoundWire device address properties.
2193 *
2194 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
2195 *
2196 * 63..52 - Reserved (0)
2197 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
2198 * Used when a Controller has multiple master devices, each producing a
2199 * separate SoundWire Link. Set to 0 for single-link controllers.
2200 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
2201 * 47..44 - SoundWire specification version that this device supports
2202 * 43..40 - Unique ID for multiple devices
2203 * 39..24 - MIPI standard manufacturer code
2204 * 23..08 - Vendor defined part ID
2205 * 07..00 - MIPI class encoding
2206 */
2207void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
2208{
2209 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
2210 (((uint64_t)address->version & 0xf) << 44) |
2211 (((uint64_t)address->unique_id & 0xf) << 40) |
2212 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
2213 (((uint64_t)address->part_id & 0xffff) << 8) |
2214 (((uint64_t)address->class & 0xff)));
2215}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06002216
2217void acpigen_notify(const char *namestr, int value)
2218{
2219 acpigen_emit_byte(NOTIFY_OP);
2220 acpigen_emit_namestring(namestr);
2221 acpigen_write_integer(value);
2222}
Aaron Durbin80bc0912020-08-19 23:17:42 -06002223
2224static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
2225{
2226 acpigen_emit_byte(aml_op);
2227 acpigen_emit_byte(srcop);
2228 acpigen_write_integer(byte_offset);
2229 acpigen_emit_namestring(name);
2230}
2231
2232void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2233{
2234 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2235}
2236
2237void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2238{
2239 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2240}
2241
2242void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2243{
2244 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2245}
2246
2247void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2248{
2249 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2250}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002251
2252void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2253{
2254 acpigen_write_name("_PCT");
2255 acpigen_write_package(0x02);
2256 acpigen_write_register_resource(perf_ctrl);
2257 acpigen_write_register_resource(perf_sts);
2258
2259 acpigen_pop_len();
2260}
2261
2262void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2263{
2264 acpigen_write_package(0x08);
2265 acpigen_write_dword(pstate_value->core_freq);
2266 acpigen_write_dword(pstate_value->power);
2267 acpigen_write_dword(pstate_value->transition_latency);
2268 acpigen_write_dword(pstate_value->bus_master_latency);
2269
2270 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2271 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2272 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2273 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2274
2275 acpigen_pop_len();
2276}
2277
2278void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2279{
2280 size_t pstate;
2281
2282 acpigen_write_name("XPSS");
2283 acpigen_write_package(nentries);
2284 for (pstate = 0; pstate < nentries; pstate++) {
2285 acpigen_write_xpss_package(pstate_values);
2286 pstate_values++;
2287 }
2288
2289 acpigen_pop_len();
2290}
Duncan Laurieec2e3e42020-11-03 15:19:08 -08002291
2292/* Delay up to wait_ms until provided namestr matches expected value. */
2293void acpigen_write_delay_until_namestr_int(uint32_t wait_ms, const char *name, uint64_t value)
2294{
2295 uint32_t wait_ms_segment = 1;
2296 uint32_t segments = wait_ms;
2297
2298 /* Sleep in 16ms segments if delay is more than 32ms. */
2299 if (wait_ms > 32) {
2300 wait_ms_segment = 16;
2301 segments = wait_ms / 16;
2302 }
2303
2304 acpigen_write_store_int_to_op(segments, LOCAL7_OP);
2305 acpigen_emit_byte(WHILE_OP);
2306 acpigen_write_len_f();
2307 acpigen_emit_byte(LGREATER_OP);
2308 acpigen_emit_byte(LOCAL7_OP);
2309 acpigen_emit_byte(ZERO_OP);
2310
2311 /* If name is not provided then just delay in a loop. */
2312 if (name) {
2313 acpigen_write_if_lequal_namestr_int(name, value);
2314 acpigen_emit_byte(BREAK_OP);
2315 acpigen_pop_len(); /* If */
2316 }
2317
2318 acpigen_write_sleep(wait_ms_segment);
2319 acpigen_emit_byte(DECREMENT_OP);
2320 acpigen_emit_byte(LOCAL7_OP);
2321 acpigen_pop_len(); /* While */
2322}