blob: 6e031956192f405949efc8066aa68fc01b375666 [file] [log] [blame]
Angel Pons32859fc2020-04-02 23:48:27 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Aaron Durbincddcc802013-02-08 17:15:53 -06003#ifndef ROMSTAGE_HANDOFF_H
4#define ROMSTAGE_HANDOFF_H
5
Aaron Durbin77e13992016-11-29 17:43:04 -06006/* Returns 0 if initialized. Else < 0 if handoff structure not added. */
Aaron Durbinafe8aee2016-11-29 21:37:42 -06007int romstage_handoff_init(int is_s3_resume);
Aaron Durbin77e13992016-11-29 17:43:04 -06008
Aaron Durbin6c191d82016-11-29 21:22:42 -06009/* Return 1 if resuming or 0 if not. */
Aaron Durbinafe8aee2016-11-29 21:37:42 -060010int romstage_handoff_is_resume(void);
Aaron Durbin6c191d82016-11-29 21:22:42 -060011
Aaron Durbincddcc802013-02-08 17:15:53 -060012#endif /* ROMSTAGE_HANDOFF_H */