blob: 9879de024de313daa07f52313eedad359d2d7d23 [file] [log] [blame]
Andrey Petrov9de55cc2016-02-25 14:19:07 -08001/*
2 * This file is part of the coreboot project.
3 *
Lee Leahy47bd2d92016-07-24 18:12:16 -07004 * Copyright (C) 2015-2016 Intel Corp.
Andrey Petrov9de55cc2016-02-25 14:19:07 -08005 * (Written by Andrey Petrov <andrey.petrov@intel.com> for Intel Corp.)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#include <arch/cpu.h>
Lee Leahy806fa242016-08-01 13:55:02 -070014#include <bootstate.h>
Andrey Petrov9de55cc2016-02-25 14:19:07 -080015#include <console/console.h>
16#include <fsp/api.h>
17#include <fsp/util.h>
Lee Leahy806fa242016-08-01 13:55:02 -070018#include <soc/intel/common/util.h>
Andrey Petrov9de55cc2016-02-25 14:19:07 -080019#include <string.h>
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070020#include <timestamp.h>
Andrey Petrov9de55cc2016-02-25 14:19:07 -080021
Lee Leahy806fa242016-08-01 13:55:02 -070022static void fsp_notify(enum fsp_notify_phase phase)
Andrey Petrov9de55cc2016-02-25 14:19:07 -080023{
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070024 enum fsp_status ret;
Andrey Petrov9de55cc2016-02-25 14:19:07 -080025 fsp_notify_fn fspnotify;
26 struct fsp_notify_params notify_params = { .phase = phase };
27
Lee Leahy9671faa2016-07-24 18:18:52 -070028 if (!fsps_hdr.notify_phase_entry_offset)
29 die("Notify_phase_entry_offset is zero!\n");
Andrey Petrov9de55cc2016-02-25 14:19:07 -080030
31 fspnotify = (void*) (fsps_hdr.image_base +
32 fsps_hdr.notify_phase_entry_offset);
Lee Leahy672df162016-07-24 18:21:13 -070033 fsp_before_debug_notify(fspnotify, &notify_params);
Andrey Petrov9de55cc2016-02-25 14:19:07 -080034
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070035 if (phase == AFTER_PCI_ENUM) {
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070036 timestamp_add_now(TS_FSP_BEFORE_ENUMERATE);
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070037 post_code(POST_FSP_NOTIFY_BEFORE_ENUMERATE);
38 } else if (phase == READY_TO_BOOT) {
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070039 timestamp_add_now(TS_FSP_BEFORE_FINALIZE);
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070040 post_code(POST_FSP_NOTIFY_BEFORE_FINALIZE);
41 }
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070042
43 ret = fspnotify(&notify_params);
44
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070045 if (phase == AFTER_PCI_ENUM) {
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070046 timestamp_add_now(TS_FSP_AFTER_ENUMERATE);
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070047 post_code(POST_FSP_NOTIFY_BEFORE_ENUMERATE);
48 } else if (phase == READY_TO_BOOT) {
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070049 timestamp_add_now(TS_FSP_AFTER_FINALIZE);
Alexandru Gagniucc4ea8f72016-05-23 12:16:58 -070050 post_code(POST_FSP_NOTIFY_BEFORE_FINALIZE);
51 }
Lee Leahy672df162016-07-24 18:21:13 -070052 fsp_debug_after_notify(ret);
Alexandru Gagniuc010225c2016-05-06 08:22:45 -070053
Lee Leahy9671faa2016-07-24 18:18:52 -070054 /* Handle any errors returned by FspNotify */
55 fsp_handle_reset(ret);
56 if (ret != FSP_SUCCESS) {
57 printk(BIOS_SPEW, "FspNotify returned 0x%08x\n", ret);
58 die("FspNotify returned an error!\n");
59 }
Lee Leahy806fa242016-08-01 13:55:02 -070060
61 /* Allow the platform to run something after FspNotify */
62 platform_fsp_notify_status(phase);
63}
64
65static void fsp_notify_dummy(void *arg)
66{
67 enum fsp_notify_phase phase = (uint32_t)arg;
68
69 /* Display the MTRRs */
70 if (IS_ENABLED(CONFIG_DISPLAY_MTRRS))
71 soc_display_mtrrs();
72
73 fsp_notify(phase);
74 if (phase == READY_TO_BOOT)
75 fsp_notify(END_OF_FIRMWARE);
76}
77
78BOOT_STATE_INIT_ENTRY(BS_DEV_RESOURCES, BS_ON_EXIT, fsp_notify_dummy,
79 (void *) AFTER_PCI_ENUM);
80BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT, fsp_notify_dummy,
81 (void *) READY_TO_BOOT);
82BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, fsp_notify_dummy,
83 (void *) READY_TO_BOOT);
84
85__attribute__((weak)) void platform_fsp_notify_status(
86 enum fsp_notify_phase phase)
87{
Andrey Petrov9de55cc2016-02-25 14:19:07 -080088}