blob: dcd73451a34876d744f7a77353a12bddd8989c63 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassf1a6c762011-10-07 13:53:38 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glassf1a6c762011-10-07 13:53:38 +00004 */
5
6#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -07007#include <cpu_func.h>
Simon Glassfd173402014-02-27 13:26:13 -07008#include <cros_ec.h>
Simon Glassb4d70702014-02-26 15:59:25 -07009#include <dm.h>
Patrick Delaunayd34a6a22020-07-28 11:51:22 +020010#include <env_internal.h>
Simon Glassa7b51302019-11-14 12:57:46 -070011#include <init.h>
Patrick Delaunay29bf6032018-07-27 16:37:09 +020012#include <led.h>
Matthias Weisser0d3dd142011-11-29 12:16:40 +010013#include <os.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Joe Hershberger74961352015-04-21 13:57:18 -050015#include <asm/test.h>
Simon Glassb9ddbf42014-02-27 13:26:19 -070016#include <asm/u-boot-sandbox.h>
Kory Maincent965a34f2021-05-04 19:31:23 +020017#include <malloc.h>
18
19#include <extension_board.h>
Matthias Weisser0d3dd142011-11-29 12:16:40 +010020
Simon Glassf1a6c762011-10-07 13:53:38 +000021/*
22 * Pointer to initial global data area
23 *
24 * Here we initialize it.
25 */
26gd_t *gd;
27
Simon Glasscb90bd32020-10-03 11:31:23 -060028#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassb4d70702014-02-26 15:59:25 -070029/* Add a simple GPIO device */
Simon Glass1d8364a2020-12-28 20:34:54 -070030U_BOOT_DRVINFO(gpio_sandbox) = {
Walter Lozano2901ac62020-06-25 01:10:04 -030031 .name = "sandbox_gpio",
Simon Glassb4d70702014-02-26 15:59:25 -070032};
Simon Glasscb90bd32020-10-03 11:31:23 -060033#endif
Simon Glassb4d70702014-02-26 15:59:25 -070034
Thomas Chou7b059dc2015-10-30 15:35:52 +080035#ifndef CONFIG_TIMER
Joe Hershberger74961352015-04-21 13:57:18 -050036/* system timer offset in ms */
37static unsigned long sandbox_timer_offset;
38
Neil Armstrong77c0dbc2019-04-11 17:01:23 +020039void timer_test_add_offset(unsigned long offset)
Joe Hershberger74961352015-04-21 13:57:18 -050040{
41 sandbox_timer_offset += offset;
42}
43
Rob Herring86bd4e82013-11-08 08:40:44 -060044unsigned long timer_read_counter(void)
Simon Glassf1a6c762011-10-07 13:53:38 +000045{
Joe Hershberger74961352015-04-21 13:57:18 -050046 return os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
Simon Glassf1a6c762011-10-07 13:53:38 +000047}
Thomas Chou7b059dc2015-10-30 15:35:52 +080048#endif
Simon Glassf1a6c762011-10-07 13:53:38 +000049
Patrick Delaunayd34a6a22020-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,
Heinrich Schuchardt55cbdf82021-03-04 18:28:37 +000054 ENVL_FAT,
Patrick Delaunayd34a6a22020-07-28 11:51:22 +020055};
56
57enum env_location env_get_location(enum env_operation op, int prio)
58{
59 if (prio >= ARRAY_SIZE(env_locations))
60 return ENVL_UNKNOWN;
61
62 return env_locations[prio];
63}
64
Simon Glassf1a6c762011-10-07 13:53:38 +000065int dram_init(void)
66{
Simon Glass62cf9122013-04-26 02:53:43 +000067 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
Simon Glassf1a6c762011-10-07 13:53:38 +000068 return 0;
69}
Simon Glassfd173402014-02-27 13:26:13 -070070
Patrick Delaunay29bf6032018-07-27 16:37:09 +020071int board_init(void)
72{
73 if (IS_ENABLED(CONFIG_LED))
74 led_default_state();
75
76 return 0;
77}
78
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090079int ft_board_setup(void *fdt, struct bd_info *bd)
Heinrich Schuchardta3fc9a42020-03-14 12:13:40 +010080{
81 /* Create an arbitrary reservation to allow testing OF_BOARD_SETUP.*/
82 return fdt_add_mem_rsv(fdt, 0x00d02000, 0x4000);
83}
84
Kory Maincent965a34f2021-05-04 19:31:23 +020085#ifdef CONFIG_CMD_EXTENSION
86int extension_board_scan(struct list_head *extension_list)
87{
88 struct extension *extension;
89 int i;
90
91 for (i = 0; i < 2; i++) {
92 extension = calloc(1, sizeof(struct extension));
93 snprintf(extension->overlay, sizeof(extension->overlay), "overlay%d.dtbo", i);
94 snprintf(extension->name, sizeof(extension->name), "extension board %d", i);
95 snprintf(extension->owner, sizeof(extension->owner), "sandbox");
96 snprintf(extension->version, sizeof(extension->version), "1.1");
97 snprintf(extension->other, sizeof(extension->other), "Fictionnal extension board");
98 list_add_tail(&extension->list, extension_list);
99 }
100
101 return i;
102}
103#endif
104
Simon Glassfd173402014-02-27 13:26:13 -0700105#ifdef CONFIG_BOARD_LATE_INIT
106int board_late_init(void)
107{
Simon Glassfe3f6432018-11-06 15:21:26 -0700108 struct udevice *dev;
109 int ret;
110
111 ret = uclass_first_device_err(UCLASS_CROS_EC, &dev);
112 if (ret && ret != -ENODEV) {
Simon Glassfd173402014-02-27 13:26:13 -0700113 /* Force console on */
114 gd->flags &= ~GD_FLG_SILENT;
115
Simon Glassfe3f6432018-11-06 15:21:26 -0700116 printf("cros-ec communications failure %d\n", ret);
Simon Glassfd173402014-02-27 13:26:13 -0700117 puts("\nPlease reset with Power+Refresh\n\n");
118 panic("Cannot init cros-ec device");
119 return -1;
120 }
121 return 0;
122}
123#endif