coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
smm.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _BAYTRAIL_SMM_H_
4 #define _BAYTRAIL_SMM_H_
5 
6 #include <types.h>
7 
8 enum {
12 };
13 
14 void smm_southcluster_save_param(int param, uint32_t data);
15 
16 #endif /* _BAYTRAIL_SMM_H_ */
void smm_southcluster_save_param(int param, uint32_t data)
Definition: smm.c:17
@ SMM_SAVE_PARAM_COUNT
Definition: smm.h:11
@ SMM_SAVE_PARAM_GPIO_ROUTE
Definition: smm.h:9
@ SMM_SAVE_PARAM_PCIE_WAKE_ENABLE
Definition: smm.h:10
unsigned int uint32_t
Definition: stdint.h:14