blob: 2227f1c1214a97ae078fe18dac950dfe1a835b90 [file] [log] [blame]
Simon Glassf1a6c762011-10-07 13:53:38 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glassf1a6c762011-10-07 13:53:38 +00004 */
5
6#include <common.h>
Simon Glassfd173402014-02-27 13:26:13 -07007#include <cros_ec.h>
Simon Glassb4d70702014-02-26 15:59:25 -07008#include <dm.h>
Matthias Weisser0d3dd142011-11-29 12:16:40 +01009#include <os.h>
Simon Glassb9ddbf42014-02-27 13:26:19 -070010#include <asm/u-boot-sandbox.h>
Matthias Weisser0d3dd142011-11-29 12:16:40 +010011
Simon Glassf1a6c762011-10-07 13:53:38 +000012/*
13 * Pointer to initial global data area
14 *
15 * Here we initialize it.
16 */
17gd_t *gd;
18
Simon Glassb4d70702014-02-26 15:59:25 -070019/* Add a simple GPIO device */
20U_BOOT_DEVICE(gpio_sandbox) = {
21 .name = "gpio_sandbox",
22};
23
Simon Glassf1a6c762011-10-07 13:53:38 +000024void flush_cache(unsigned long start, unsigned long size)
25{
26}
27
Rob Herring86bd4e82013-11-08 08:40:44 -060028unsigned long timer_read_counter(void)
Simon Glassf1a6c762011-10-07 13:53:38 +000029{
Rob Herring86bd4e82013-11-08 08:40:44 -060030 return os_get_nsec() / 1000;
Simon Glassf1a6c762011-10-07 13:53:38 +000031}
32
Simon Glassf1a6c762011-10-07 13:53:38 +000033int dram_init(void)
34{
Simon Glass62cf9122013-04-26 02:53:43 +000035 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
Simon Glassf1a6c762011-10-07 13:53:38 +000036 return 0;
37}
Simon Glassfd173402014-02-27 13:26:13 -070038
Simon Glassb9ddbf42014-02-27 13:26:19 -070039#ifdef CONFIG_BOARD_EARLY_INIT_F
40int board_early_init_f(void)
41{
42#ifdef CONFIG_VIDEO_SANDBOX_SDL
43 int ret;
44
45 ret = sandbox_lcd_sdl_early_init();
46 if (ret) {
47 puts("Could not init sandbox LCD emulation\n");
48 return ret;
49 }
50#endif
51
52 return 0;
53}
54#endif
55
Simon Glassfd173402014-02-27 13:26:13 -070056#ifdef CONFIG_BOARD_LATE_INIT
57int board_late_init(void)
58{
59 if (cros_ec_get_error()) {
60 /* Force console on */
61 gd->flags &= ~GD_FLG_SILENT;
62
63 printf("cros-ec communications failure %d\n",
64 cros_ec_get_error());
65 puts("\nPlease reset with Power+Refresh\n\n");
66 panic("Cannot init cros-ec device");
67 return -1;
68 }
69 return 0;
70}
71#endif