u-boot-sandbox.h 661 B

12345678910111213141516171819202122232425262728293031
  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. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #ifndef _U_BOOT_SANDBOX_H_
  15. #define _U_BOOT_SANDBOX_H_
  16. /* board/.../... */
  17. int board_init(void);
  18. int dram_init(void);
  19. /* start.c */
  20. int sandbox_early_getopt_check(void);
  21. int sandbox_main_loop_init(void);
  22. int cleanup_before_linux(void);
  23. /* drivers/video/sandbox_sdl.c */
  24. int sandbox_lcd_sdl_early_init(void);
  25. #endif /* _U_BOOT_SANDBOX_H_ */