1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright 2020 Google LLC
4  */
5 #ifndef _X86_ASM_SYSRESET_H_
6 #define _X86_ASM_SYSRESET_H_
7 
8 #include <dt-structs.h>
9 
10 struct x86_sysreset_plat {
11 #if CONFIG_IS_ENABLED(OF_PLATDATA)
12 	struct dtd_x86_reset dtplat;
13 #endif
14 
15 	struct udevice *pch;
16 };
17 
18 #endif	/* _X86_ASM_SYSRESET_H_ */
19