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> |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 10 | #include <env_internal.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 11 | #include <init.h> |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 12 | #include <led.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 13 | #include <os.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 15 | #include <asm/test.h> |
Simon Glass | 7d95f2a | 2014-02-27 13:26:19 -0700 | [diff] [blame] | 16 | #include <asm/u-boot-sandbox.h> |
Kory Maincent | 95300f2 | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 17 | #include <malloc.h> |
| 18 | |
| 19 | #include <extension_board.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 20 | |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Pointer to initial global data area |
| 23 | * |
| 24 | * Here we initialize it. |
| 25 | */ |
| 26 | gd_t *gd; |
| 27 | |
Simon Glass | c147329 | 2020-10-03 11:31:23 -0600 | [diff] [blame] | 28 | #if !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 29 | /* Add a simple GPIO device */ |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 30 | U_BOOT_DRVINFO(gpio_sandbox) = { |
Walter Lozano | e3e2470 | 2020-06-25 01:10:04 -0300 | [diff] [blame] | 31 | .name = "sandbox_gpio", |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 32 | }; |
Simon Glass | c147329 | 2020-10-03 11:31:23 -0600 | [diff] [blame] | 33 | #endif |
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 34 | |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 35 | #ifndef CONFIG_TIMER |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 36 | /* system timer offset in ms */ |
| 37 | static unsigned long sandbox_timer_offset; |
| 38 | |
Neil Armstrong | d0a9b82 | 2019-04-11 17:01:23 +0200 | [diff] [blame] | 39 | void timer_test_add_offset(unsigned long offset) |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 40 | { |
| 41 | sandbox_timer_offset += offset; |
| 42 | } |
| 43 | |
Rob Herring | 28c860b | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 44 | unsigned long timer_read_counter(void) |
Mike Frysinger | 6994ccf | 2012-02-21 00:21:17 -0500 | [diff] [blame] | 45 | { |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 46 | return os_get_nsec() / 1000 + sandbox_timer_offset * 1000; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 47 | } |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 48 | #endif |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 49 | |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 50 | /* specific order for sandbox: nowhere is the first value, used by default */ |
| 51 | static enum env_location env_locations[] = { |
| 52 | ENVL_NOWHERE, |
| 53 | ENVL_EXT4, |
Heinrich Schuchardt | 2a38e71 | 2021-03-04 18:28:37 +0000 | [diff] [blame] | 54 | ENVL_FAT, |
Patrick Delaunay | 4df087c | 2020-07-28 11:51:22 +0200 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | enum 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 Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 65 | int dram_init(void) |
| 66 | { |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 67 | gd->ram_size = CONFIG_SYS_SDRAM_SIZE; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 68 | return 0; |
| 69 | } |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 70 | |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 71 | int board_init(void) |
| 72 | { |
| 73 | if (IS_ENABLED(CONFIG_LED)) |
| 74 | led_default_state(); |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 79 | int ft_board_setup(void *fdt, struct bd_info *bd) |
Heinrich Schuchardt | 1c0bc80 | 2020-03-14 12:13:40 +0100 | [diff] [blame] | 80 | { |
| 81 | /* Create an arbitrary reservation to allow testing OF_BOARD_SETUP.*/ |
| 82 | return fdt_add_mem_rsv(fdt, 0x00d02000, 0x4000); |
| 83 | } |
| 84 | |
Kory Maincent | 95300f2 | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 85 | #ifdef CONFIG_CMD_EXTENSION |
| 86 | int 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 Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 105 | #ifdef CONFIG_BOARD_LATE_INIT |
| 106 | int board_late_init(void) |
| 107 | { |
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 108 | struct udevice *dev; |
| 109 | int ret; |
| 110 | |
| 111 | ret = uclass_first_device_err(UCLASS_CROS_EC, &dev); |
| 112 | if (ret && ret != -ENODEV) { |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 113 | /* Force console on */ |
| 114 | gd->flags &= ~GD_FLG_SILENT; |
| 115 | |
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 116 | printf("cros-ec communications failure %d\n", ret); |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 117 | 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 |