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