blob: 98026f336271e70438cbb5b6120549f8cde3f201 [file] [log] [blame]
Andrey Petrov97389702016-02-25 14:15:37 -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 Petrov97389702016-02-25 14:15:37 -08005 * (Written by Alexandru Gagniuc <alexandrux.gagniuc@intel.com> for Intel Corp.)
6 * (Written by Andrey Petrov <andrey.petrov@intel.com> for Intel Corp.)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <arch/io.h>
15#include <cbfs.h>
Patrick Rudolphf677d172018-10-01 19:17:11 +020016#include <cf9_reset.h>
Andrey Petrov97389702016-02-25 14:15:37 -080017#include <console/console.h>
18#include <fsp/util.h>
19#include <lib.h>
Andrey Petrov97389702016-02-25 14:15:37 -080020#include <string.h>
21
22static bool looks_like_fsp_header(const uint8_t *raw_hdr)
23{
24 if (memcmp(raw_hdr, FSP_HDR_SIGNATURE, 4)) {
25 printk(BIOS_ALERT, "Did not find a valid FSP signature\n");
26 return false;
27 }
28
29 if (read32(raw_hdr + 4) != FSP_HDR_LEN) {
30 printk(BIOS_ALERT, "FSP header has invalid length\n");
31 return false;
32 }
33
34 return true;
35}
36
37enum cb_err fsp_identify(struct fsp_header *hdr, const void *fsp_blob)
38{
39 const uint8_t *raw_hdr = fsp_blob;
40
41 if (!looks_like_fsp_header(raw_hdr))
42 return CB_ERR;
43
Andrey Petrovd5a6eb42016-05-04 17:30:16 -070044 hdr->spec_version = read8(raw_hdr + 10);
Andrey Petrov97389702016-02-25 14:15:37 -080045 hdr->revision = read8(raw_hdr + 11);
46 hdr->fsp_revision = read32(raw_hdr + 12);
47 memcpy(hdr->image_id, raw_hdr + 16, ARRAY_SIZE(hdr->image_id));
48 hdr->image_id[ARRAY_SIZE(hdr->image_id) - 1] = '\0';
49 hdr->image_size = read32(raw_hdr + 24);
50 hdr->image_base = read32(raw_hdr + 28);
Andrey Petrovd5a6eb42016-05-04 17:30:16 -070051 hdr->image_attribute = read16(raw_hdr + 32);
52 hdr->component_attribute = read16(raw_hdr + 34);
Andrey Petrov97389702016-02-25 14:15:37 -080053 hdr->cfg_region_offset = read32(raw_hdr + 36);
54 hdr->cfg_region_size = read32(raw_hdr + 40);
Brenton Dong0a5971c2016-10-18 11:35:15 -070055 hdr->temp_ram_init_entry = read32(raw_hdr + 48);
56 hdr->temp_ram_exit_entry = read32(raw_hdr + 64);
Andrey Petrov97389702016-02-25 14:15:37 -080057 hdr->notify_phase_entry_offset = read32(raw_hdr + 56);
58 hdr->memory_init_entry_offset = read32(raw_hdr + 60);
59 hdr->silicon_init_entry_offset = read32(raw_hdr + 68);
60
61 return CB_SUCCESS;
62}
63
Aaron Durbina413e5e2016-07-17 23:06:03 -050064enum cb_err fsp_validate_component(struct fsp_header *hdr,
65 const struct region_device *rdev)
66{
67 void *membase;
68
69 /* Map just enough of the file to be able to parse the header. */
70 membase = rdev_mmap(rdev, FSP_HDR_OFFSET, FSP_HDR_LEN);
71
72 if (membase == NULL) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -070073 printk(BIOS_CRIT, "Could not mmap() FSP header.\n");
Aaron Durbina413e5e2016-07-17 23:06:03 -050074 return CB_ERR;
75 }
76
77 if (fsp_identify(hdr, membase) != CB_SUCCESS) {
78 rdev_munmap(rdev, membase);
Lee Leahyb20d4ba2016-07-31 16:49:28 -070079 printk(BIOS_CRIT, "No valid FSP header\n");
Aaron Durbina413e5e2016-07-17 23:06:03 -050080 return CB_ERR;
81 }
82
83 rdev_munmap(rdev, membase);
84
Lee Leahy37b5ef22016-07-31 14:15:49 -070085 if (IS_ENABLED(CONFIG_DISPLAY_FSP_HEADER))
86 fsp_print_header_info(hdr);
Aaron Durbina413e5e2016-07-17 23:06:03 -050087
88 /* Check if size specified in the header matches the cbfs file size */
89 if (region_device_sz(rdev) < hdr->image_size) {
Lee Leahyb20d4ba2016-07-31 16:49:28 -070090 printk(BIOS_CRIT, "Component size bigger than cbfs file.\n");
Aaron Durbina413e5e2016-07-17 23:06:03 -050091 return CB_ERR;
92 }
93
94 return CB_SUCCESS;
95}
96
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -070097static bool fsp_reset_requested(uint32_t status)
Andrey Petrov3a94a3b2016-07-18 00:15:41 -070098{
99 return (status >= FSP_STATUS_RESET_REQUIRED_COLD &&
100 status <= FSP_STATUS_RESET_REQUIRED_8);
101}
102
Brandon Breitensteinc31ba0e2016-07-27 17:34:45 -0700103void fsp_handle_reset(uint32_t status)
Andrey Petrov901e43c2016-06-22 19:22:30 -0700104{
Andrey Petrov3a94a3b2016-07-18 00:15:41 -0700105 if (!fsp_reset_requested(status))
106 return;
107
Lee Leahyb20d4ba2016-07-31 16:49:28 -0700108 printk(BIOS_SPEW, "FSP: handling reset type %x\n", status);
Andrey Petrov3a94a3b2016-07-18 00:15:41 -0700109
Lee Leahyb2b97a52017-03-10 08:40:18 -0800110 switch (status) {
Andrey Petrov901e43c2016-06-22 19:22:30 -0700111 case FSP_STATUS_RESET_REQUIRED_COLD:
Patrick Rudolphf677d172018-10-01 19:17:11 +0200112 full_reset();
Andrey Petrov901e43c2016-06-22 19:22:30 -0700113 break;
114 case FSP_STATUS_RESET_REQUIRED_WARM:
Patrick Rudolphf677d172018-10-01 19:17:11 +0200115 system_reset();
Andrey Petrov901e43c2016-06-22 19:22:30 -0700116 break;
Andrey Petrov3a94a3b2016-07-18 00:15:41 -0700117 case FSP_STATUS_RESET_REQUIRED_3:
118 case FSP_STATUS_RESET_REQUIRED_4:
119 case FSP_STATUS_RESET_REQUIRED_5:
120 case FSP_STATUS_RESET_REQUIRED_6:
121 case FSP_STATUS_RESET_REQUIRED_7:
122 case FSP_STATUS_RESET_REQUIRED_8:
123 chipset_handle_reset(status);
Andrey Petrov901e43c2016-06-22 19:22:30 -0700124 break;
125 default:
126 break;
127 }
128}