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