2011-10-10 08:22:14 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Marius Groeger <mgroeger@sysgo.de>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
|
|
|
|
* Alex Zuepke <azu@sysgo.de>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-10-10 08:22:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _U_BOOT_SANDBOX_H_
|
|
|
|
#define _U_BOOT_SANDBOX_H_
|
|
|
|
|
|
|
|
/* board/.../... */
|
|
|
|
int board_init(void);
|
|
|
|
int dram_init(void);
|
|
|
|
|
2012-02-26 22:38:50 +00:00
|
|
|
/* start.c */
|
2012-02-15 23:51:16 +00:00
|
|
|
int sandbox_early_getopt_check(void);
|
2012-02-26 22:38:50 +00:00
|
|
|
int sandbox_main_loop_init(void);
|
|
|
|
|
2013-11-10 17:27:07 +00:00
|
|
|
int cleanup_before_linux(void);
|
|
|
|
|
2014-02-27 20:26:19 +00:00
|
|
|
/* drivers/video/sandbox_sdl.c */
|
|
|
|
int sandbox_lcd_sdl_early_init(void);
|
|
|
|
|
2011-10-10 08:22:14 +00:00
|
|
|
#endif /* _U_BOOT_SANDBOX_H_ */
|