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> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 10 | #include <init.h> |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 11 | #include <led.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 12 | #include <os.h> |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 13 | #include <asm/test.h> |
Simon Glass | 7d95f2a | 2014-02-27 13:26:19 -0700 | [diff] [blame] | 14 | #include <asm/u-boot-sandbox.h> |
Matthias Weisser | d99a687 | 2011-11-29 12:16:40 +0100 | [diff] [blame] | 15 | |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 16 | /* |
17 | * Pointer to initial global data area | ||||
18 | * | ||||
19 | * Here we initialize it. | ||||
20 | */ | ||||
21 | gd_t *gd; | ||||
22 | |||||
Simon Glass | e2d8a71 | 2014-02-26 15:59:25 -0700 | [diff] [blame] | 23 | /* Add a simple GPIO device */ |
24 | U_BOOT_DEVICE(gpio_sandbox) = { | ||||
25 | .name = "gpio_sandbox", | ||||
26 | }; | ||||
27 | |||||
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 28 | void flush_cache(unsigned long start, unsigned long size) |
29 | { | ||||
30 | } | ||||
31 | |||||
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 32 | #ifndef CONFIG_TIMER |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 33 | /* system timer offset in ms */ |
34 | static unsigned long sandbox_timer_offset; | ||||
35 | |||||
Neil Armstrong | d0a9b82 | 2019-04-11 17:01:23 +0200 | [diff] [blame] | 36 | void timer_test_add_offset(unsigned long offset) |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 37 | { |
38 | sandbox_timer_offset += offset; | ||||
39 | } | ||||
40 | |||||
Rob Herring | 28c860b | 2013-11-08 08:40:44 -0600 | [diff] [blame] | 41 | unsigned long timer_read_counter(void) |
Mike Frysinger | 6994ccf | 2012-02-21 00:21:17 -0500 | [diff] [blame] | 42 | { |
Joe Hershberger | 909bd6d | 2015-04-21 13:57:18 -0500 | [diff] [blame] | 43 | return os_get_nsec() / 1000 + sandbox_timer_offset * 1000; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 44 | } |
Thomas Chou | 9961a0b | 2015-10-30 15:35:52 +0800 | [diff] [blame] | 45 | #endif |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 46 | |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 47 | int dram_init(void) |
48 | { | ||||
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 49 | gd->ram_size = CONFIG_SYS_SDRAM_SIZE; |
Simon Glass | 43bd194 | 2011-10-07 13:53:38 +0000 | [diff] [blame] | 50 | return 0; |
51 | } | ||||
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 52 | |
Patrick Delaunay | 17585e2 | 2018-07-27 16:37:09 +0200 | [diff] [blame] | 53 | int board_init(void) |
54 | { | ||||
55 | if (IS_ENABLED(CONFIG_LED)) | ||||
56 | led_default_state(); | ||||
57 | |||||
58 | return 0; | ||||
59 | } | ||||
60 | |||||
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_BOARD_LATE_INIT |
62 | int board_late_init(void) | ||||
63 | { | ||||
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 64 | struct udevice *dev; |
65 | int ret; | ||||
66 | |||||
67 | ret = uclass_first_device_err(UCLASS_CROS_EC, &dev); | ||||
68 | if (ret && ret != -ENODEV) { | ||||
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 69 | /* Force console on */ |
70 | gd->flags &= ~GD_FLG_SILENT; | ||||
71 | |||||
Simon Glass | a2a63a3 | 2018-11-06 15:21:26 -0700 | [diff] [blame] | 72 | printf("cros-ec communications failure %d\n", ret); |
Simon Glass | 86bf601 | 2014-02-27 13:26:13 -0700 | [diff] [blame] | 73 | puts("\nPlease reset with Power+Refresh\n\n"); |
74 | panic("Cannot init cros-ec device"); | ||||
75 | return -1; | ||||
76 | } | ||||
77 | return 0; | ||||
78 | } | ||||
79 | #endif |