Simon Glass | b4a905e | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 1 | /* |
| 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 Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 12 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b4a905e | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef _U_BOOT_SANDBOX_H_ |
| 16 | #define _U_BOOT_SANDBOX_H_ |
| 17 | |
| 18 | /* board/.../... */ |
| 19 | int board_init(void); |
| 20 | int dram_init(void); |
| 21 | |
Simon Glass | 0fc3c22 | 2012-02-26 17:38:50 -0500 | [diff] [blame] | 22 | /* start.c */ |
Simon Glass | 8a3e035 | 2012-02-15 15:51:16 -0800 | [diff] [blame] | 23 | int sandbox_early_getopt_check(void); |
Simon Glass | 0fc3c22 | 2012-02-26 17:38:50 -0500 | [diff] [blame] | 24 | int sandbox_main_loop_init(void); |
| 25 | |
Simon Glass | 0aa6349 | 2013-11-10 10:27:07 -0700 | [diff] [blame] | 26 | int cleanup_before_linux(void); |
| 27 | |
Simon Glass | b9ddbf4 | 2014-02-27 13:26:19 -0700 | [diff] [blame] | 28 | /* drivers/video/sandbox_sdl.c */ |
| 29 | int sandbox_lcd_sdl_early_init(void); |
| 30 | |
Simon Glass | b4a905e | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 31 | #endif /* _U_BOOT_SANDBOX_H_ */ |