blob: 770ab5c9cc07ec6fa497bd3d7b631072b8e10f5d [file] [log] [blame]
Simon Glassb4a905e2011-10-10 08:22:14 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 *
4 * (C) Copyright 2002
5 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Marius Groeger <mgroeger@sysgo.de>
7 *
8 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Alex Zuepke <azu@sysgo.de>
11 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Simon Glassb4a905e2011-10-10 08:22:14 +000013 */
14
15#ifndef _U_BOOT_SANDBOX_H_
16#define _U_BOOT_SANDBOX_H_
17
18/* board/.../... */
19int board_init(void);
Simon Glassb4a905e2011-10-10 08:22:14 +000020
Simon Glass0fc3c222012-02-26 17:38:50 -050021/* start.c */
Simon Glass8a3e0352012-02-15 15:51:16 -080022int sandbox_early_getopt_check(void);
Simon Glass0fc3c222012-02-26 17:38:50 -050023int sandbox_main_loop_init(void);
24
Simon Glass0aa63492013-11-10 10:27:07 -070025int cleanup_before_linux(void);
26
Simon Glassb9ddbf42014-02-27 13:26:19 -070027/* drivers/video/sandbox_sdl.c */
28int sandbox_lcd_sdl_early_init(void);
29
Simon Glassb4a905e2011-10-10 08:22:14 +000030#endif /* _U_BOOT_SANDBOX_H_ */