blob: 5b45ebd3a82db59cd50d9c20a4a5479b5be4b0ff [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>
Rudolf Marek293b5f52009-02-01 18:35:15 +000017#include <console/console.h>
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +000018#include <device/device.h>
Furquan Shaikh1a829232020-04-23 11:11:05 -070019#include <device/pci_def.h>
20#include <device/pci_type.h>
Duncan Laurie08a942f2020-04-29 12:13:14 -070021#include <device/soundwire.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
152void acpigen_write_name_zero(const char *name)
153{
154 acpigen_write_name(name);
155 acpigen_write_one();
156}
157
158void acpigen_write_name_one(const char *name)
159{
160 acpigen_write_name(name);
161 acpigen_write_zero();
162}
163
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100164void acpigen_write_name_byte(const char *name, uint8_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_byte(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000168}
169
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100170void acpigen_write_name_dword(const char *name, uint32_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000171{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100172 acpigen_write_name(name);
173 acpigen_write_dword(val);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000174}
175
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100176void acpigen_write_name_qword(const char *name, uint64_t val)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000177{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100178 acpigen_write_name(name);
179 acpigen_write_qword(val);
Carl-Daniel Hailfingerd58671c2009-02-17 21:38:51 +0000180}
181
Duncan Laurief7c38762016-05-09 08:20:38 -0700182void acpigen_write_name_integer(const char *name, uint64_t val)
183{
184 acpigen_write_name(name);
185 acpigen_write_integer(val);
186}
187
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700188void acpigen_write_name_string(const char *name, const char *string)
189{
190 acpigen_write_name(name);
191 acpigen_write_string(string);
192}
193
Patrick Rudolph389c8272019-12-17 13:54:41 +0100194void acpigen_write_name_unicode(const char *name, const char *string)
195{
196 const size_t len = strlen(string) + 1;
197 acpigen_write_name(name);
198 acpigen_emit_byte(BUFFER_OP);
199 acpigen_write_len_f();
200 acpigen_write_integer(len);
201 for (size_t i = 0; i < len; i++) {
202 const char c = string[i];
203 /* Simple ASCII to UTF-16 conversion, replace non ASCII characters */
204 acpigen_emit_word(c >= 0 ? c : '?');
205 }
206 acpigen_pop_len();
207}
208
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100209void acpigen_emit_stream(const char *data, int size)
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000210{
Rudolf Marek293b5f52009-02-01 18:35:15 +0000211 int i;
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700212 for (i = 0; i < size; i++)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000213 acpigen_emit_byte(data[i]);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000214}
215
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700216void acpigen_emit_string(const char *string)
217{
Jonathan Neuschäfer0ba307f2016-05-17 17:40:09 +0200218 acpigen_emit_stream(string, string ? strlen(string) : 0);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700219 acpigen_emit_byte('\0'); /* NUL */
220}
221
222void acpigen_write_string(const char *string)
223{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700224 acpigen_emit_byte(STRING_PREFIX);
Duncan Laurie56b69aa2016-05-09 08:17:02 -0700225 acpigen_emit_string(string);
226}
227
Duncan Laurie37319032016-05-26 12:47:05 -0700228void acpigen_write_coreboot_hid(enum coreboot_acpi_ids id)
229{
Joel Kitching3ab36b842018-03-08 12:09:32 +0800230 char hid[9]; /* BOOTxxxx */
Duncan Laurie37319032016-05-26 12:47:05 -0700231
Duncan Laurie02fdb3e2016-09-22 14:08:33 -0700232 snprintf(hid, sizeof(hid), "%.4s%04X", COREBOOT_ACPI_ID, id);
Duncan Laurie37319032016-05-26 12:47:05 -0700233 acpigen_write_name_string("_HID", hid);
234}
235
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100236/*
237 * The naming conventions for ACPI namespace names are a bit tricky as
Martin Roth0cd338e2016-07-29 14:07:30 -0600238 * each element has to be 4 chars wide ("All names are a fixed 32 bits.")
239 * and "By convention, when an ASL compiler pads a name shorter than 4
240 * characters, it is done so with trailing underscores ('_')".
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100241 *
242 * Check sections 5.3, 18.2.2 and 18.4 of ACPI spec 3.0 for details.
243 */
Rudolf Marek3310d752009-06-21 20:26:13 +0000244
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700245static void acpigen_emit_simple_namestring(const char *name)
246{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100247 int i;
Rudolf Marek3310d752009-06-21 20:26:13 +0000248 char ud[] = "____";
249 for (i = 0; i < 4; i++) {
250 if ((name[i] == '\0') || (name[i] == '.')) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100251 acpigen_emit_stream(ud, 4 - i);
Rudolf Marek3310d752009-06-21 20:26:13 +0000252 break;
Rudolf Marek3310d752009-06-21 20:26:13 +0000253 }
Lee Leahy0b5678f2017-03-16 16:01:40 -0700254 acpigen_emit_byte(name[i]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000255 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000256}
257
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700258static void acpigen_emit_double_namestring(const char *name, int dotpos)
259{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700260 acpigen_emit_byte(DUAL_NAME_PREFIX);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100261 acpigen_emit_simple_namestring(name);
262 acpigen_emit_simple_namestring(&name[dotpos + 1]);
Rudolf Marek3310d752009-06-21 20:26:13 +0000263}
264
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700265static void acpigen_emit_multi_namestring(const char *name)
266{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100267 int count = 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000268 unsigned char *pathlen;
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700269 acpigen_emit_byte(MULTI_NAME_PREFIX);
270 acpigen_emit_byte(ZERO_OP);
Rudolf Marek3310d752009-06-21 20:26:13 +0000271 pathlen = ((unsigned char *) acpigen_get_current()) - 1;
272
273 while (name[0] != '\0') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100274 acpigen_emit_simple_namestring(name);
Rudolf Marek3310d752009-06-21 20:26:13 +0000275 /* find end or next entity */
276 while ((name[0] != '.') && (name[0] != '\0'))
277 name++;
278 /* forward to next */
279 if (name[0] == '.')
280 name++;
281 count++;
282 }
283
284 pathlen[0] = count;
Rudolf Marek3310d752009-06-21 20:26:13 +0000285}
286
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700287void acpigen_emit_namestring(const char *namepath)
288{
Rudolf Marek3310d752009-06-21 20:26:13 +0000289 int dotcount = 0, i;
Myles Watson3fe6b702009-10-09 20:13:43 +0000290 int dotpos = 0;
Rudolf Marek3310d752009-06-21 20:26:13 +0000291
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600292 /* We can start with a '\'. */
Rudolf Marek3310d752009-06-21 20:26:13 +0000293 if (namepath[0] == '\\') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100294 acpigen_emit_byte('\\');
Rudolf Marek3310d752009-06-21 20:26:13 +0000295 namepath++;
296 }
297
Ronald G. Minnichbe738eb2013-03-07 11:05:28 -0600298 /* And there can be any number of '^' */
Rudolf Marek3310d752009-06-21 20:26:13 +0000299 while (namepath[0] == '^') {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100300 acpigen_emit_byte('^');
Rudolf Marek3310d752009-06-21 20:26:13 +0000301 namepath++;
302 }
303
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200304 /* If we have only \\ or only ^...^. Then we need to put a null
305 name (0x00). */
Elyes HAOUASdbf30672016-08-21 17:37:15 +0200306 if (namepath[0] == '\0') {
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700307 acpigen_emit_byte(ZERO_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100308 return;
Vladimir Serbinenkod942ed92014-08-30 20:44:37 +0200309 }
Rudolf Marek3310d752009-06-21 20:26:13 +0000310
311 i = 0;
312 while (namepath[i] != '\0') {
313 if (namepath[i] == '.') {
314 dotcount++;
315 dotpos = i;
316 }
317 i++;
318 }
319
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700320 if (dotcount == 0)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100321 acpigen_emit_simple_namestring(namepath);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700322 else if (dotcount == 1)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100323 acpigen_emit_double_namestring(namepath, dotpos);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700324 else
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100325 acpigen_emit_multi_namestring(namepath);
Rudolf Marek3310d752009-06-21 20:26:13 +0000326}
327
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100328void acpigen_write_name(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000329{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700330 acpigen_emit_byte(NAME_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100331 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000332}
333
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100334void acpigen_write_scope(const char *name)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000335{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700336 acpigen_emit_byte(SCOPE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100337 acpigen_write_len_f();
338 acpigen_emit_namestring(name);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000339}
Rudolf Marekf997b552009-02-14 15:40:23 +0000340
Duncan Laurie2fe74712020-06-01 17:36:56 -0700341void acpigen_get_package_op_element(uint8_t package_op, unsigned int element, uint8_t dest_op)
342{
343 /* <dest_op> = DeRefOf (<package_op>[<element]) */
344 acpigen_write_store();
345 acpigen_emit_byte(DEREF_OP);
346 acpigen_emit_byte(INDEX_OP);
347 acpigen_emit_byte(package_op);
348 acpigen_write_integer(element);
349 acpigen_emit_byte(ZERO_OP); /* Ignore Index() Destination */
350 acpigen_emit_byte(dest_op);
351}
352
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100353void acpigen_write_processor(u8 cpuindex, u32 pblock_addr, u8 pblock_len)
Rudolf Marekf997b552009-02-14 15:40:23 +0000354{
355/*
Christian Walterbe3979c2019-12-18 15:07:59 +0100356 Processor (\_SB.CPcpuindex, cpuindex, pblock_addr, pblock_len)
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200357 {
Rudolf Marekf997b552009-02-14 15:40:23 +0000358*/
359 char pscope[16];
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700360 acpigen_emit_ext_op(PROCESSOR_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100361 acpigen_write_len_f();
Rudolf Marekf997b552009-02-14 15:40:23 +0000362
Elyes HAOUAS7d87e762016-10-03 22:11:07 +0200363 snprintf(pscope, sizeof(pscope),
Marc Jones7a2d4ea2017-08-25 18:54:23 -0600364 CONFIG_ACPI_CPU_STRING, (unsigned int) cpuindex);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100365 acpigen_emit_namestring(pscope);
Rudolf Marekf997b552009-02-14 15:40:23 +0000366 acpigen_emit_byte(cpuindex);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700367 acpigen_emit_dword(pblock_addr);
Rudolf Marekf997b552009-02-14 15:40:23 +0000368 acpigen_emit_byte(pblock_len);
Rudolf Marekf997b552009-02-14 15:40:23 +0000369}
370
Nico Huber4d211ac2017-09-01 21:14:36 +0200371void acpigen_write_processor_package(const char *const name,
372 const unsigned int first_core,
373 const unsigned int core_count)
374{
375 unsigned int i;
376 char pscope[16];
377
378 acpigen_write_name(name);
379 acpigen_write_package(core_count);
380 for (i = first_core; i < first_core + core_count; ++i) {
381 snprintf(pscope, sizeof(pscope), CONFIG_ACPI_CPU_STRING, i);
382 acpigen_emit_namestring(pscope);
383 }
384 acpigen_pop_len();
385}
386
Arthur Heymans8f055272018-11-28 13:18:57 +0100387/* Method to notify all CPU cores */
388void acpigen_write_processor_cnot(const unsigned int number_of_cores)
389{
390 int core_id;
391
Christian Walterbe3979c2019-12-18 15:07:59 +0100392 acpigen_write_method("\\_SB.CNOT", 1);
Arthur Heymans8f055272018-11-28 13:18:57 +0100393 for (core_id = 0; core_id < number_of_cores; core_id++) {
394 char buffer[DEVICE_PATH_MAX];
395 snprintf(buffer, sizeof(buffer), CONFIG_ACPI_CPU_STRING,
396 core_id);
397 acpigen_emit_byte(NOTIFY_OP);
398 acpigen_emit_namestring(buffer);
399 acpigen_emit_byte(ARG0_OP);
400 }
401 acpigen_pop_len();
402}
403
Naresh G Solanki8535c662016-10-25 00:51:24 +0530404/*
405 * Generate ACPI AML code for OperationRegion
406 * Arg0: Pointer to struct opregion opreg = OPREGION(rname, space, offset, len)
407 * where rname is region name, space is region space, offset is region offset &
408 * len is region length.
409 * OperationRegion(regionname, regionspace, regionoffset, regionlength)
410 */
411void acpigen_write_opregion(struct opregion *opreg)
412{
413 /* OpregionOp */
414 acpigen_emit_ext_op(OPREGION_OP);
415 /* NameString 4 chars only */
416 acpigen_emit_simple_namestring(opreg->name);
417 /* RegionSpace */
418 acpigen_emit_byte(opreg->regionspace);
419 /* RegionOffset & RegionLen, it can be byte word or double word */
420 acpigen_write_integer(opreg->regionoffset);
421 acpigen_write_integer(opreg->regionlen);
422}
423
Patrick Rudolph32bae492019-08-08 12:47:30 +0200424/*
425 * Generate ACPI AML code for Mutex
426 * Arg0: Pointer to name of mutex
427 * Arg1: Initial value of mutex
428 */
429void acpigen_write_mutex(const char *name, const uint8_t flags)
430{
431 /* MutexOp */
432 acpigen_emit_ext_op(MUTEX_OP);
433 /* NameString 4 chars only */
434 acpigen_emit_simple_namestring(name);
435 acpigen_emit_byte(flags);
436}
437
438void acpigen_write_acquire(const char *name, const uint16_t val)
439{
440 /* AcquireOp */
441 acpigen_emit_ext_op(ACQUIRE_OP);
442 /* NameString 4 chars only */
443 acpigen_emit_simple_namestring(name);
444 acpigen_emit_word(val);
445}
446
447void acpigen_write_release(const char *name)
448{
449 /* ReleaseOp */
450 acpigen_emit_ext_op(RELEASE_OP);
451 /* NameString 4 chars only */
452 acpigen_emit_simple_namestring(name);
453}
454
Patrick Rudolph894977b2017-07-01 16:15:05 +0200455static void acpigen_write_field_length(uint32_t len)
456{
457 uint8_t i, j;
458 uint8_t emit[4];
459
460 i = 1;
461 if (len < 0x40) {
462 emit[0] = len & 0x3F;
463 } else {
464 emit[0] = len & 0xF;
465 len >>= 4;
466 while (len) {
467 emit[i] = len & 0xFF;
468 i++;
469 len >>= 8;
470 }
471 }
472 /* Update bit 7:6 : Number of bytes followed by emit[0] */
473 emit[0] |= (i - 1) << 6;
474
475 for (j = 0; j < i; j++)
476 acpigen_emit_byte(emit[j]);
477}
478
Naresh G Solanki8535c662016-10-25 00:51:24 +0530479static void acpigen_write_field_offset(uint32_t offset,
480 uint32_t current_bit_pos)
481{
482 uint32_t diff_bits;
Naresh G Solanki8535c662016-10-25 00:51:24 +0530483
484 if (offset < current_bit_pos) {
485 printk(BIOS_WARNING, "%s: Cannot move offset backward",
486 __func__);
487 return;
488 }
489
490 diff_bits = offset - current_bit_pos;
491 /* Upper limit */
492 if (diff_bits > 0xFFFFFFF) {
493 printk(BIOS_WARNING, "%s: Offset very large to encode",
494 __func__);
495 return;
496 }
497
Naresh G Solanki8535c662016-10-25 00:51:24 +0530498 acpigen_emit_byte(0);
Patrick Rudolph894977b2017-07-01 16:15:05 +0200499 acpigen_write_field_length(diff_bits);
500}
501
502static void acpigen_write_field_name(const char *name, uint32_t size)
503{
504 acpigen_emit_simple_namestring(name);
505 acpigen_write_field_length(size);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530506}
507
508/*
509 * Generate ACPI AML code for Field
510 * Arg0: region name
511 * Arg1: Pointer to struct fieldlist.
512 * Arg2: no. of entries in Arg1
513 * Arg3: flags which indicate filed access type, lock rule & update rule.
514 * Example with fieldlist
515 * struct fieldlist l[] = {
516 * FIELDLIST_OFFSET(0x84),
517 * FIELDLIST_NAMESTR("PMCS", 2),
518 * };
Elyes HAOUASa342f392018-10-17 10:56:26 +0200519 * acpigen_write_field("UART", l, ARRAY_SIZE(l), FIELD_ANYACC | FIELD_NOLOCK |
Naresh G Solanki8535c662016-10-25 00:51:24 +0530520 * FIELD_PRESERVE);
521 * Output:
522 * Field (UART, AnyAcc, NoLock, Preserve)
523 * {
524 * Offset (0x84),
525 * PMCS, 2
526 * }
527 */
Furquan Shaikhf9392992020-04-27 23:18:12 -0700528void acpigen_write_field(const char *name, const struct fieldlist *l, size_t count,
Naresh G Solanki8535c662016-10-25 00:51:24 +0530529 uint8_t flags)
530{
531 uint16_t i;
532 uint32_t current_bit_pos = 0;
533
534 /* FieldOp */
535 acpigen_emit_ext_op(FIELD_OP);
536 /* Package Length */
537 acpigen_write_len_f();
538 /* NameString 4 chars only */
539 acpigen_emit_simple_namestring(name);
540 /* Field Flag */
541 acpigen_emit_byte(flags);
542
543 for (i = 0; i < count; i++) {
544 switch (l[i].type) {
545 case NAME_STRING:
Patrick Rudolph894977b2017-07-01 16:15:05 +0200546 acpigen_write_field_name(l[i].name, l[i].bits);
Naresh G Solanki8535c662016-10-25 00:51:24 +0530547 current_bit_pos += l[i].bits;
548 break;
549 case OFFSET:
550 acpigen_write_field_offset(l[i].bits, current_bit_pos);
551 current_bit_pos = l[i].bits;
552 break;
553 default:
554 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
555 , __func__, l[i].type);
556 break;
557 }
558 }
559 acpigen_pop_len();
560}
561
Patrick Rudolph34846ad2019-05-22 11:59:23 +0200562/*
563 * Generate ACPI AML code for IndexField
564 * Arg0: region name
565 * Arg1: Pointer to struct fieldlist.
566 * Arg2: no. of entries in Arg1
567 * Arg3: flags which indicate filed access type, lock rule & update rule.
568 * Example with fieldlist
569 * struct fieldlist l[] = {
570 * FIELDLIST_OFFSET(0x84),
571 * FIELDLIST_NAMESTR("PMCS", 2),
572 * };
573 * acpigen_write_field("IDX", "DATA" l, ARRAY_SIZE(l), FIELD_ANYACC |
574 * FIELD_NOLOCK |
575 * FIELD_PRESERVE);
576 * Output:
577 * IndexField (IDX, DATA, AnyAcc, NoLock, Preserve)
578 * {
579 * Offset (0x84),
580 * PMCS, 2
581 * }
582 */
583void acpigen_write_indexfield(const char *idx, const char *data,
584 struct fieldlist *l, size_t count, uint8_t flags)
585{
586 uint16_t i;
587 uint32_t current_bit_pos = 0;
588
589 /* FieldOp */
590 acpigen_emit_ext_op(INDEX_FIELD_OP);
591 /* Package Length */
592 acpigen_write_len_f();
593 /* NameString 4 chars only */
594 acpigen_emit_simple_namestring(idx);
595 /* NameString 4 chars only */
596 acpigen_emit_simple_namestring(data);
597 /* Field Flag */
598 acpigen_emit_byte(flags);
599
600 for (i = 0; i < count; i++) {
601 switch (l[i].type) {
602 case NAME_STRING:
603 acpigen_write_field_name(l[i].name, l[i].bits);
604 current_bit_pos += l[i].bits;
605 break;
606 case OFFSET:
607 acpigen_write_field_offset(l[i].bits, current_bit_pos);
608 current_bit_pos = l[i].bits;
609 break;
610 default:
611 printk(BIOS_ERR, "%s: Invalid field type 0x%X\n"
612 , __func__, l[i].type);
613 break;
614 }
615 }
616 acpigen_pop_len();
617}
618
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100619void acpigen_write_empty_PCT(void)
Rudolf Marekf997b552009-02-14 15:40:23 +0000620{
621/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200622 Name (_PCT, Package (0x02)
623 {
624 ResourceTemplate ()
625 {
626 Register (FFixedHW,
627 0x00, // Bit Width
628 0x00, // Bit Offset
629 0x0000000000000000, // Address
630 ,)
631 },
Rudolf Marekf997b552009-02-14 15:40:23 +0000632
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200633 ResourceTemplate ()
634 {
635 Register (FFixedHW,
636 0x00, // Bit Width
637 0x00, // Bit Offset
638 0x0000000000000000, // Address
639 ,)
640 }
641 })
Rudolf Marekf997b552009-02-14 15:40:23 +0000642*/
643 static char stream[] = {
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700644 /* 00000030 "0._PCT.," */
645 0x08, 0x5F, 0x50, 0x43, 0x54, 0x12, 0x2C,
646 /* 00000038 "........" */
647 0x02, 0x11, 0x14, 0x0A, 0x11, 0x82, 0x0C, 0x00,
648 /* 00000040 "........" */
649 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
650 /* 00000048 "....y..." */
651 0x00, 0x00, 0x00, 0x00, 0x79, 0x00, 0x11, 0x14,
652 /* 00000050 "........" */
653 0x0A, 0x11, 0x82, 0x0C, 0x00, 0x7F, 0x00, 0x00,
654 /* 00000058 "........" */
655 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Rudolf Marekf997b552009-02-14 15:40:23 +0000656 0x00, 0x79, 0x00
657 };
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100658 acpigen_emit_stream(stream, ARRAY_SIZE(stream));
Rudolf Marekf997b552009-02-14 15:40:23 +0000659}
660
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100661void acpigen_write_empty_PTC(void)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200662{
663/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200664 Name (_PTC, Package (0x02)
665 {
666 ResourceTemplate ()
667 {
668 Register (FFixedHW,
669 0x00, // Bit Width
670 0x00, // Bit Offset
671 0x0000000000000000, // Address
672 ,)
673 },
Stefan Reinauer39205c62012-04-27 21:49:28 +0200674
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200675 ResourceTemplate ()
676 {
677 Register (FFixedHW,
678 0x00, // Bit Width
679 0x00, // Bit Offset
680 0x0000000000000000, // Address
681 ,)
682 }
683 })
Stefan Reinauer39205c62012-04-27 21:49:28 +0200684*/
Stefan Reinauer39205c62012-04-27 21:49:28 +0200685 acpi_addr_t addr = {
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100686 .space_id = ACPI_ADDRESS_SPACE_FIXED,
687 .bit_width = 0,
688 .bit_offset = 0,
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +0200689 .access_size = ACPI_ACCESS_SIZE_UNDEFINED,
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100690 .addrl = 0,
691 .addrh = 0,
Stefan Reinauer39205c62012-04-27 21:49:28 +0200692 };
693
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100694 acpigen_write_name("_PTC");
695 acpigen_write_package(2);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200696
697 /* ControlRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700698 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200699
700 /* StatusRegister */
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700701 acpigen_write_register_resource(&addr);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200702
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100703 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200704}
705
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700706static void __acpigen_write_method(const char *name, uint8_t flags)
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100707{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700708 acpigen_emit_byte(METHOD_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100709 acpigen_write_len_f();
710 acpigen_emit_namestring(name);
Furquan Shaikhfcc7a042016-10-20 23:12:38 -0700711 acpigen_emit_byte(flags);
712}
713
714/* Method (name, nargs, NotSerialized) */
715void acpigen_write_method(const char *name, int nargs)
716{
717 __acpigen_write_method(name, (nargs & 7));
718}
719
720/* Method (name, nargs, Serialized) */
721void acpigen_write_method_serialized(const char *name, int nargs)
722{
723 __acpigen_write_method(name, (nargs & 7) | (1 << 3));
Vladimir Serbinenko80fb8ed2014-11-05 10:28:28 +0100724}
725
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100726void acpigen_write_device(const char *name)
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100727{
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700728 acpigen_emit_ext_op(DEVICE_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100729 acpigen_write_len_f();
730 acpigen_emit_namestring(name);
Vladimir Serbinenko663be6e2014-11-05 21:29:45 +0100731}
732
Duncan Laurieabe2de82016-05-09 11:08:46 -0700733void acpigen_write_STA(uint8_t status)
734{
735 /*
736 * Method (_STA, 0, NotSerialized) { Return (status) }
737 */
738 acpigen_write_method("_STA", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700739 acpigen_emit_byte(RETURN_OP);
Duncan Laurieabe2de82016-05-09 11:08:46 -0700740 acpigen_write_byte(status);
741 acpigen_pop_len();
742}
743
Sugnan Prabhu S4f77f612020-06-10 09:51:02 +0530744void acpigen_write_STA_ext(const char *namestring)
745{
746 /*
747 * Method (_STA, 0, NotSerialized) { Return (ext_val) }
748 */
749 acpigen_write_method("_STA", 0);
750 acpigen_emit_byte(RETURN_OP);
751 acpigen_emit_namestring(namestring);
752 acpigen_pop_len();
753}
754
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100755/*
756 * Generates a func with max supported P-states.
757 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100758void acpigen_write_PPC(u8 nr)
Rudolf Marekf997b552009-02-14 15:40:23 +0000759{
760/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200761 Method (_PPC, 0, NotSerialized)
762 {
763 Return (nr)
764 }
Rudolf Marekf997b552009-02-14 15:40:23 +0000765*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100766 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700767 acpigen_emit_byte(RETURN_OP);
Rudolf Marekf997b552009-02-14 15:40:23 +0000768 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100769 acpigen_write_byte(nr);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100770 acpigen_pop_len();
Rudolf Marekf997b552009-02-14 15:40:23 +0000771}
772
Paul Menzel0f4c0e22013-02-22 12:33:08 +0100773/*
774 * Generates a func with max supported P-states saved
775 * in the variable PPCM.
776 */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100777void acpigen_write_PPC_NVS(void)
Duncan Laurie0eefa002012-07-16 12:11:53 -0700778{
779/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200780 Method (_PPC, 0, NotSerialized)
781 {
782 Return (PPCM)
783 }
Duncan Laurie0eefa002012-07-16 12:11:53 -0700784*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100785 acpigen_write_method("_PPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700786 acpigen_emit_byte(RETURN_OP);
Duncan Laurie0eefa002012-07-16 12:11:53 -0700787 /* arg */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100788 acpigen_emit_namestring("PPCM");
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100789 acpigen_pop_len();
Duncan Laurie0eefa002012-07-16 12:11:53 -0700790}
791
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100792void acpigen_write_TPC(const char *gnvs_tpc_limit)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200793{
794/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200795 // Sample _TPC method
796 Method (_TPC, 0, NotSerialized)
797 {
798 Return (\TLVL)
799 }
800*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100801 acpigen_write_method("_TPC", 0);
Furquan Shaikhe4e9b942016-10-20 23:09:05 -0700802 acpigen_emit_byte(RETURN_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100803 acpigen_emit_namestring(gnvs_tpc_limit);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100804 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200805}
806
Duncan Laurieabe2de82016-05-09 11:08:46 -0700807void acpigen_write_PRW(u32 wake, u32 level)
808{
809 /*
810 * Name (_PRW, Package () { wake, level }
811 */
812 acpigen_write_name("_PRW");
813 acpigen_write_package(2);
814 acpigen_write_integer(wake);
815 acpigen_write_integer(level);
816 acpigen_pop_len();
817}
818
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100819void acpigen_write_PSS_package(u32 coreFreq, u32 power, u32 transLat,
Stefan Reinauerf96c2d92009-04-22 16:23:47 +0000820 u32 busmLat, u32 control, u32 status)
Rudolf Marekf997b552009-02-14 15:40:23 +0000821{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100822 acpigen_write_package(6);
823 acpigen_write_dword(coreFreq);
824 acpigen_write_dword(power);
825 acpigen_write_dword(transLat);
826 acpigen_write_dword(busmLat);
827 acpigen_write_dword(control);
828 acpigen_write_dword(status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100829 acpigen_pop_len();
Stefan Reinauerd4bacf92012-05-02 16:38:47 -0700830
831 printk(BIOS_DEBUG, "PSS: %uMHz power %u control 0x%x status 0x%x\n",
832 coreFreq, power, control, status);
Rudolf Marekf997b552009-02-14 15:40:23 +0000833}
Patrick Georgidf444bf2009-04-21 20:34:36 +0000834
Jason Gleneskca36aed2020-09-15 21:01:57 -0700835void acpigen_write_pss_object(const struct acpi_sw_pstate *pstate_values, size_t nentries)
836{
837 size_t pstate;
838
839 acpigen_write_name("_PSS");
840 acpigen_write_package(nentries);
841 for (pstate = 0; pstate < nentries; pstate++) {
842 acpigen_write_PSS_package(
843 pstate_values->core_freq, pstate_values->power,
844 pstate_values->transition_latency, pstate_values->bus_master_latency,
845 pstate_values->control_value, pstate_values->status_value);
846 pstate_values++;
847 }
848
849 acpigen_pop_len();
850}
851
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100852void acpigen_write_PSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Patrick Georgidf444bf2009-04-21 20:34:36 +0000853{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100854 acpigen_write_name("_PSD");
855 acpigen_write_package(1);
856 acpigen_write_package(5);
857 acpigen_write_byte(5); // 5 values
858 acpigen_write_byte(0); // revision 0
859 acpigen_write_dword(domain);
860 acpigen_write_dword(coordtype);
861 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100862 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100863 acpigen_pop_len();
Patrick Georgidf444bf2009-04-21 20:34:36 +0000864}
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000865
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100866void acpigen_write_CST_package_entry(acpi_cstate_t *cstate)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200867{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100868 acpigen_write_package(4);
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700869 acpigen_write_register_resource(&cstate->resource);
Jason Glenesk201acca2020-09-11 12:36:15 -0700870 acpigen_write_byte(cstate->ctype);
871 acpigen_write_word(cstate->latency);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100872 acpigen_write_dword(cstate->power);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100873 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200874}
875
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100876void acpigen_write_CST_package(acpi_cstate_t *cstate, int nentries)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200877{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100878 int i;
879 acpigen_write_name("_CST");
880 acpigen_write_package(nentries+1);
Jason Glenesk201acca2020-09-11 12:36:15 -0700881 acpigen_write_integer(nentries);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200882
883 for (i = 0; i < nentries; i++)
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100884 acpigen_write_CST_package_entry(cstate + i);
Sven Schnelle0b86c762011-10-21 21:46:47 +0200885
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100886 acpigen_pop_len();
Sven Schnelle0b86c762011-10-21 21:46:47 +0200887}
888
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700889void acpigen_write_CSD_package(u32 domain, u32 numprocs, CSD_coord coordtype,
890 u32 index)
Timothy Pearson83abd812015-06-08 19:35:06 -0500891{
892 acpigen_write_name("_CSD");
893 acpigen_write_package(1);
894 acpigen_write_package(6);
Jason Glenesk201acca2020-09-11 12:36:15 -0700895 acpigen_write_integer(6); // 6 values
Timothy Pearson83abd812015-06-08 19:35:06 -0500896 acpigen_write_byte(0); // revision 0
897 acpigen_write_dword(domain);
898 acpigen_write_dword(coordtype);
899 acpigen_write_dword(numprocs);
900 acpigen_write_dword(index);
901 acpigen_pop_len();
902 acpigen_pop_len();
903}
904
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100905void acpigen_write_TSS_package(int entries, acpi_tstate_t *tstate_list)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200906{
907/*
Elyes HAOUAS6b727872016-09-03 08:28:48 +0200908 Sample _TSS package with 100% and 50% duty cycles
909 Name (_TSS, Package (0x02)
910 {
911 Package(){100, 1000, 0, 0x00, 0)
912 Package(){50, 520, 0, 0x18, 0)
913 })
914*/
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100915 int i;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200916 acpi_tstate_t *tstate = tstate_list;
917
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100918 acpigen_write_name("_TSS");
919 acpigen_write_package(entries);
Stefan Reinauer39205c62012-04-27 21:49:28 +0200920
921 for (i = 0; i < entries; i++) {
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100922 acpigen_write_package(5);
923 acpigen_write_dword(tstate->percent);
924 acpigen_write_dword(tstate->power);
925 acpigen_write_dword(tstate->latency);
926 acpigen_write_dword(tstate->control);
927 acpigen_write_dword(tstate->status);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100928 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200929 tstate++;
Stefan Reinauer39205c62012-04-27 21:49:28 +0200930 }
931
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100932 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200933}
934
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100935void acpigen_write_TSD_package(u32 domain, u32 numprocs, PSD_coord coordtype)
Stefan Reinauer39205c62012-04-27 21:49:28 +0200936{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100937 acpigen_write_name("_TSD");
938 acpigen_write_package(1);
939 acpigen_write_package(5);
940 acpigen_write_byte(5); // 5 values
941 acpigen_write_byte(0); // revision 0
942 acpigen_write_dword(domain);
943 acpigen_write_dword(coordtype);
944 acpigen_write_dword(numprocs);
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100945 acpigen_pop_len();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +0100946 acpigen_pop_len();
Stefan Reinauer39205c62012-04-27 21:49:28 +0200947}
948
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100949void acpigen_write_mem32fixed(int readwrite, u32 base, u32 size)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000950{
951 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200952 * ACPI 4.0 section 6.4.3.4: 32-Bit Fixed Memory Range Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000953 * Byte 0:
954 * Bit7 : 1 => big item
955 * Bit6-0: 0000110 (0x6) => 32-bit fixed memory
956 */
957 acpigen_emit_byte(0x86);
958 /* Byte 1+2: length (0x0009) */
959 acpigen_emit_byte(0x09);
960 acpigen_emit_byte(0x00);
961 /* bit1-7 are ignored */
962 acpigen_emit_byte(readwrite ? 0x01 : 0x00);
Duncan Laurie9ccae752016-05-09 07:43:19 -0700963 acpigen_emit_dword(base);
964 acpigen_emit_dword(size);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +0000965}
966
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700967static void acpigen_write_register(const acpi_addr_t *addr)
Sven Schnelle0b86c762011-10-21 21:46:47 +0200968{
Stefan Reinauer4cc8c702012-04-27 21:34:16 +0200969 acpigen_emit_byte(0x82); /* Register Descriptor */
970 acpigen_emit_byte(0x0c); /* Register Length 7:0 */
971 acpigen_emit_byte(0x00); /* Register Length 15:8 */
972 acpigen_emit_byte(addr->space_id); /* Address Space ID */
973 acpigen_emit_byte(addr->bit_width); /* Register Bit Width */
974 acpigen_emit_byte(addr->bit_offset); /* Register Bit Offset */
Elyes HAOUAS8ee161d2019-03-03 12:49:56 +0100975 acpigen_emit_byte(addr->access_size); /* Register Access Size */
Duncan Laurie9ccae752016-05-09 07:43:19 -0700976 acpigen_emit_dword(addr->addrl); /* Register Address Low */
977 acpigen_emit_dword(addr->addrh); /* Register Address High */
Sven Schnelle0b86c762011-10-21 21:46:47 +0200978}
979
Matt Delcoc3f9d7a2018-07-27 14:01:05 -0700980void acpigen_write_register_resource(const acpi_addr_t *addr)
981{
982 acpigen_write_resourcetemplate_header();
983 acpigen_write_register(addr);
984 acpigen_write_resourcetemplate_footer();
985}
986
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +0100987void acpigen_write_irq(u16 mask)
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100988{
989 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +0200990 * ACPI 3.0b section 6.4.2.1: IRQ Descriptor
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100991 * Byte 0:
992 * Bit7 : 0 => small item
993 * Bit6-3: 0100 (0x4) => IRQ port descriptor
994 * Bit2-0: 010 (0x2) => 2 Bytes long
995 */
996 acpigen_emit_byte(0x22);
997 acpigen_emit_byte(mask & 0xff);
998 acpigen_emit_byte((mask >> 8) & 0xff);
Vladimir Serbinenko20ea0402014-02-15 18:57:17 +0100999}
1000
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001001void acpigen_write_io16(u16 min, u16 max, u8 align, u8 len, u8 decode16)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001002{
1003 /*
Elyes HAOUAS2078e752016-08-21 10:41:44 +02001004 * ACPI 4.0 section 6.4.2.6: I/O Port Descriptor
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001005 * Byte 0:
1006 * Bit7 : 0 => small item
1007 * Bit6-3: 1000 (0x8) => I/O port descriptor
1008 * Bit2-0: 111 (0x7) => 7 Bytes long
1009 */
1010 acpigen_emit_byte(0x47);
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001011 /* Does the device decode all 16 or just 10 bits? */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001012 /* bit1-7 are ignored */
1013 acpigen_emit_byte(decode16 ? 0x01 : 0x00);
1014 /* minimum base address the device may be configured for */
1015 acpigen_emit_byte(min & 0xff);
1016 acpigen_emit_byte((min >> 8) & 0xff);
1017 /* maximum base address the device may be configured for */
1018 acpigen_emit_byte(max & 0xff);
1019 acpigen_emit_byte((max >> 8) & 0xff);
1020 /* alignment for min base */
1021 acpigen_emit_byte(align & 0xff);
1022 acpigen_emit_byte(len & 0xff);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001023}
1024
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001025void acpigen_write_resourcetemplate_header(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001026{
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001027 /*
1028 * A ResourceTemplate() is a Buffer() with a
1029 * (Byte|Word|DWord) containing the length, followed by one or more
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001030 * resource items, terminated by the end tag.
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001031 * (small item 0xf, len 1)
1032 */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001033 acpigen_emit_byte(BUFFER_OP);
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001034 acpigen_write_len_f();
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001035 acpigen_emit_byte(WORD_PREFIX);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001036 len_stack[ltop++] = acpigen_get_current();
Nico Huber7d89ce32017-04-14 00:08:18 +02001037 /* Add 2 dummy bytes for the ACPI word (keep aligned with
Elyes HAOUAS6716bab2020-01-09 21:29:25 +01001038 the calculation in acpigen_write_resourcetemplate() below). */
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001039 acpigen_emit_byte(0x00);
1040 acpigen_emit_byte(0x00);
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001041}
1042
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001043void acpigen_write_resourcetemplate_footer(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001044{
1045 char *p = len_stack[--ltop];
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001046 int len;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001047 /*
1048 * end tag (acpi 4.0 Section 6.4.2.8)
1049 * 0x79 <checksum>
1050 * 0x00 is treated as a good checksum according to the spec
1051 * and is what iasl generates.
1052 */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001053 acpigen_emit_byte(0x79);
1054 acpigen_emit_byte(0x00);
1055
Nico Huber7d89ce32017-04-14 00:08:18 +02001056 /* Start counting past the 2-bytes length added in
1057 acpigen_write_resourcetemplate() above. */
1058 len = acpigen_get_current() - (p + 2);
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001059
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001060 /* patch len word */
Vladimir Serbinenko9acc1e82014-11-09 03:37:28 +01001061 p[0] = len & 0xff;
1062 p[1] = (len >> 8) & 0xff;
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001063 /* patch len field */
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001064 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001065}
1066
1067static void acpigen_add_mainboard_rsvd_mem32(void *gp, struct device *dev,
1068 struct resource *res)
1069{
1070 acpigen_write_mem32fixed(0, res->base, res->size);
1071}
1072
1073static void acpigen_add_mainboard_rsvd_io(void *gp, struct device *dev,
1074 struct resource *res)
1075{
1076 resource_t base = res->base;
1077 resource_t size = res->size;
1078 while (size > 0) {
1079 resource_t sz = size > 255 ? 255 : size;
1080 acpigen_write_io16(base, base, 0, sz, 1);
1081 size -= sz;
1082 base += sz;
1083 }
1084}
1085
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001086void acpigen_write_mainboard_resource_template(void)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001087{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001088 acpigen_write_resourcetemplate_header();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001089
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001090 /* Add reserved memory ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001091 search_global_resources(
1092 IORESOURCE_MEM | IORESOURCE_RESERVE,
1093 IORESOURCE_MEM | IORESOURCE_RESERVE,
1094 acpigen_add_mainboard_rsvd_mem32, 0);
1095
Paul Menzel0f4c0e22013-02-22 12:33:08 +01001096 /* Add reserved io ranges. */
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001097 search_global_resources(
1098 IORESOURCE_IO | IORESOURCE_RESERVE,
1099 IORESOURCE_IO | IORESOURCE_RESERVE,
1100 acpigen_add_mainboard_rsvd_io, 0);
1101
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001102 acpigen_write_resourcetemplate_footer();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001103}
1104
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001105void acpigen_write_mainboard_resources(const char *scope, const char *name)
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001106{
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001107 acpigen_write_scope(scope);
1108 acpigen_write_name(name);
1109 acpigen_write_mainboard_resource_template();
Vladimir Serbinenkoa09f4db2014-11-09 03:32:58 +01001110 acpigen_pop_len();
Tobias Diedrich0fe6e9a2010-11-17 16:27:06 +00001111}
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001112
1113static int hex2bin(const char c)
1114{
1115 if (c >= 'A' && c <= 'F')
1116 return c - 'A' + 10;
1117 if (c >= 'a' && c <= 'f')
1118 return c - 'a' + 10;
1119 return c - '0';
1120}
1121
Vladimir Serbinenko9bb5c5c2014-11-09 03:51:32 +01001122void acpigen_emit_eisaid(const char *eisaid)
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001123{
1124 u32 compact = 0;
1125
1126 /* Clamping individual values would be better but
1127 there is a disagreement over what is a valid
1128 EISA id, so accept anything and don't clamp,
1129 parent code should create a valid EISAid.
1130 */
1131 compact |= (eisaid[0] - 'A' + 1) << 26;
1132 compact |= (eisaid[1] - 'A' + 1) << 21;
1133 compact |= (eisaid[2] - 'A' + 1) << 16;
1134 compact |= hex2bin(eisaid[3]) << 12;
1135 compact |= hex2bin(eisaid[4]) << 8;
1136 compact |= hex2bin(eisaid[5]) << 4;
1137 compact |= hex2bin(eisaid[6]);
1138
1139 acpigen_emit_byte(0xc);
1140 acpigen_emit_byte((compact >> 24) & 0xff);
1141 acpigen_emit_byte((compact >> 16) & 0xff);
1142 acpigen_emit_byte((compact >> 8) & 0xff);
1143 acpigen_emit_byte(compact & 0xff);
Vladimir Serbinenko8ecdc9e2014-02-15 18:59:40 +01001144}
Duncan Laurie3829f232016-05-09 11:08:46 -07001145
1146/*
1147 * ToUUID(uuid)
1148 *
1149 * ACPI 6.1 Section 19.6.136 table 19-385 defines a special output
1150 * order for the bytes that make up a UUID Buffer object.
1151 * UUID byte order for input:
1152 * aabbccdd-eeff-gghh-iijj-kkllmmnnoopp
1153 * UUID byte order for output:
1154 * ddccbbaa-ffee-hhgg-iijj-kkllmmnnoopp
1155 */
1156#define UUID_LEN 16
1157void acpigen_write_uuid(const char *uuid)
1158{
1159 uint8_t buf[UUID_LEN];
1160 size_t i, order[UUID_LEN] = { 3, 2, 1, 0, 5, 4, 7, 6,
1161 8, 9, 10, 11, 12, 13, 14, 15 };
1162
1163 /* Parse UUID string into bytes */
1164 if (hexstrtobin(uuid, buf, UUID_LEN) < UUID_LEN)
1165 return;
1166
1167 /* BufferOp */
Furquan Shaikhe4e9b942016-10-20 23:09:05 -07001168 acpigen_emit_byte(BUFFER_OP);
Duncan Laurie3829f232016-05-09 11:08:46 -07001169 acpigen_write_len_f();
1170
1171 /* Buffer length in bytes */
1172 acpigen_write_word(UUID_LEN);
1173
1174 /* Output UUID in expected order */
1175 for (i = 0; i < UUID_LEN; i++)
1176 acpigen_emit_byte(buf[order[i]]);
1177
1178 acpigen_pop_len();
1179}
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001180
1181/*
1182 * Name (_PRx, Package(One) { name })
1183 * ...
1184 * PowerResource (name, level, order)
1185 */
1186void acpigen_write_power_res(const char *name, uint8_t level, uint16_t order,
Furquan Shaikhdc782752020-04-30 22:49:39 -07001187 const char * const dev_states[], size_t dev_states_count)
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001188{
Elyes HAOUAScca6e002019-06-26 12:12:00 +02001189 size_t i;
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001190 for (i = 0; i < dev_states_count; i++) {
1191 acpigen_write_name(dev_states[i]);
1192 acpigen_write_package(1);
1193 acpigen_emit_simple_namestring(name);
1194 acpigen_pop_len(); /* Package */
1195 }
1196
1197 acpigen_emit_ext_op(POWER_RES_OP);
1198
1199 acpigen_write_len_f();
1200
1201 acpigen_emit_simple_namestring(name);
1202 acpigen_emit_byte(level);
1203 acpigen_emit_word(order);
1204}
1205
1206/* Sleep (ms) */
1207void acpigen_write_sleep(uint64_t sleep_ms)
1208{
1209 acpigen_emit_ext_op(SLEEP_OP);
1210 acpigen_write_integer(sleep_ms);
1211}
1212
1213void acpigen_write_store(void)
1214{
1215 acpigen_emit_byte(STORE_OP);
1216}
1217
1218/* Store (src, dst) */
1219void acpigen_write_store_ops(uint8_t src, uint8_t dst)
1220{
1221 acpigen_write_store();
1222 acpigen_emit_byte(src);
1223 acpigen_emit_byte(dst);
1224}
1225
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001226/* Store (src, "namestr") */
1227void acpigen_write_store_op_to_namestr(uint8_t src, const char *dst)
1228{
1229 acpigen_write_store();
1230 acpigen_emit_byte(src);
1231 acpigen_emit_namestring(dst);
1232}
1233
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001234/* Or (arg1, arg2, res) */
1235void acpigen_write_or(uint8_t arg1, uint8_t arg2, uint8_t res)
1236{
1237 acpigen_emit_byte(OR_OP);
1238 acpigen_emit_byte(arg1);
1239 acpigen_emit_byte(arg2);
1240 acpigen_emit_byte(res);
1241}
1242
Rajat Jain310623b2020-02-26 11:02:53 -08001243/* Xor (arg1, arg2, res) */
1244void acpigen_write_xor(uint8_t arg1, uint8_t arg2, uint8_t res)
1245{
1246 acpigen_emit_byte(XOR_OP);
1247 acpigen_emit_byte(arg1);
1248 acpigen_emit_byte(arg2);
1249 acpigen_emit_byte(res);
1250}
1251
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001252/* And (arg1, arg2, res) */
1253void acpigen_write_and(uint8_t arg1, uint8_t arg2, uint8_t res)
1254{
1255 acpigen_emit_byte(AND_OP);
1256 acpigen_emit_byte(arg1);
1257 acpigen_emit_byte(arg2);
1258 acpigen_emit_byte(res);
1259}
1260
1261/* Not (arg, res) */
1262void acpigen_write_not(uint8_t arg, uint8_t res)
1263{
1264 acpigen_emit_byte(NOT_OP);
1265 acpigen_emit_byte(arg);
1266 acpigen_emit_byte(res);
1267}
1268
1269/* Store (str, DEBUG) */
1270void acpigen_write_debug_string(const char *str)
1271{
1272 acpigen_write_store();
1273 acpigen_write_string(str);
1274 acpigen_emit_ext_op(DEBUG_OP);
1275}
1276
1277/* Store (val, DEBUG) */
1278void acpigen_write_debug_integer(uint64_t val)
1279{
1280 acpigen_write_store();
1281 acpigen_write_integer(val);
1282 acpigen_emit_ext_op(DEBUG_OP);
1283}
1284
1285/* Store (op, DEBUG) */
1286void acpigen_write_debug_op(uint8_t op)
1287{
1288 acpigen_write_store();
1289 acpigen_emit_byte(op);
1290 acpigen_emit_ext_op(DEBUG_OP);
1291}
1292
1293void acpigen_write_if(void)
1294{
1295 acpigen_emit_byte(IF_OP);
1296 acpigen_write_len_f();
1297}
1298
1299/* If (And (arg1, arg2)) */
1300void acpigen_write_if_and(uint8_t arg1, uint8_t arg2)
1301{
1302 acpigen_write_if();
1303 acpigen_emit_byte(AND_OP);
1304 acpigen_emit_byte(arg1);
1305 acpigen_emit_byte(arg2);
1306}
1307
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001308/*
Duncan Laurie2fe74712020-06-01 17:36:56 -07001309 * Generates ACPI code for checking if operand1 and operand2 are equal.
1310 * Both operand1 and operand2 are ACPI ops.
1311 *
1312 * If (Lequal (op,1 op2))
1313 */
1314void acpigen_write_if_lequal_op_op(uint8_t op1, uint8_t op2)
1315{
1316 acpigen_write_if();
1317 acpigen_emit_byte(LEQUAL_OP);
1318 acpigen_emit_byte(op1);
1319 acpigen_emit_byte(op2);
1320}
1321
1322/*
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001323 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1324 * operand1 is ACPI op and operand2 is an integer.
1325 *
1326 * If (Lequal (op, val))
1327 */
1328void acpigen_write_if_lequal_op_int(uint8_t op, uint64_t val)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001329{
1330 acpigen_write_if();
1331 acpigen_emit_byte(LEQUAL_OP);
Furquan Shaikh1fc6bb92016-11-14 14:16:26 -08001332 acpigen_emit_byte(op);
1333 acpigen_write_integer(val);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001334}
1335
Furquan Shaikh2c213d32020-04-27 23:06:30 -07001336/*
1337 * Generates ACPI code for checking if operand1 and operand2 are equal, where,
1338 * operand1 is namestring and operand2 is an integer.
1339 *
1340 * If (Lequal ("namestr", val))
1341 */
1342void acpigen_write_if_lequal_namestr_int(const char *namestr, uint64_t val)
1343{
1344 acpigen_write_if();
1345 acpigen_emit_byte(LEQUAL_OP);
1346 acpigen_emit_namestring(namestr);
1347 acpigen_write_integer(val);
1348}
1349
Furquan Shaikhfcc7a042016-10-20 23:12:38 -07001350void acpigen_write_else(void)
1351{
1352 acpigen_emit_byte(ELSE_OP);
1353 acpigen_write_len_f();
1354}
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001355
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001356void acpigen_write_to_buffer(uint8_t src, uint8_t dst)
1357{
1358 acpigen_emit_byte(TO_BUFFER_OP);
1359 acpigen_emit_byte(src);
1360 acpigen_emit_byte(dst);
1361}
1362
1363void acpigen_write_to_integer(uint8_t src, uint8_t dst)
1364{
1365 acpigen_emit_byte(TO_INTEGER_OP);
1366 acpigen_emit_byte(src);
1367 acpigen_emit_byte(dst);
1368}
1369
Aaron Durbin80bc0912020-08-19 23:17:42 -06001370void acpigen_write_to_integer_from_namestring(const char *source, uint8_t dst_op)
1371{
1372 acpigen_emit_byte(TO_INTEGER_OP);
1373 acpigen_emit_namestring(source);
1374 acpigen_emit_byte(dst_op);
1375}
1376
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301377void acpigen_write_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001378{
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301379 size_t i;
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001380
1381 acpigen_emit_byte(BUFFER_OP);
1382 acpigen_write_len_f();
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301383 acpigen_write_integer(size);
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001384
1385 for (i = 0; i < size; i++)
1386 acpigen_emit_byte(arr[i]);
1387
1388 acpigen_pop_len();
1389}
1390
Rizwan Qureshiaca4c942017-03-06 21:50:26 +05301391void acpigen_write_return_byte_buffer(uint8_t *arr, size_t size)
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001392{
1393 acpigen_emit_byte(RETURN_OP);
1394 acpigen_write_byte_buffer(arr, size);
1395}
1396
1397void acpigen_write_return_singleton_buffer(uint8_t arg)
1398{
1399 acpigen_write_return_byte_buffer(&arg, 1);
1400}
1401
Duncan Laurie2fe74712020-06-01 17:36:56 -07001402void acpigen_write_return_op(uint8_t arg)
1403{
1404 acpigen_emit_byte(RETURN_OP);
1405 acpigen_emit_byte(arg);
1406}
1407
Furquan Shaikh9b39adb2016-10-21 16:21:07 -07001408void acpigen_write_return_byte(uint8_t arg)
1409{
1410 acpigen_emit_byte(RETURN_OP);
1411 acpigen_write_byte(arg);
1412}
1413
Naresh G Solanki05abe432016-11-17 00:16:29 +05301414void acpigen_write_return_integer(uint64_t arg)
1415{
1416 acpigen_emit_byte(RETURN_OP);
1417 acpigen_write_integer(arg);
1418}
1419
1420void acpigen_write_return_string(const char *arg)
1421{
1422 acpigen_emit_byte(RETURN_OP);
1423 acpigen_write_string(arg);
1424}
1425
Duncan Lauriebeb2af42018-05-07 14:26:59 -07001426void acpigen_write_upc(enum acpi_upc_type type)
1427{
1428 acpigen_write_name("_UPC");
1429 acpigen_write_package(4);
1430 /* Connectable */
1431 acpigen_write_byte(type == UPC_TYPE_UNUSED ? 0 : 0xff);
1432 /* Type */
1433 acpigen_write_byte(type);
1434 /* Reserved0 */
1435 acpigen_write_zero();
1436 /* Reserved1 */
1437 acpigen_write_zero();
1438 acpigen_pop_len();
1439}
1440
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001441void acpigen_write_pld(const struct acpi_pld *pld)
1442{
1443 uint8_t buf[20];
1444
1445 if (acpi_pld_to_buffer(pld, buf, ARRAY_SIZE(buf)) < 0)
1446 return;
1447
1448 acpigen_write_name("_PLD");
Matt Delco4929f432019-01-30 11:40:44 -08001449 acpigen_write_package(1);
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001450 acpigen_write_byte_buffer(buf, ARRAY_SIZE(buf));
Matt Delco4929f432019-01-30 11:40:44 -08001451 acpigen_pop_len();
Duncan Laurie3e7197a2018-05-07 14:18:13 -07001452}
1453
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301454void acpigen_write_dsm(const char *uuid, void (**callbacks)(void *),
1455 size_t count, void *arg)
1456{
1457 struct dsm_uuid id = DSM_UUID(uuid, callbacks, count, arg);
1458 acpigen_write_dsm_uuid_arr(&id, 1);
1459}
1460
1461static void acpigen_write_dsm_uuid(struct dsm_uuid *id)
1462{
1463 size_t i;
1464
1465 /* If (LEqual (Local0, ToUUID(uuid))) */
1466 acpigen_write_if();
1467 acpigen_emit_byte(LEQUAL_OP);
1468 acpigen_emit_byte(LOCAL0_OP);
1469 acpigen_write_uuid(id->uuid);
1470
1471 /* ToInteger (Arg2, Local1) */
1472 acpigen_write_to_integer(ARG2_OP, LOCAL1_OP);
1473
1474 for (i = 0; i < id->count; i++) {
1475 /* If (LEqual (Local1, i)) */
1476 acpigen_write_if_lequal_op_int(LOCAL1_OP, i);
1477
1478 /* Callback to write if handler. */
1479 if (id->callbacks[i])
1480 id->callbacks[i](id->arg);
1481
1482 acpigen_pop_len(); /* If */
1483 }
1484
1485 /* Default case: Return (Buffer (One) { 0x0 }) */
1486 acpigen_write_return_singleton_buffer(0x0);
1487
1488 acpigen_pop_len(); /* If (LEqual (Local0, ToUUID(uuid))) */
1489
1490}
1491
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001492/*
1493 * Generate ACPI AML code for _DSM method.
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301494 * This function takes as input array of uuid for the device, set of callbacks
1495 * and argument to pass into the callbacks. Callbacks should ensure that Local0
1496 * and Local1 are left untouched. Use of Local2-Local7 is permitted in
1497 * callbacks.
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001498 *
1499 * Arguments passed into _DSM method:
1500 * Arg0 = UUID
1501 * Arg1 = Revision
1502 * Arg2 = Function index
1503 * Arg3 = Function specific arguments
1504 *
1505 * AML code generated would look like:
1506 * Method (_DSM, 4, Serialized) {
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301507 * ToBuffer (Arg0, Local0)
1508 * If (LEqual (Local0, ToUUID(uuid))) {
1509 * ToInteger (Arg2, Local1)
1510 * If (LEqual (Local1, 0)) {
1511 * <acpigen by callback[0]>
1512 * }
1513 * ...
1514 * If (LEqual (Local1, n)) {
1515 * <acpigen by callback[n]>
1516 * }
1517 * Return (Buffer (One) { 0x0 })
1518 * }
1519 * ...
1520 * If (LEqual (Local0, ToUUID(uuidn))) {
1521 * ...
1522 * }
1523 * Return (Buffer (One) { 0x0 })
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001524 * }
1525 */
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301526void acpigen_write_dsm_uuid_arr(struct dsm_uuid *ids, size_t count)
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001527{
1528 size_t i;
1529
1530 /* Method (_DSM, 4, Serialized) */
1531 acpigen_write_method_serialized("_DSM", 0x4);
1532
1533 /* ToBuffer (Arg0, Local0) */
1534 acpigen_write_to_buffer(ARG0_OP, LOCAL0_OP);
1535
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001536 for (i = 0; i < count; i++)
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301537 acpigen_write_dsm_uuid(&ids[i]);
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001538
Naresh G Solankiab77cd42016-11-15 10:13:15 +05301539 /* Return (Buffer (One) { 0x0 }) */
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001540 acpigen_write_return_singleton_buffer(0x0);
1541
Furquan Shaikhc00bd182016-10-21 16:37:41 -07001542 acpigen_pop_len(); /* Method _DSM */
1543}
1544
Matt Delcob425bc82018-08-13 13:36:27 -07001545#define CPPC_PACKAGE_NAME "\\GCPC"
1546
1547void acpigen_write_CPPC_package(const struct cppc_config *config)
1548{
1549 u32 i;
1550 u32 max;
1551 switch (config->version) {
1552 case 1:
1553 max = CPPC_MAX_FIELDS_VER_1;
1554 break;
1555 case 2:
1556 max = CPPC_MAX_FIELDS_VER_2;
1557 break;
1558 case 3:
1559 max = CPPC_MAX_FIELDS_VER_3;
1560 break;
1561 default:
1562 printk(BIOS_ERR, "ERROR: CPPC version %u is not implemented\n",
1563 config->version);
1564 return;
1565 }
1566 acpigen_write_name(CPPC_PACKAGE_NAME);
1567
1568 /* Adding 2 to account for length and version fields */
1569 acpigen_write_package(max + 2);
1570 acpigen_write_dword(max + 2);
1571
1572 acpigen_write_byte(config->version);
1573
1574 for (i = 0; i < max; ++i) {
1575 const acpi_addr_t *reg = &(config->regs[i]);
1576 if (reg->space_id == ACPI_ADDRESS_SPACE_MEMORY &&
Elyes HAOUAS721cb8a2020-06-23 09:13:42 +02001577 reg->bit_width == 32 && reg->access_size == ACPI_ACCESS_SIZE_UNDEFINED) {
Matt Delcob425bc82018-08-13 13:36:27 -07001578 acpigen_write_dword(reg->addrl);
1579 } else {
1580 acpigen_write_register_resource(reg);
1581 }
1582 }
1583 acpigen_pop_len();
1584}
1585
1586void acpigen_write_CPPC_method(void)
1587{
1588 acpigen_write_method("_CPC", 0);
1589 acpigen_emit_byte(RETURN_OP);
1590 acpigen_emit_namestring(CPPC_PACKAGE_NAME);
1591 acpigen_pop_len();
1592}
1593
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001594/*
1595 * Generate ACPI AML code for _ROM method.
1596 * This function takes as input ROM data and ROM length.
1597 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001598 * The ACPI spec isn't clear about what should happen at the end of the
1599 * ROM. Tests showed that it shouldn't truncate, but fill the remaining
1600 * bytes in the returned buffer with zeros.
1601 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001602 * Arguments passed into _DSM method:
1603 * Arg0 = Offset in Bytes
1604 * Arg1 = Bytes to return
1605 *
1606 * Example:
1607 * acpigen_write_rom(0xdeadbeef, 0x10000)
1608 *
1609 * AML code generated would look like:
1610 * Method (_ROM, 2, NotSerialized) {
1611 *
1612 * OperationRegion("ROMS", SYSTEMMEMORY, 0xdeadbeef, 0x10000)
1613 * Field (ROMS, AnyAcc, NoLock, Preserve)
1614 * {
1615 * Offset (0),
1616 * RBF0, 0x80000
1617 * }
1618 *
1619 * Store (Arg0, Local0)
1620 * Store (Arg1, Local1)
1621 *
1622 * If (LGreater (Local1, 0x1000))
1623 * {
1624 * Store (0x1000, Local1)
1625 * }
1626 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001627 * Store (Local1, Local3)
1628 *
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001629 * If (LGreater (Local0, 0x10000))
1630 * {
1631 * Return(Buffer(Local1){0})
1632 * }
1633 *
1634 * If (LGreater (Local0, 0x0f000))
1635 * {
1636 * Subtract (0x10000, Local0, Local2)
1637 * If (LGreater (Local1, Local2))
1638 * {
1639 * Store (Local2, Local1)
1640 * }
1641 * }
1642 *
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001643 * Name (ROM1, Buffer (Local3) {0})
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001644 *
1645 * Multiply (Local0, 0x08, Local0)
1646 * Multiply (Local1, 0x08, Local1)
1647 *
1648 * CreateField (RBF0, Local0, Local1, TMPB)
1649 * Store (TMPB, ROM1)
1650 * Return (ROM1)
1651 * }
1652 */
1653
1654void acpigen_write_rom(void *bios, const size_t length)
1655{
1656 ASSERT(bios)
1657 ASSERT(length)
1658
Jonathan Neuschäfer6b0102d2018-09-12 12:26:45 +02001659 /* Method (_ROM, 2, Serialized) */
Marc Jones24462e62018-08-15 23:57:28 -06001660 acpigen_write_method_serialized("_ROM", 2);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001661
1662 /* OperationRegion("ROMS", SYSTEMMEMORY, current, length) */
1663 struct opregion opreg = OPREGION("ROMS", SYSTEMMEMORY,
1664 (uintptr_t)bios, length);
1665 acpigen_write_opregion(&opreg);
1666
1667 struct fieldlist l[] = {
1668 FIELDLIST_OFFSET(0),
1669 FIELDLIST_NAMESTR("RBF0", 8 * length),
1670 };
1671
1672 /* Field (ROMS, AnyAcc, NoLock, Preserve)
1673 * {
1674 * Offset (0),
1675 * RBF0, 0x80000
1676 * } */
1677 acpigen_write_field(opreg.name, l, 2, FIELD_ANYACC |
1678 FIELD_NOLOCK | FIELD_PRESERVE);
1679
1680 /* Store (Arg0, Local0) */
1681 acpigen_write_store();
1682 acpigen_emit_byte(ARG0_OP);
1683 acpigen_emit_byte(LOCAL0_OP);
1684
1685 /* Store (Arg1, Local1) */
1686 acpigen_write_store();
1687 acpigen_emit_byte(ARG1_OP);
1688 acpigen_emit_byte(LOCAL1_OP);
1689
1690 /* ACPI SPEC requires to return at maximum 4KiB */
1691 /* If (LGreater (Local1, 0x1000)) */
1692 acpigen_write_if();
1693 acpigen_emit_byte(LGREATER_OP);
1694 acpigen_emit_byte(LOCAL1_OP);
1695 acpigen_write_integer(0x1000);
1696
1697 /* Store (0x1000, Local1) */
1698 acpigen_write_store();
1699 acpigen_write_integer(0x1000);
1700 acpigen_emit_byte(LOCAL1_OP);
1701
1702 /* Pop if */
1703 acpigen_pop_len();
1704
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001705 /* Store (Local1, Local3) */
1706 acpigen_write_store();
1707 acpigen_emit_byte(LOCAL1_OP);
1708 acpigen_emit_byte(LOCAL3_OP);
1709
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001710 /* If (LGreater (Local0, length)) */
1711 acpigen_write_if();
1712 acpigen_emit_byte(LGREATER_OP);
1713 acpigen_emit_byte(LOCAL0_OP);
1714 acpigen_write_integer(length);
1715
1716 /* Return(Buffer(Local1){0}) */
1717 acpigen_emit_byte(RETURN_OP);
1718 acpigen_emit_byte(BUFFER_OP);
1719 acpigen_write_len_f();
1720 acpigen_emit_byte(LOCAL1_OP);
1721 acpigen_emit_byte(0);
1722 acpigen_pop_len();
1723
1724 /* Pop if */
1725 acpigen_pop_len();
1726
1727 /* If (LGreater (Local0, length - 4096)) */
1728 acpigen_write_if();
1729 acpigen_emit_byte(LGREATER_OP);
1730 acpigen_emit_byte(LOCAL0_OP);
1731 acpigen_write_integer(length - 4096);
1732
1733 /* Subtract (length, Local0, Local2) */
1734 acpigen_emit_byte(SUBTRACT_OP);
1735 acpigen_write_integer(length);
1736 acpigen_emit_byte(LOCAL0_OP);
1737 acpigen_emit_byte(LOCAL2_OP);
1738
1739 /* If (LGreater (Local1, Local2)) */
1740 acpigen_write_if();
1741 acpigen_emit_byte(LGREATER_OP);
1742 acpigen_emit_byte(LOCAL1_OP);
1743 acpigen_emit_byte(LOCAL2_OP);
1744
1745 /* Store (Local2, Local1) */
1746 acpigen_write_store();
1747 acpigen_emit_byte(LOCAL2_OP);
1748 acpigen_emit_byte(LOCAL1_OP);
1749
1750 /* Pop if */
1751 acpigen_pop_len();
1752
1753 /* Pop if */
1754 acpigen_pop_len();
1755
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001756 /* Name (ROM1, Buffer (Local3) {0}) */
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001757 acpigen_write_name("ROM1");
1758 acpigen_emit_byte(BUFFER_OP);
1759 acpigen_write_len_f();
Patrick Rudolph65cbbe72018-05-02 19:07:57 +02001760 acpigen_emit_byte(LOCAL3_OP);
Patrick Rudolph6be6df02017-04-28 16:34:26 +02001761 acpigen_emit_byte(0);
1762 acpigen_pop_len();
1763
1764 /* Multiply (Local1, 0x08, Local1) */
1765 acpigen_emit_byte(MULTIPLY_OP);
1766 acpigen_emit_byte(LOCAL1_OP);
1767 acpigen_write_integer(0x08);
1768 acpigen_emit_byte(LOCAL1_OP);
1769
1770 /* Multiply (Local0, 0x08, Local0) */
1771 acpigen_emit_byte(MULTIPLY_OP);
1772 acpigen_emit_byte(LOCAL0_OP);
1773 acpigen_write_integer(0x08);
1774 acpigen_emit_byte(LOCAL0_OP);
1775
1776 /* CreateField (RBF0, Local0, Local1, TMPB) */
1777 acpigen_emit_ext_op(CREATEFIELD_OP);
1778 acpigen_emit_namestring("RBF0");
1779 acpigen_emit_byte(LOCAL0_OP);
1780 acpigen_emit_byte(LOCAL1_OP);
1781 acpigen_emit_namestring("TMPB");
1782
1783 /* Store (TMPB, ROM1) */
1784 acpigen_write_store();
1785 acpigen_emit_namestring("TMPB");
1786 acpigen_emit_namestring("ROM1");
1787
1788 /* Return (ROM1) */
1789 acpigen_emit_byte(RETURN_OP);
1790 acpigen_emit_namestring("ROM1");
1791
1792 /* Pop method */
1793 acpigen_pop_len();
1794}
1795
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001796/* Soc-implemented functions -- weak definitions. */
Aaron Durbin64031672018-04-21 14:45:32 -06001797int __weak acpigen_soc_read_rx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001798{
1799 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1800 acpigen_write_debug_string("read_rx_gpio not available");
1801 return -1;
1802}
1803
Aaron Durbin64031672018-04-21 14:45:32 -06001804int __weak acpigen_soc_get_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001805{
1806 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1807 acpigen_write_debug_string("get_tx_gpio not available");
1808 return -1;
1809}
1810
Aaron Durbin64031672018-04-21 14:45:32 -06001811int __weak acpigen_soc_set_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001812{
1813 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1814 acpigen_write_debug_string("set_tx_gpio not available");
1815 return -1;
1816}
1817
Aaron Durbin64031672018-04-21 14:45:32 -06001818int __weak acpigen_soc_clear_tx_gpio(unsigned int gpio_num)
Furquan Shaikh0a48aee2016-10-20 07:12:49 -07001819{
1820 printk(BIOS_ERR, "ERROR: %s not implemented\n", __func__);
1821 acpigen_write_debug_string("clear_tx_gpio not available");
1822 return -1;
1823}
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08001824
1825/*
1826 * Helper functions for enabling/disabling Tx GPIOs based on the GPIO
1827 * polarity. These functions end up calling acpigen_soc_{set,clear}_tx_gpio to
1828 * make callbacks into SoC acpigen code.
1829 *
1830 * Returns 0 on success and -1 on error.
1831 */
1832int acpigen_enable_tx_gpio(struct acpi_gpio *gpio)
1833{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07001834 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08001835 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07001836 else
1837 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08001838}
1839
1840int acpigen_disable_tx_gpio(struct acpi_gpio *gpio)
1841{
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07001842 if (gpio->active_low)
Furquan Shaikhbf4845d2017-02-20 22:56:25 -08001843 return acpigen_soc_set_tx_gpio(gpio->pins[0]);
1844 else
1845 return acpigen_soc_clear_tx_gpio(gpio->pins[0]);
1846}
Jonathan Zhang71299c22020-01-27 11:38:57 -08001847
Rajat Jain310623b2020-02-26 11:02:53 -08001848void acpigen_get_rx_gpio(struct acpi_gpio *gpio)
1849{
1850 acpigen_soc_read_rx_gpio(gpio->pins[0]);
1851
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07001852 if (gpio->active_low)
Rajat Jain310623b2020-02-26 11:02:53 -08001853 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
1854}
1855
Duncan Laurie2fe74712020-06-01 17:36:56 -07001856void acpigen_get_tx_gpio(struct acpi_gpio *gpio)
1857{
1858 acpigen_soc_get_tx_gpio(gpio->pins[0]);
1859
Furquan Shaikhd2d5e442020-07-01 01:37:13 -07001860 if (gpio->active_low)
Duncan Laurie2fe74712020-06-01 17:36:56 -07001861 acpigen_write_xor(LOCAL0_OP, 1, LOCAL0_OP);
1862}
1863
Jonathan Zhang71299c22020-01-27 11:38:57 -08001864/* refer to ACPI 6.4.3.5.3 Word Address Space Descriptor section for details */
1865void acpigen_resource_word(u16 res_type, u16 gen_flags, u16 type_flags, u16 gran,
1866 u16 range_min, u16 range_max, u16 translation, u16 length)
1867{
1868 acpigen_emit_byte(0x88);
1869 /* Byte 1+2: length (0x000d) */
1870 acpigen_emit_byte(0x0d);
1871 acpigen_emit_byte(0x00);
1872 /* resource type */
1873 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1874 /* general flags */
1875 acpigen_emit_byte(gen_flags);
1876 /* type flags */
1877 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1878 acpigen_emit_byte(type_flags);
1879 /* granularity, min, max, translation, length */
1880 acpigen_emit_word(gran);
1881 acpigen_emit_word(range_min);
1882 acpigen_emit_word(range_max);
1883 acpigen_emit_word(translation);
1884 acpigen_emit_word(length);
1885}
1886
1887/* refer to ACPI 6.4.3.5.2 DWord Address Space Descriptor section for details */
1888void acpigen_resource_dword(u16 res_type, u16 gen_flags, u16 type_flags,
1889 u32 gran, u32 range_min, u32 range_max, u32 translation, u32 length)
1890{
1891 acpigen_emit_byte(0x87);
1892 /* Byte 1+2: length (0023) */
1893 acpigen_emit_byte(23);
1894 acpigen_emit_byte(0x00);
1895 /* resource type */
1896 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1897 /* general flags */
1898 acpigen_emit_byte(gen_flags);
1899 /* type flags */
1900 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1901 acpigen_emit_byte(type_flags);
1902 /* granularity, min, max, translation, length */
1903 acpigen_emit_dword(gran);
1904 acpigen_emit_dword(range_min);
1905 acpigen_emit_dword(range_max);
1906 acpigen_emit_dword(translation);
1907 acpigen_emit_dword(length);
1908}
1909
1910static void acpigen_emit_qword(u64 data)
1911{
1912 acpigen_emit_dword(data & 0xffffffff);
1913 acpigen_emit_dword((data >> 32) & 0xffffffff);
1914}
1915
1916/* refer to ACPI 6.4.3.5.1 QWord Address Space Descriptor section for details */
1917void acpigen_resource_qword(u16 res_type, u16 gen_flags, u16 type_flags,
1918 u64 gran, u64 range_min, u64 range_max, u64 translation, u64 length)
1919{
1920 acpigen_emit_byte(0x8a);
1921 /* Byte 1+2: length (0x002b) */
1922 acpigen_emit_byte(0x2b);
1923 acpigen_emit_byte(0x00);
1924 /* resource type */
1925 acpigen_emit_byte(res_type); // 0 - mem, 1 - io, 2 - bus
1926 /* general flags */
1927 acpigen_emit_byte(gen_flags);
1928 /* type flags */
1929 // refer to ACPI Table 6-234 (Memory), 6-235 (IO), 6-236 (Bus) for details
1930 acpigen_emit_byte(type_flags);
1931 /* granularity, min, max, translation, length */
1932 acpigen_emit_qword(gran);
1933 acpigen_emit_qword(range_min);
1934 acpigen_emit_qword(range_max);
1935 acpigen_emit_qword(translation);
1936 acpigen_emit_qword(length);
1937}
Furquan Shaikh1a829232020-04-23 11:11:05 -07001938
1939void acpigen_write_ADR(uint64_t adr)
1940{
1941 acpigen_write_name_qword("_ADR", adr);
1942}
1943
1944void acpigen_write_ADR_pci_devfn(pci_devfn_t devfn)
1945{
1946 /*
1947 * _ADR for PCI Bus is encoded as follows:
1948 * [63:32] - unused
1949 * [31:16] - device #
1950 * [15:0] - function #
1951 */
1952 acpigen_write_ADR(PCI_SLOT(devfn) << 16 | PCI_FUNC(devfn));
1953}
1954
1955void acpigen_write_ADR_pci_device(const struct device *dev)
1956{
1957 assert(dev->path.type == DEVICE_PATH_PCI);
1958 acpigen_write_ADR_pci_devfn(dev->path.pci.devfn);
1959}
Duncan Laurie08a942f2020-04-29 12:13:14 -07001960
1961/**
1962 * acpigen_write_ADR_soundwire_device() - SoundWire ACPI Device Address Encoding.
1963 * @address: SoundWire device address properties.
1964 *
1965 * From SoundWire Discovery and Configuration Specification Version 1.0 Table 3.
1966 *
1967 * 63..52 - Reserved (0)
1968 * 51..48 - Zero-based SoundWire Link ID, relative to the immediate parent.
1969 * Used when a Controller has multiple master devices, each producing a
1970 * separate SoundWire Link. Set to 0 for single-link controllers.
1971 * 47..0 - SoundWire Device ID Encoding from specification version 1.2 table 88
1972 * 47..44 - SoundWire specification version that this device supports
1973 * 43..40 - Unique ID for multiple devices
1974 * 39..24 - MIPI standard manufacturer code
1975 * 23..08 - Vendor defined part ID
1976 * 07..00 - MIPI class encoding
1977 */
1978void acpigen_write_ADR_soundwire_device(const struct soundwire_address *address)
1979{
1980 acpigen_write_ADR((((uint64_t)address->link_id & 0xf) << 48) |
1981 (((uint64_t)address->version & 0xf) << 44) |
1982 (((uint64_t)address->unique_id & 0xf) << 40) |
1983 (((uint64_t)address->manufacturer_id & 0xffff) << 24) |
1984 (((uint64_t)address->part_id & 0xffff) << 8) |
1985 (((uint64_t)address->class & 0xff)));
1986}
Tim Wawrzynczakf6945022020-06-04 15:18:47 -06001987
1988void acpigen_notify(const char *namestr, int value)
1989{
1990 acpigen_emit_byte(NOTIFY_OP);
1991 acpigen_emit_namestring(namestr);
1992 acpigen_write_integer(value);
1993}
Aaron Durbin80bc0912020-08-19 23:17:42 -06001994
1995static void _create_field(uint8_t aml_op, uint8_t srcop, size_t byte_offset, const char *name)
1996{
1997 acpigen_emit_byte(aml_op);
1998 acpigen_emit_byte(srcop);
1999 acpigen_write_integer(byte_offset);
2000 acpigen_emit_namestring(name);
2001}
2002
2003void acpigen_write_create_byte_field(uint8_t op, size_t byte_offset, const char *name)
2004{
2005 _create_field(CREATE_BYTE_OP, op, byte_offset, name);
2006}
2007
2008void acpigen_write_create_word_field(uint8_t op, size_t byte_offset, const char *name)
2009{
2010 _create_field(CREATE_WORD_OP, op, byte_offset, name);
2011}
2012
2013void acpigen_write_create_dword_field(uint8_t op, size_t byte_offset, const char *name)
2014{
2015 _create_field(CREATE_DWORD_OP, op, byte_offset, name);
2016}
2017
2018void acpigen_write_create_qword_field(uint8_t op, size_t byte_offset, const char *name)
2019{
2020 _create_field(CREATE_QWORD_OP, op, byte_offset, name);
2021}
Jason Gleneskca36aed2020-09-15 21:01:57 -07002022
2023void acpigen_write_pct_package(const acpi_addr_t *perf_ctrl, const acpi_addr_t *perf_sts)
2024{
2025 acpigen_write_name("_PCT");
2026 acpigen_write_package(0x02);
2027 acpigen_write_register_resource(perf_ctrl);
2028 acpigen_write_register_resource(perf_sts);
2029
2030 acpigen_pop_len();
2031}
2032
2033void acpigen_write_xpss_package(const struct acpi_xpss_sw_pstate *pstate_value)
2034{
2035 acpigen_write_package(0x08);
2036 acpigen_write_dword(pstate_value->core_freq);
2037 acpigen_write_dword(pstate_value->power);
2038 acpigen_write_dword(pstate_value->transition_latency);
2039 acpigen_write_dword(pstate_value->bus_master_latency);
2040
2041 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_value, sizeof(uint64_t));
2042 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_value, sizeof(uint64_t));
2043 acpigen_write_byte_buffer((uint8_t *)&pstate_value->control_mask, sizeof(uint64_t));
2044 acpigen_write_byte_buffer((uint8_t *)&pstate_value->status_mask, sizeof(uint64_t));
2045
2046 acpigen_pop_len();
2047}
2048
2049void acpigen_write_xpss_object(const struct acpi_xpss_sw_pstate *pstate_values, size_t nentries)
2050{
2051 size_t pstate;
2052
2053 acpigen_write_name("XPSS");
2054 acpigen_write_package(nentries);
2055 for (pstate = 0; pstate < nentries; pstate++) {
2056 acpigen_write_xpss_package(pstate_values);
2057 pstate_values++;
2058 }
2059
2060 acpigen_pop_len();
2061}