blob: 18a605de026607afd7499fa8a3ad011e80186456 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass43bd1942011-10-07 13:53:38 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass43bd1942011-10-07 13:53:38 +00004 */
5
6#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07007#include <cpu_func.h>
Simon Glass86bf6012014-02-27 13:26:13 -07008#include <cros_ec.h>
Simon Glasse2d8a712014-02-26 15:59:25 -07009#include <dm.h>
Patrick Delaunay4df087c2020-07-28 11:51:22 +020010#include <env_internal.h>
Simon Glass52559322019-11-14 12:57:46 -070011#include <init.h>
Patrick Delaunay17585e22018-07-27 16:37:09 +020012#include <led.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010013#include <os.h>
Joe Hershberger909bd6d2015-04-21 13:57:18 -050014#include <asm/test.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070015#include <asm/u-boot-sandbox.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010016
Simon Glass43bd1942011-10-07 13:53:38 +000017/*
18 * Pointer to initial global data area
19 *
20 * Here we initialize it.
21 */
22gd_t *gd;
23
Simon Glassc1473292020-10-03 11:31:23 -060024#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse2d8a712014-02-26 15:59:25 -070025/* Add a simple GPIO device */
26U_BOOT_DEVICE(gpio_sandbox) = {
Walter Lozanoe3e24702020-06-25 01:10:04 -030027 .name = "sandbox_gpio",
Simon Glasse2d8a712014-02-26 15:59:25 -070028};
Simon Glassc1473292020-10-03 11:31:23 -060029#endif
Simon Glasse2d8a712014-02-26 15:59:25 -070030
Simon Glass43bd1942011-10-07 13:53:38 +000031void flush_cache(unsigned long start, unsigned long size)
32{
33}
34
Thomas Chou9961a0b2015-10-30 15:35:52 +080035#ifndef CONFIG_TIMER
Joe Hershberger909bd6d2015-04-21 13:57:18 -050036/* system timer offset in ms */
37static unsigned long sandbox_timer_offset;
38
Neil Armstrongd0a9b822019-04-11 17:01:23 +020039void timer_test_add_offset(unsigned long offset)
Joe Hershberger909bd6d2015-04-21 13:57:18 -050040{
41 sandbox_timer_offset += offset;
42}
43
Rob Herring28c860b2013-11-08 08:40:44 -060044unsigned long timer_read_counter(void)
Mike Frysinger6994ccf2012-02-21 00:21:17 -050045{
Joe Hershberger909bd6d2015-04-21 13:57:18 -050046 return os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
Simon Glass43bd1942011-10-07 13:53:38 +000047}
Thomas Chou9961a0b2015-10-30 15:35:52 +080048#endif
Simon Glass43bd1942011-10-07 13:53:38 +000049
Patrick Delaunay4df087c2020-07-28 11:51:22 +020050/* specific order for sandbox: nowhere is the first value, used by default */
51static enum env_location env_locations[] = {
52 ENVL_NOWHERE,
53 ENVL_EXT4,
54};
55
56enum env_location env_get_location(enum env_operation op, int prio)
57{
58 if (prio >= ARRAY_SIZE(env_locations))
59 return ENVL_UNKNOWN;
60
61 return env_locations[prio];
62}
63
Simon Glass43bd1942011-10-07 13:53:38 +000064int dram_init(void)
65{
Simon Glassa733b062013-04-26 02:53:43 +000066 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
Simon Glass43bd1942011-10-07 13:53:38 +000067 return 0;
68}
Simon Glass86bf6012014-02-27 13:26:13 -070069
Patrick Delaunay17585e22018-07-27 16:37:09 +020070int board_init(void)
71{
72 if (IS_ENABLED(CONFIG_LED))
73 led_default_state();
74
75 return 0;
76}
77
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090078int ft_board_setup(void *fdt, struct bd_info *bd)
Heinrich Schuchardt1c0bc802020-03-14 12:13:40 +010079{
80 /* Create an arbitrary reservation to allow testing OF_BOARD_SETUP.*/
81 return fdt_add_mem_rsv(fdt, 0x00d02000, 0x4000);
82}
83
Simon Glass86bf6012014-02-27 13:26:13 -070084#ifdef CONFIG_BOARD_LATE_INIT
85int board_late_init(void)
86{
Simon Glassa2a63a32018-11-06 15:21:26 -070087 struct udevice *dev;
88 int ret;
89
90 ret = uclass_first_device_err(UCLASS_CROS_EC, &dev);
91 if (ret && ret != -ENODEV) {
Simon Glass86bf6012014-02-27 13:26:13 -070092 /* Force console on */
93 gd->flags &= ~GD_FLG_SILENT;
94
Simon Glassa2a63a32018-11-06 15:21:26 -070095 printf("cros-ec communications failure %d\n", ret);
Simon Glass86bf6012014-02-27 13:26:13 -070096 puts("\nPlease reset with Power+Refresh\n\n");
97 panic("Cannot init cros-ec device");
98 return -1;
99 }
100 return 0;
101}
102#endif