summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/baytrail/include/soc/smm.h
blob: 3af36822eb71900e2c5f8f0f2f1624008ee99c36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef _BAYTRAIL_SMM_H_
#define _BAYTRAIL_SMM_H_

#include <types.h>

enum {
	SMM_SAVE_PARAM_GPIO_ROUTE = 0,
	SMM_SAVE_PARAM_PCIE_WAKE_ENABLE,
	SMM_SAVE_PARAM_COUNT
};

void smm_southcluster_save_param(int param, uint32_t data);

#endif /* _BAYTRAIL_SMM_H_ */