blob: 5707c2710d9fc1707ae25df940c82fe81260950f [file] [log] [blame]
Simon Glass744d9852011-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 Denk1a459662013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Simon Glass744d9852011-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);
20int dram_init(void);
21
Simon Glassab4e07e2012-02-26 17:38:50 -050022/* start.c */
Simon Glass70db4212012-02-15 15:51:16 -080023int sandbox_early_getopt_check(void);
Simon Glassab4e07e2012-02-26 17:38:50 -050024int sandbox_main_loop_init(void);
25
Simon Glassb88eb322013-11-10 10:27:07 -070026int cleanup_before_linux(void);
27
Simon Glass744d9852011-10-10 08:22:14 +000028#endif /* _U_BOOT_SANDBOX_H_ */