blob: 3c78edb013113c42cb87fac5726c9a8b80470029 [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
26void board_BeforeAgesa(struct sysinfo *cb);
27
Kyösti Mälkkidf7ff312016-11-25 12:02:00 +020028void platform_once(struct sysinfo *cb);
29void agesa_main(struct sysinfo *cb);
30
Kyösti Mälkki967d94d2016-11-22 11:52:14 +020031#endif /* _STATE_MACHINE_H_ */