blob: 4f6eafb320a062dfa73fb16dc9599c5e05e23378 [file] [log] [blame]
Felix Held18b51e92021-05-08 01:30:30 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <acpi/acpigen.h>
4#include <amdblocks/alib.h>
5#include <types.h>
6
Felix Held2d0bf342021-05-12 01:42:37 +02007static void acpigen_dptc_call_alib(const char *buf_name, uint8_t *buffer, size_t size)
Felix Held18b51e92021-05-08 01:30:30 +02008{
9 /* Name (buf_name, Buffer(size) {...} */
10 acpigen_write_name(buf_name);
11 acpigen_write_byte_buffer(buffer, size);
12
13 /* \_SB.ALIB(0xc, buf_name) */
14 acpigen_emit_namestring("\\_SB.ALIB");
15 acpigen_write_integer(ALIB_FUNCTION_DYNAMIC_POWER_THERMAL_CONFIG);
16 acpigen_emit_namestring(buf_name);
17}
Felix Held2d0bf342021-05-12 01:42:37 +020018
Tim Van Patten92443582022-08-23 16:06:33 -060019void acpigen_write_alib_dptc_default(uint8_t *default_param, size_t default_param_len)
Felix Held2d0bf342021-05-12 01:42:37 +020020{
21 /* Scope (\_SB) */
22 acpigen_write_scope("\\_SB");
23
Tim Van Patten92443582022-08-23 16:06:33 -060024 /* Default (Unthrottled) Mode */
25 /* Scope (\_SB)
26 * {
27 * Method (DDEF, 0, Serialized)
28 * {
29 * Debug = "DPTC: Using normal SOC DPTC Settings."
30 * Name (DEFB, Buffer (0x25)
31 * {
32 * ...
33 * })
34 * \_SB.ALIB
35 * 0x0C
36 * DEFB
37 * }
38 * }
39 */
40 acpigen_write_method_serialized("DDEF", 0);
41 acpigen_write_debug_string("DPTC: Using normal SOC DPTC Settings.");
Felix Held2d0bf342021-05-12 01:42:37 +020042 acpigen_dptc_call_alib("DEFB", default_param, default_param_len);
Tim Van Patten92443582022-08-23 16:06:33 -060043 acpigen_write_method_end();
Felix Held2d0bf342021-05-12 01:42:37 +020044
Tim Van Patten92443582022-08-23 16:06:33 -060045 acpigen_write_scope_end();
46}
Felix Held2d0bf342021-05-12 01:42:37 +020047
Tim Van Patten92443582022-08-23 16:06:33 -060048void acpigen_write_alib_dptc_tablet(uint8_t *tablet_param, size_t tablet_param_len)
49{
50 /* Scope (\_SB) */
51 acpigen_write_scope("\\_SB");
52
53 /* Tablet Mode */
54 /* Scope (\_SB)
55 * {
56 * Method (DTAB, 0, Serialized)
57 * {
58 * Debug = "DPTC: Using tablet mode SOC DPTC Settings."
59 * Name (TABB, Buffer (0x25)
60 * {
61 * ...
62 * })
63 * \_SB.ALIB
64 * 0x0C
65 * TABB
66 * }
67 * }
68 */
69 acpigen_write_method_serialized("DTAB", 0);
70 acpigen_write_debug_string("DPTC: Using tablet mode SOC DPTC Settings.");
71 acpigen_dptc_call_alib("TABB", tablet_param, tablet_param_len);
72 acpigen_write_method_end();
73
74 acpigen_write_scope_end();
Felix Held2d0bf342021-05-12 01:42:37 +020075}