Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 5c2aabf | 2019-09-25 08:56:32 -0600 | [diff] [blame] | 7 | #include <acpi_s3.h> |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 8 | #include <dm.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 9 | #include <errno.h> |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 10 | #include <rtc.h> |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 11 | #include <asm/cmos_layout.h> |
| 12 | #include <asm/early_cmos.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 13 | #include <asm/io.h> |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 14 | #include <asm/mrccache.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 15 | #include <asm/post.h> |
| 16 | #include <asm/processor.h> |
Simon Glass | 6c34fc1 | 2019-09-25 08:00:11 -0600 | [diff] [blame] | 17 | #include <asm/fsp1/fsp_support.h> |
Simon Glass | 509805b | 2015-01-27 22:13:39 -0700 | [diff] [blame] | 18 | |
Simon Glass | daa93d9 | 2015-07-31 09:31:31 -0600 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Simon Glass | 295c423 | 2017-03-28 10:27:18 -0600 | [diff] [blame] | 21 | int arch_fsp_init(void) |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 22 | { |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 23 | void *nvs; |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 24 | int stack = CONFIG_FSP_TEMP_RAM_ADDR; |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 25 | int boot_mode = BOOT_FULL_CONFIG; |
| 26 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 27 | int prev_sleep_state = chipset_prev_sleep_state(); |
Bin Meng | ef61f77 | 2017-04-21 07:24:32 -0700 | [diff] [blame] | 28 | gd->arch.prev_sleep_state = prev_sleep_state; |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 29 | #endif |
Bin Meng | 07793c08 | 2015-10-11 21:37:42 -0700 | [diff] [blame] | 30 | |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 31 | if (!gd->arch.hob_list) { |
Simon Glass | f755a45 | 2019-09-25 08:11:27 -0600 | [diff] [blame] | 32 | if (IS_ENABLED(CONFIG_ENABLE_MRC_CACHE)) |
| 33 | nvs = fsp_prepare_mrc_cache(); |
| 34 | else |
| 35 | nvs = NULL; |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 36 | |
| 37 | #ifdef CONFIG_HAVE_ACPI_RESUME |
| 38 | if (prev_sleep_state == ACPI_S3) { |
| 39 | if (nvs == NULL) { |
| 40 | /* If waking from S3 and no cache then */ |
| 41 | debug("No MRC cache found in S3 resume path\n"); |
| 42 | post_code(POST_RESUME_FAILURE); |
| 43 | /* Clear Sleep Type */ |
| 44 | chipset_clear_sleep_state(); |
| 45 | /* Reboot */ |
| 46 | debug("Rebooting..\n"); |
Bin Meng | 6e57714 | 2018-07-19 03:07:32 -0700 | [diff] [blame] | 47 | outb(SYS_RST | RST_CPU, IO_PORT_RESET); |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 48 | /* Should not reach here.. */ |
| 49 | panic("Reboot System"); |
| 50 | } |
| 51 | |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 52 | /* |
Vagrant Cascadian | 973c099 | 2019-05-03 14:28:37 -0800 | [diff] [blame] | 53 | * DM is not available yet at this point, hence call |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 54 | * CMOS access library which does not depend on DM. |
| 55 | */ |
| 56 | stack = cmos_read32(CMOS_FSP_STACK_ADDR); |
Bin Meng | acb4bf9 | 2017-04-21 07:24:31 -0700 | [diff] [blame] | 57 | boot_mode = BOOT_ON_S3_RESUME; |
| 58 | } |
| 59 | #endif |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 60 | /* |
| 61 | * The first time we enter here, call fsp_init(). |
| 62 | * Note the execution does not return to this function, |
| 63 | * instead it jumps to fsp_continue(). |
| 64 | */ |
Bin Meng | cf20030 | 2017-04-21 07:24:39 -0700 | [diff] [blame] | 65 | fsp_init(stack, boot_mode, nvs); |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 66 | } else { |
| 67 | /* |
| 68 | * The second time we enter here, adjust the size of malloc() |
| 69 | * pool before relocation. Given gd->malloc_base was adjusted |
Albert ARIBAUD | 6cb4c46 | 2015-11-25 17:56:32 +0100 | [diff] [blame] | 70 | * after the call to board_init_f_init_reserve() in arch/x86/ |
| 71 | * cpu/start.S, we should fix up gd->malloc_limit here. |
Bin Meng | 12440cd | 2015-08-20 06:40:19 -0700 | [diff] [blame] | 72 | */ |
| 73 | gd->malloc_limit += CONFIG_FSP_SYS_MALLOC_F_LEN; |
| 74 | } |
Bin Meng | d560c5c | 2015-06-07 11:33:14 +0800 | [diff] [blame] | 75 | |
| 76 | return 0; |
| 77 | } |