blob: 3bbca0d192e42281617e135b7e5a12904028814a [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. */
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01003
4#ifndef __HALT_H__
5#define __HALT_H__
6
Patrick Georgi1b2f2a02014-11-28 22:00:22 +01007/**
8 * halt the system reliably
9 */
Aaron Durbin0370bcf2018-09-05 09:37:11 -060010void __noreturn halt(void);
Aaron Durbinb743b1a2016-07-13 12:00:49 -050011
12/* Power off the system. */
13void poweroff(void);
14
Patrick Georgi1b2f2a02014-11-28 22:00:22 +010015#endif /* __HALT_H__ */