Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com> |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 1fa70f8 | 2019-11-14 12:57:34 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 8 | #include <dm.h> |
| 9 | #include <errno.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 12 | #include <rtc.h> |
Simon Glass | 5046109 | 2020-04-08 16:57:35 -0600 | [diff] [blame] | 13 | #include <acpi/acpi_s3.h> |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 14 | #include <asm/cmos_layout.h> |
| 15 | #include <asm/early_cmos.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 17 | #include <asm/io.h> |
| 18 | #include <asm/mrccache.h> |
| 19 | #include <asm/post.h> |
| 20 | #include <asm/processor.h> |
| 21 | #include <asm/fsp/fsp_support.h> |
| 22 | |
| 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
| 25 | int checkcpu(void) |
| 26 | { |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | int print_cpuinfo(void) |
| 31 | { |
| 32 | post_code(POST_CPU_INFO); |
| 33 | return default_print_cpuinfo(); |
| 34 | } |
| 35 | |
| 36 | int fsp_init_phase_pci(void) |
| 37 | { |
| 38 | u32 status; |
| 39 | |
| 40 | /* call into FspNotify */ |
| 41 | debug("Calling into FSP (notify phase INIT_PHASE_PCI): "); |
| 42 | status = fsp_notify(NULL, INIT_PHASE_PCI); |
| 43 | if (status) |
| 44 | debug("fail, error code %x\n", status); |
| 45 | else |
| 46 | debug("OK\n"); |
| 47 | |
| 48 | return status ? -EPERM : 0; |
| 49 | } |
| 50 | |
Simon Glass | 75ece5f | 2020-07-16 21:22:38 -0600 | [diff] [blame] | 51 | void board_final_init(void) |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 52 | { |
| 53 | u32 status; |
| 54 | |
| 55 | /* call into FspNotify */ |
| 56 | debug("Calling into FSP (notify phase INIT_PHASE_BOOT): "); |
| 57 | status = fsp_notify(NULL, INIT_PHASE_BOOT); |
| 58 | if (status) |
| 59 | debug("fail, error code %x\n", status); |
| 60 | else |
| 61 | debug("OK\n"); |
| 62 | } |
| 63 | |
Simon Glass | ac4df6f | 2019-09-25 08:11:30 -0600 | [diff] [blame] | 64 | int fsp_save_s3_stack(void) |
| 65 | { |
| 66 | struct udevice *dev; |
| 67 | int ret; |
| 68 | |
| 69 | if (gd->arch.prev_sleep_state == ACPI_S3) |
| 70 | return 0; |
| 71 | |
| 72 | ret = uclass_get_device(UCLASS_RTC, 0, &dev); |
| 73 | if (ret) { |
| 74 | debug("Cannot find RTC: err=%d\n", ret); |
| 75 | return -ENODEV; |
| 76 | } |
| 77 | |
| 78 | /* Save the stack address to CMOS */ |
| 79 | ret = rtc_write32(dev, CMOS_FSP_STACK_ADDR, gd->start_addr_sp); |
| 80 | if (ret) { |
| 81 | debug("Save stack address to CMOS: err=%d\n", ret); |
| 82 | return -EIO; |
| 83 | } |
| 84 | |
| 85 | return 0; |
| 86 | } |