xref: /rk3399_rockchip-uboot/arch/sandbox/include/asm/u-boot-sandbox.h (revision 70db4212fcdb080444a23dccaf673b68a3ffc1fa)
1744d9859SSimon Glass /*
2744d9859SSimon Glass  * Copyright (c) 2011 The Chromium OS Authors.
3744d9859SSimon Glass  *
4744d9859SSimon Glass  * (C) Copyright 2002
5744d9859SSimon Glass  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6744d9859SSimon Glass  * Marius Groeger <mgroeger@sysgo.de>
7744d9859SSimon Glass  *
8744d9859SSimon Glass  * (C) Copyright 2002
9744d9859SSimon Glass  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10744d9859SSimon Glass  * Alex Zuepke <azu@sysgo.de>
11744d9859SSimon Glass  *
12744d9859SSimon Glass  * See file CREDITS for list of people who contributed to this
13744d9859SSimon Glass  * project.
14744d9859SSimon Glass  *
15744d9859SSimon Glass  * This program is free software; you can redistribute it and/or
16744d9859SSimon Glass  * modify it under the terms of the GNU General Public License as
17744d9859SSimon Glass  * published by the Free Software Foundation; either version 2 of
18744d9859SSimon Glass  * the License, or (at your option) any later version.
19744d9859SSimon Glass  *
20744d9859SSimon Glass  * This program is distributed in the hope that it will be useful,
21744d9859SSimon Glass  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22744d9859SSimon Glass  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23744d9859SSimon Glass  * GNU General Public License for more details.
24744d9859SSimon Glass  *
25744d9859SSimon Glass  * You should have received a copy of the GNU General Public License
26744d9859SSimon Glass  * along with this program; if not, write to the Free Software
27744d9859SSimon Glass  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28744d9859SSimon Glass  * MA 02111-1307 USA
29744d9859SSimon Glass  */
30744d9859SSimon Glass 
31744d9859SSimon Glass #ifndef _U_BOOT_SANDBOX_H_
32744d9859SSimon Glass #define _U_BOOT_SANDBOX_H_
33744d9859SSimon Glass 
34744d9859SSimon Glass /* board/.../... */
35744d9859SSimon Glass int board_init(void);
36744d9859SSimon Glass int dram_init(void);
37744d9859SSimon Glass 
38ab4e07ebSSimon Glass /* start.c */
39*70db4212SSimon Glass int sandbox_early_getopt_check(void);
40ab4e07ebSSimon Glass int sandbox_main_loop_init(void);
41ab4e07ebSSimon Glass 
42744d9859SSimon Glass #endif	/* _U_BOOT_SANDBOX_H_ */
43