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