blob: d2f1b6566d7051afe75c1199a57c929fabcd0ae3 [file] [log] [blame]
Googlere00b8eb2019-07-08 16:37:07 -07001/*
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>
Googler15b35d92022-10-03 17:48:21 +080011 *
12 * SPDX-License-Identifier: GPL-2.0+
Googlere00b8eb2019-07-08 16:37:07 -070013 */
14
15#ifndef _U_BOOT_SANDBOX_H_
16#define _U_BOOT_SANDBOX_H_
17
18/* board/.../... */
19int board_init(void);
Googler15b35d92022-10-03 17:48:21 +080020int dram_init(void);
Googlere00b8eb2019-07-08 16:37:07 -070021
22/* start.c */
23int sandbox_early_getopt_check(void);
24int sandbox_main_loop_init(void);
25
26int cleanup_before_linux(void);
27
28/* drivers/video/sandbox_sdl.c */
29int sandbox_lcd_sdl_early_init(void);
30
Googlere00b8eb2019-07-08 16:37:07 -070031#endif /* _U_BOOT_SANDBOX_H_ */