blob: 9d58860451c55bc6286953859e1b5e5affa9da21 [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 Glass28199612022-07-13 06:06:58 -06007#include <addr_map.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass86bf6012014-02-27 13:26:13 -07009#include <cros_ec.h>
Simon Glasse2d8a712014-02-26 15:59:25 -070010#include <dm.h>
Sughosh Ganu741ef862022-04-15 11:29:34 +053011#include <efi.h>
12#include <efi_loader.h>
Patrick Delaunay4df087c2020-07-28 11:51:22 +020013#include <env_internal.h>
Simon Glassf52a7f02023-07-15 21:39:15 -060014#include <extension_board.h>
Simon Glass52559322019-11-14 12:57:46 -070015#include <init.h>
Patrick Delaunay17585e22018-07-27 16:37:09 +020016#include <led.h>
Simon Glassf52a7f02023-07-15 21:39:15 -060017#include <malloc.h>
Simon Glass92ccaf72023-07-15 21:39:16 -060018#include <mapmem.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010019#include <os.h>
Simon Glass92ccaf72023-07-15 21:39:16 -060020#include <acpi/acpi_table.h>
Simon Glass401d1c42020-10-30 21:38:53 -060021#include <asm/global_data.h>
Joe Hershberger909bd6d2015-04-21 13:57:18 -050022#include <asm/test.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070023#include <asm/u-boot-sandbox.h>
Sughosh Ganu741ef862022-04-15 11:29:34 +053024#include <linux/kernel.h>
Simon Glassf52a7f02023-07-15 21:39:15 -060025#include <linux/sizes.h>
Matthias Weisserd99a6872011-11-29 12:16:40 +010026
Simon Glass43bd1942011-10-07 13:53:38 +000027/*
28 * Pointer to initial global data area
29 *
30 * Here we initialize it.
31 */
32gd_t *gd;
33
Simon Glass71aa8062023-02-05 15:39:42 -070034#if IS_ENABLED(CONFIG_EFI_HAVE_CAPSULE_SUPPORT)
Sughosh Ganu0524bfc2022-11-10 22:34:30 +053035/* GUIDs for capsule updatable firmware images */
36#define SANDBOX_UBOOT_IMAGE_GUID \
37 EFI_GUID(0x09d7cf52, 0x0720, 0x4710, 0x91, 0xd1, \
38 0x08, 0x46, 0x9b, 0x7f, 0xe9, 0xc8)
39
40#define SANDBOX_UBOOT_ENV_IMAGE_GUID \
41 EFI_GUID(0x5a7021f5, 0xfef2, 0x48b4, 0xaa, 0xba, \
42 0x83, 0x2e, 0x77, 0x74, 0x18, 0xc0)
43
44#define SANDBOX_FIT_IMAGE_GUID \
45 EFI_GUID(0x3673b45d, 0x6a7c, 0x46f3, 0x9e, 0x60, \
46 0xad, 0xab, 0xb0, 0x3f, 0x79, 0x37)
47
Sughosh Ganu741ef862022-04-15 11:29:34 +053048struct efi_fw_image fw_images[] = {
49#if defined(CONFIG_EFI_CAPSULE_FIRMWARE_RAW)
50 {
51 .image_type_id = SANDBOX_UBOOT_IMAGE_GUID,
52 .fw_name = u"SANDBOX-UBOOT",
53 .image_index = 1,
54 },
55 {
56 .image_type_id = SANDBOX_UBOOT_ENV_IMAGE_GUID,
57 .fw_name = u"SANDBOX-UBOOT-ENV",
58 .image_index = 2,
59 },
60#elif defined(CONFIG_EFI_CAPSULE_FIRMWARE_FIT)
61 {
62 .image_type_id = SANDBOX_FIT_IMAGE_GUID,
63 .fw_name = u"SANDBOX-FIT",
64 .image_index = 1,
65 },
66#endif
67};
68
69struct efi_capsule_update_info update_info = {
70 .dfu_string = "sf 0:0=u-boot-bin raw 0x100000 0x50000;"
71 "u-boot-env raw 0x150000 0x200000",
Masahisa Kojimacccea182023-06-07 14:41:51 +090072 .num_images = ARRAY_SIZE(fw_images),
Sughosh Ganu741ef862022-04-15 11:29:34 +053073 .images = fw_images,
74};
75
Sughosh Ganu741ef862022-04-15 11:29:34 +053076#endif /* EFI_HAVE_CAPSULE_SUPPORT */
77
Simon Glassc1473292020-10-03 11:31:23 -060078#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass95397382021-08-07 07:24:04 -060079/*
80 * Add a simple GPIO device (don't use with of-platdata as it interferes with
81 * the auto-generated devices)
82 */
Simon Glass20e442a2020-12-28 20:34:54 -070083U_BOOT_DRVINFO(gpio_sandbox) = {
Walter Lozanoe3e24702020-06-25 01:10:04 -030084 .name = "sandbox_gpio",
Simon Glasse2d8a712014-02-26 15:59:25 -070085};
Simon Glassc1473292020-10-03 11:31:23 -060086#endif
Simon Glasse2d8a712014-02-26 15:59:25 -070087
Thomas Chou9961a0b2015-10-30 15:35:52 +080088#ifndef CONFIG_TIMER
Joe Hershberger909bd6d2015-04-21 13:57:18 -050089/* system timer offset in ms */
90static unsigned long sandbox_timer_offset;
91
Neil Armstrongd0a9b822019-04-11 17:01:23 +020092void timer_test_add_offset(unsigned long offset)
Joe Hershberger909bd6d2015-04-21 13:57:18 -050093{
94 sandbox_timer_offset += offset;
95}
96
Rob Herring28c860b2013-11-08 08:40:44 -060097unsigned long timer_read_counter(void)
Mike Frysinger6994ccf2012-02-21 00:21:17 -050098{
Joe Hershberger909bd6d2015-04-21 13:57:18 -050099 return os_get_nsec() / 1000 + sandbox_timer_offset * 1000;
Simon Glass43bd1942011-10-07 13:53:38 +0000100}
Thomas Chou9961a0b2015-10-30 15:35:52 +0800101#endif
Simon Glass43bd1942011-10-07 13:53:38 +0000102
Patrick Delaunay4df087c2020-07-28 11:51:22 +0200103/* specific order for sandbox: nowhere is the first value, used by default */
104static enum env_location env_locations[] = {
105 ENVL_NOWHERE,
106 ENVL_EXT4,
Heinrich Schuchardt2a38e712021-03-04 18:28:37 +0000107 ENVL_FAT,
Patrick Delaunay4df087c2020-07-28 11:51:22 +0200108};
109
110enum env_location env_get_location(enum env_operation op, int prio)
111{
112 if (prio >= ARRAY_SIZE(env_locations))
113 return ENVL_UNKNOWN;
114
115 return env_locations[prio];
116}
117
Simon Glass43bd1942011-10-07 13:53:38 +0000118int dram_init(void)
119{
Tom Riniaa6e94d2022-11-16 13:10:37 -0500120 gd->ram_size = CFG_SYS_SDRAM_SIZE;
Simon Glass43bd1942011-10-07 13:53:38 +0000121 return 0;
122}
Simon Glass86bf6012014-02-27 13:26:13 -0700123
Patrick Delaunay17585e22018-07-27 16:37:09 +0200124int board_init(void)
125{
Patrick Delaunay17585e22018-07-27 16:37:09 +0200126 return 0;
127}
128
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900129int ft_board_setup(void *fdt, struct bd_info *bd)
Heinrich Schuchardt1c0bc802020-03-14 12:13:40 +0100130{
131 /* Create an arbitrary reservation to allow testing OF_BOARD_SETUP.*/
132 return fdt_add_mem_rsv(fdt, 0x00d02000, 0x4000);
133}
134
Kory Maincent95300f22021-05-04 19:31:23 +0200135#ifdef CONFIG_CMD_EXTENSION
136int extension_board_scan(struct list_head *extension_list)
137{
138 struct extension *extension;
139 int i;
140
141 for (i = 0; i < 2; i++) {
142 extension = calloc(1, sizeof(struct extension));
143 snprintf(extension->overlay, sizeof(extension->overlay), "overlay%d.dtbo", i);
144 snprintf(extension->name, sizeof(extension->name), "extension board %d", i);
145 snprintf(extension->owner, sizeof(extension->owner), "sandbox");
146 snprintf(extension->version, sizeof(extension->version), "1.1");
Heinrich Schuchardtf29f98d2022-10-16 22:17:46 +0200147 snprintf(extension->other, sizeof(extension->other), "Fictional extension board");
Kory Maincent95300f22021-05-04 19:31:23 +0200148 list_add_tail(&extension->list, extension_list);
149 }
150
151 return i;
152}
153#endif
154
Simon Glass86bf6012014-02-27 13:26:13 -0700155#ifdef CONFIG_BOARD_LATE_INIT
156int board_late_init(void)
157{
Simon Glassa2a63a32018-11-06 15:21:26 -0700158 struct udevice *dev;
Simon Glass92ccaf72023-07-15 21:39:16 -0600159 ulong addr, end;
160 void *ptr;
Simon Glassa2a63a32018-11-06 15:21:26 -0700161 int ret;
162
163 ret = uclass_first_device_err(UCLASS_CROS_EC, &dev);
164 if (ret && ret != -ENODEV) {
Simon Glass86bf6012014-02-27 13:26:13 -0700165 /* Force console on */
166 gd->flags &= ~GD_FLG_SILENT;
167
Simon Glassa2a63a32018-11-06 15:21:26 -0700168 printf("cros-ec communications failure %d\n", ret);
Simon Glass86bf6012014-02-27 13:26:13 -0700169 puts("\nPlease reset with Power+Refresh\n\n");
170 panic("Cannot init cros-ec device");
171 return -1;
172 }
Simon Glass92ccaf72023-07-15 21:39:16 -0600173
174 if (IS_ENABLED(CONFIG_GENERATE_ACPI_TABLE)) {
175 /* Reserve 64K for ACPI tables, aligned to a 4K boundary */
176 ptr = memalign(SZ_4K, SZ_64K);
177 addr = map_to_sysmem(ptr);
178
179 /* Generate ACPI tables */
180 end = write_acpi_tables(addr);
181 gd->arch.table_start = addr;
182 gd->arch.table_end = addr;
183 }
184
Simon Glass86bf6012014-02-27 13:26:13 -0700185 return 0;
186}
187#endif
Simon Glass28199612022-07-13 06:06:58 -0600188
189int init_addr_map(void)
190{
191 if (IS_ENABLED(CONFIG_ADDR_MAP))
Tom Riniaa6e94d2022-11-16 13:10:37 -0500192 addrmap_set_entry(0, 0, CFG_SYS_SDRAM_SIZE, 0);
Simon Glass28199612022-07-13 06:06:58 -0600193
194 return 0;
195}
Sughosh Ganu873cf8a2022-10-21 18:16:05 +0530196
197#if defined(CONFIG_FWU_MULTI_BANK_UPDATE)
198void fwu_plat_get_bootidx(uint *boot_idx)
199{
200 /* Dummy value */
201 *boot_idx = 0;
202}
203#endif