mb/google/nissa/var/rull: Add 6W and 15W DPTF parameters
[coreboot.git] / src / soc / intel / common / acpi / gpio.asl
blob225f72a46f0c9edd13b184a2e05fa555518227c0
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 /*
4  * Configure GPIO Power Management bits
5  *
6  * Arg0: GPIO community index
7  * Arg1: PM bits in MISCCFG
8  */
9 Method (CGPM, 2, Serialized)
11         Local0 = GPID (Arg0)
12         If (Local0 != 0) {
13                 /* Mask off current PM bits */
14                 PCRA (Local0, GPIO_MISCCFG, ~MISCCFG_GPIO_PM_CONFIG_BITS)
15                 /* Mask in requested bits */
16                 PCRO (Local0, GPIO_MISCCFG,  Arg1 & MISCCFG_GPIO_PM_CONFIG_BITS)
17         }