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