Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 8 | #include <cros_ec.h> |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 10 | #include <efi.h> |
| 11 | #include <efi_loader.h> |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 12 | #include <env_internal.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 13 | #include <init.h> |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 14 | #include <led.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 15 | #include <os.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 17 | #include <asm/test.h> |
Simon Glass | 7d95f2a | 2014-02-27 13:26:19 -0700 | [diff] [blame] | 18 | #include <asm/u-boot-sandbox.h> |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Kory Maincent | 95300f2 | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 20 | #include <malloc.h> |
| 21 | |
| 22 | #include <extension_board.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 23 | |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 24 | /* |
| 25 | * Pointer to initial global data area |
| 26 | * |
| 27 | * Here we initialize it. |
| 28 | */ |
| 29 | gd_t *gd; |
| 30 | |
Sughosh Ganu | 741ef86 | 2022-04-15 11:29:34 +0530 | [diff] [blame] | 31 | #if CONFIG_IS_ENABLED(EFI_HAVE_CAPSULE_SUPPORT) |
| 32 | struct efi_fw_image fw_images[] = { |
| 33 | #if defined(CONFIG_EFI_CAPSULE_FIRMWARE_RAW) |
| 34 | { |
| 35 | .image_type_id = SANDBOX_UBOOT_IMAGE_GUID, |
| 36 | .fw_name = u"SANDBOX-UBOOT", |
| 37 | .image_index = 1, |
| 38 | }, |
| 39 | { |
| 40 | .image_type_id = SANDBOX_UBOOT_ENV_IMAGE_GUID, |
| 41 | .fw_name = u"SANDBOX-UBOOT-ENV", |
| 42 | .image_index = 2, |
| 43 | }, |
| 44 | #elif defined(CONFIG_EFI_CAPSULE_FIRMWARE_FIT) |
| 45 | { |
| 46 | .image_type_id = SANDBOX_FIT_IMAGE_GUID, |
| 47 | .fw_name = u"SANDBOX-FIT", |
| 48 | .image_index = 1, |
| 49 | }, |
| 50 | #endif |
| 51 | }; |
| 52 | |
| 53 | struct efi_capsule_update_info update_info = { |
| 54 | .dfu_string = "sf 0:0=u-boot-bin raw 0x100000 0x50000;" |
| 55 | "u-boot-env raw 0x150000 0x200000", |
| 56 | .images = fw_images, |
| 57 | }; |
| 58 | |
| 59 | u8 num_image_type_guids = ARRAY_SIZE(fw_images); |
| 60 | #endif /* EFI_HAVE_CAPSULE_SUPPORT */ |
| 61 | |
Simon Glass | c147329 | 2020-10-03 11:31:23 -0600 | [diff] [blame] | 62 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 9539738 | 2021-08-07 07:24:04 -0600 | [diff] [blame] | 63 | /* |
| 64 | * Add a simple GPIO device (don't use with of-platdata as it interferes with |
| 65 | * the auto-generated devices) |
| 66 | */ |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 67 | U_BOOT_DRVINFO(gpio_sandbox) = { |
Walter Lozano | e3e2470 | 2020-06-25 01:10:04 -0300 | [diff] [blame] | 68 | .name = "sandbox_gpio", |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 69 | }; |
Simon Glass | c147329 | 2020-10-03 11:31:23 -0600 | [diff] [blame] | 70 | #endif |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 71 | |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 72 | #ifndef CONFIG_TIMER |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 73 | /* system timer offset in ms */ |
| 74 | static unsigned long sandbox_timer_offset; |
| 75 | |
Neil Armstrong | d0a9b82 | 2019-04-11 17:01:23 +0200 | [diff] [blame] | 76 | void timer_test_add_offset(unsigned long offset) |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 77 | { |
| 78 | sandbox_timer_offset += offset; |
| 79 | } |
| 80 | |
Rob Herring | 28c860b | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 81 | unsigned long timer_read_counter(void) |
Mike Frysinger | 6994ccf | 2012-02-21 00:21:17 -0500 | [diff] [blame] | 82 | { |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 83 | return os_get_nsec() / 1000 + sandbox_timer_offset * 1000; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 84 | } |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 85 | #endif |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 86 | |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 87 | /* specific order for sandbox: nowhere is the first value, used by default */ |
| 88 | static enum env_location env_locations[] = { |
| 89 | ENVL_NOWHERE, |
| 90 | ENVL_EXT4, |
Heinrich Schuchardt | 2a38e71 | 2021-03-04 18:28:37 +0000 | [diff] [blame] | 91 | ENVL_FAT, |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | enum env_location env_get_location(enum env_operation op, int prio) |
| 95 | { |
| 96 | if (prio >= ARRAY_SIZE(env_locations)) |
| 97 | return ENVL_UNKNOWN; |
| 98 | |
| 99 | return env_locations[prio]; |
| 100 | } |
| 101 | |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 102 | int dram_init(void) |
| 103 | { |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 104 | gd->ram_size = CONFIG_SYS_SDRAM_SIZE; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 105 | return 0; |
| 106 | } |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 107 | |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 108 | int board_init(void) |
| 109 | { |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 113 | int ft_board_setup(void *fdt, struct bd_info *bd) |
Heinrich Schuchardt | 1c0bc80 | 2020-03-14 12:13:40 +0100 | [diff] [blame] | 114 | { |
| 115 | /* Create an arbitrary reservation to allow testing OF_BOARD_SETUP.*/ |
| 116 | return fdt_add_mem_rsv(fdt, 0x00d02000, 0x4000); |
| 117 | } |
| 118 | |
Kory Maincent | 95300f2 | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 119 | #ifdef CONFIG_CMD_EXTENSION |
| 120 | int extension_board_scan(struct list_head *extension_list) |
| 121 | { |
| 122 | struct extension *extension; |
| 123 | int i; |
| 124 | |
| 125 | for (i = 0; i < 2; i++) { |
| 126 | extension = calloc(1, sizeof(struct extension)); |
| 127 | snprintf(extension->overlay, sizeof(extension->overlay), "overlay%d.dtbo", i); |
| 128 | snprintf(extension->name, sizeof(extension->name), "extension board %d", i); |
| 129 | snprintf(extension->owner, sizeof(extension->owner), "sandbox"); |
| 130 | snprintf(extension->version, sizeof(extension->version), "1.1"); |
| 131 | snprintf(extension->other, sizeof(extension->other), "Fictionnal extension board"); |
| 132 | list_add_tail(&extension->list, extension_list); |
| 133 | } |
| 134 | |
| 135 | return i; |
| 136 | } |
| 137 | #endif |
| 138 | |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 139 | #ifdef CONFIG_BOARD_LATE_INIT |
| 140 | int board_late_init(void) |
| 141 | { |
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 142 | struct udevice *dev; |
| 143 | int ret; |
| 144 | |
| 145 | ret = uclass_first_device_err(UCLASS_CROS_EC, &dev); |
| 146 | if (ret && ret != -ENODEV) { |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 147 | /* Force console on */ |
| 148 | gd->flags &= ~GD_FLG_SILENT; |
| 149 | |
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 150 | printf("cros-ec communications failure %d\n", ret); |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 151 | puts("\nPlease reset with Power+Refresh\n\n"); |
| 152 | panic("Cannot init cros-ec device"); |
| 153 | return -1; |
| 154 | } |
| 155 | return 0; |
| 156 | } |
| 157 | #endif |