blob: 8ba6a652e52a076577bc7239d7e9b3aa077e9c70 [file] [log] [blame]
Angel Pons60ec3652020-04-03 01:22:13 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Tobias Diedrich7a952042017-12-03 10:09:28 +01002
3#include <types.h>
4#include <cpu/x86/smm.h>
5#include "superio.h"
6
7void mainboard_smi_sleep(u8 slp_typ)
8{
9 if (slp_typ > 0 && slp_typ < 4) {
10 /* Enable GRN_LED [Power LED] fading */
11 SUPERIO_UNLOCK;
12 SUPERIO_WRITE(0xf7, 0x68);
13 SUPERIO_LOCK;
14 }
15}