Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / x86 / lib / fsp / fsp_common.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
4  */
5
6 #include <common.h>
7 #include <cpu_func.h>
8 #include <dm.h>
9 #include <errno.h>
10 #include <init.h>
11 #include <log.h>
12 #include <rtc.h>
13 #include <acpi/acpi_s3.h>
14 #include <asm/cmos_layout.h>
15 #include <asm/early_cmos.h>
16 #include <asm/io.h>
17 #include <asm/mrccache.h>
18 #include <asm/post.h>
19 #include <asm/processor.h>
20 #include <asm/fsp/fsp_support.h>
21
22 DECLARE_GLOBAL_DATA_PTR;
23
24 int checkcpu(void)
25 {
26         return 0;
27 }
28
29 int print_cpuinfo(void)
30 {
31         post_code(POST_CPU_INFO);
32         return default_print_cpuinfo();
33 }
34
35 int fsp_init_phase_pci(void)
36 {
37         u32 status;
38
39         /* call into FspNotify */
40         debug("Calling into FSP (notify phase INIT_PHASE_PCI): ");
41         status = fsp_notify(NULL, INIT_PHASE_PCI);
42         if (status)
43                 debug("fail, error code %x\n", status);
44         else
45                 debug("OK\n");
46
47         return status ? -EPERM : 0;
48 }
49
50 void board_final_cleanup(void)
51 {
52         u32 status;
53
54         /* call into FspNotify */
55         debug("Calling into FSP (notify phase INIT_PHASE_BOOT): ");
56         status = fsp_notify(NULL, INIT_PHASE_BOOT);
57         if (status)
58                 debug("fail, error code %x\n", status);
59         else
60                 debug("OK\n");
61 }
62
63 #ifdef CONFIG_HAVE_ACPI_RESUME
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 }
87 #endif