Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <errno.h> |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 9 | #include <asm/acpi_s3.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 10 | #include <asm/io.h> |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 11 | #include <asm/mrccache.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 12 | #include <asm/post.h> |
| 13 | #include <asm/processor.h> |
| 14 | #include <asm/fsp/fsp_support.h> |
| 15 | |
Simon Glass | daa93d9 | 2015-07-31 09:31:31 -0600 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Simon Glass | ee7c36f | 2017-03-28 10:27:30 -0600 | [diff] [blame] | 18 | int checkcpu(void) |
| 19 | { |
| 20 | return 0; |
| 21 | } |
| 22 | |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 23 | int print_cpuinfo(void) |
| 24 | { |
| 25 | post_code(POST_CPU_INFO); |
| 26 | return default_print_cpuinfo(); |
| 27 | } |
| 28 | |
Simon Glass | fa91273 | 2015-08-10 07:05:07 -0600 | [diff] [blame] | 29 | int fsp_init_phase_pci(void) |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 30 | { |
| 31 | u32 status; |
| 32 | |
| 33 | /* call into FspNotify */ |
| 34 | debug("Calling into FSP (notify phase INIT_PHASE_PCI): "); |
| 35 | status = fsp_notify(NULL, INIT_PHASE_PCI); |
Simon Glass | fa91273 | 2015-08-10 07:05:07 -0600 | [diff] [blame] | 36 | if (status) |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 37 | debug("fail, error code %x\n", status); |
| 38 | else |
| 39 | debug("OK\n"); |
| 40 | |
Simon Glass | fa91273 | 2015-08-10 07:05:07 -0600 | [diff] [blame] | 41 | return status ? -EPERM : 0; |
| 42 | } |
| 43 | |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 44 | void board_final_cleanup(void) |
| 45 | { |
| 46 | u32 status; |
| 47 | |
| 48 | /* call into FspNotify */ |
| 49 | debug("Calling into FSP (notify phase INIT_PHASE_BOOT): "); |
| 50 | status = fsp_notify(NULL, INIT_PHASE_BOOT); |
Simon Glass | 3825229 | 2015-08-12 19:33:07 -0600 | [diff] [blame] | 51 | if (status) |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 52 | debug("fail, error code %x\n", status); |
| 53 | else |
| 54 | debug("OK\n"); |
| 55 | |
| 56 | return; |
| 57 | } |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 58 | |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 59 | static __maybe_unused void *fsp_prepare_mrc_cache(void) |
| 60 | { |
| 61 | struct mrc_data_container *cache; |
| 62 | struct mrc_region entry; |
| 63 | int ret; |
| 64 | |
| 65 | ret = mrccache_get_region(NULL, &entry); |
| 66 | if (ret) |
| 67 | return NULL; |
| 68 | |
| 69 | cache = mrccache_find_current(&entry); |
| 70 | if (!cache) |
| 71 | return NULL; |
| 72 | |
| 73 | debug("%s: mrc cache at %p, size %x checksum %04x\n", __func__, |
| 74 | cache->data, cache->data_size, cache->checksum); |
| 75 | |
| 76 | return cache->data; |
| 77 | } |
| 78 | |
Simon Glass | 295c423 | 2017-03-28 10:27:18 -0600 | [diff] [blame] | 79 | int arch_fsp_init(void) |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 80 | { |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 81 | void *nvs; |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 82 | int boot_mode = BOOT_FULL_CONFIG; |
| 83 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 84 | int prev_sleep_state = chipset_prev_sleep_state(); |
Bin Meng | ef61f77 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 85 | gd->arch.prev_sleep_state = prev_sleep_state; |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 86 | #endif |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 87 | |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 88 | if (!gd->arch.hob_list) { |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 89 | #ifdef CONFIG_ENABLE_MRC_CACHE |
| 90 | nvs = fsp_prepare_mrc_cache(); |
| 91 | #else |
| 92 | nvs = NULL; |
| 93 | #endif |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 94 | |
| 95 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 96 | if (prev_sleep_state == ACPI_S3) { |
| 97 | if (nvs == NULL) { |
| 98 | /* If waking from S3 and no cache then */ |
| 99 | debug("No MRC cache found in S3 resume path\n"); |
| 100 | post_code(POST_RESUME_FAILURE); |
| 101 | /* Clear Sleep Type */ |
| 102 | chipset_clear_sleep_state(); |
| 103 | /* Reboot */ |
| 104 | debug("Rebooting..\n"); |
| 105 | reset_cpu(0); |
| 106 | /* Should not reach here.. */ |
| 107 | panic("Reboot System"); |
| 108 | } |
| 109 | |
| 110 | boot_mode = BOOT_ON_S3_RESUME; |
| 111 | } |
| 112 | #endif |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 113 | /* |
| 114 | * The first time we enter here, call fsp_init(). |
| 115 | * Note the execution does not return to this function, |
| 116 | * instead it jumps to fsp_continue(). |
| 117 | */ |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 118 | fsp_init(CONFIG_FSP_TEMP_RAM_ADDR, boot_mode, nvs); |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 119 | } else { |
| 120 | /* |
| 121 | * The second time we enter here, adjust the size of malloc() |
| 122 | * pool before relocation. Given gd->malloc_base was adjusted |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 123 | * after the call to board_init_f_init_reserve() in arch/x86/ |
| 124 | * cpu/start.S, we should fix up gd->malloc_limit here. |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 125 | */ |
| 126 | gd->malloc_limit += CONFIG_FSP_SYS_MALLOC_F_LEN; |
| 127 | } |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 128 | |
| 129 | return 0; |
| 130 | } |