blob: e55c152b2081827a2f33a631e5b44e6e20ce1354 [file] [log] [blame]
Kyösti Mälkki967d94d2016-11-22 11:52:14 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2016 Kyösti Mälkki
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#ifndef _STATE_MACHINE_H_
17#define _STATE_MACHINE_H_
18
19#include <stdint.h>
20
21struct sysinfo
22{
23 int s3resume;
24};
25
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020026void agesa_main(struct sysinfo *cb);
Kyösti Mälkkiba22e152016-11-23 06:47:15 +020027void agesa_postcar(struct sysinfo *cb);
28
29void board_BeforeAgesa(struct sysinfo *cb);
30void platform_once(struct sysinfo *cb);
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020031
Kyösti Mälkki967d94d2016-11-22 11:52:14 +020032#endif /* _STATE_MACHINE_H_ */