blob: 584103b1549a6bab7a63079ca0e53470e6e994af [file] [log] [blame]
Aaron Durbin6b0d0d62012-12-14 17:16:21 -06001/*
2 * Firmware Interface Table support.
3 *
4 * Copyright (C) 2012 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060014 */
15
16#include <stdint.h>
Sol Boucher32532ac2015-05-06 14:44:40 -070017#include <stdio.h>
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060018#include <stdlib.h>
19#include <string.h>
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060020
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060021#include "fit.h"
22
23/* FIXME: This code assumes it is being executed on a little endian machine. */
24
25#define FIT_POINTER_LOCATION 0xffffffc0
26#define FIT_TABLE_LOWEST_ADDRESS ((uint32_t)(-(16 << 20)))
27#define FIT_ENTRY_CHECKSUM_VALID 0x80
28#define FIT_TYPE_HEADER 0x0
29#define FIT_HEADER_VERSION 0x0100
30#define FIT_HEADER_ADDRESS "_FIT_ "
31#define FIT_TYPE_MICROCODE 0x1
32#define FIT_MICROCODE_VERSION 0x0100
33
34struct fit_entry {
35 uint64_t address;
36 uint32_t size_reserved;
37 uint16_t version;
38 uint8_t type_checksum_valid;
39 uint8_t checksum;
40} __attribute__ ((packed));
41
42struct fit_table {
43 struct fit_entry header;
Sol Boucher0e539312015-03-05 15:38:03 -080044 struct fit_entry entries[];
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060045} __attribute__ ((packed));
46
47struct microcode_header {
48 uint32_t version;
49 uint32_t revision;
50 uint32_t date;
51 uint32_t processor_signature;
52 uint32_t checksum;
53 uint32_t loader_revision;
54 uint32_t processor_flags;
55 uint32_t data_size;
56 uint32_t total_size;
57 uint8_t reserved[12];
58} __attribute__ ((packed));
59
60struct microcode_entry {
61 int offset;
62 int size;
63};
64
Sol Boucher32532ac2015-05-06 14:44:40 -070065static inline void *rom_buffer_pointer(struct buffer *buffer, int offset)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060066{
Sol Boucher32532ac2015-05-06 14:44:40 -070067 return &buffer->data[offset];
Aaron Durbin6b0d0d62012-12-14 17:16:21 -060068}
69
70static inline int fit_entry_size_bytes(struct fit_entry *entry)
71{
72 return (entry->size_reserved & 0xffffff) << 4;
73}
74
75static inline void fit_entry_update_size(struct fit_entry *entry,
76 int size_bytes)
77{
78 /* Size is multiples of 16 bytes. */
79 entry->size_reserved = (size_bytes >> 4) & 0xffffff;
80}
81
82static inline void fit_entry_add_size(struct fit_entry *entry,
83 int size_bytes)
84{
85 int size = fit_entry_size_bytes(entry);
86 size += size_bytes;
87 fit_entry_update_size(entry, size);
88}
89
90static inline int fit_entry_type(struct fit_entry *entry)
91{
92 return entry->type_checksum_valid & ~FIT_ENTRY_CHECKSUM_VALID;
93}
94
95/*
96 * Get an offset from a host pointer. This function assumes the ROM is located
97 * in the host address space at [4G - romsize -> 4G). It also assume all
98 * pointers have values within this address range.
99 */
Sol Boucher32532ac2015-05-06 14:44:40 -0700100static inline int ptr_to_offset(fit_offset_converter_t helper,
101 const struct buffer *region, uint32_t host_ptr)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600102{
Sol Boucher32532ac2015-05-06 14:44:40 -0700103 return helper(region, -host_ptr);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600104}
105
106/*
107 * Get a pointer from an offset. This function assumes the ROM is located
108 * in the host address space at [4G - romsize -> 4G). It also assume all
109 * pointers have values within this address range.
110 */
Sol Boucher32532ac2015-05-06 14:44:40 -0700111static inline uint32_t offset_to_ptr(fit_offset_converter_t helper,
112 const struct buffer *region, int offset)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600113{
Sol Boucher32532ac2015-05-06 14:44:40 -0700114 return -helper(region, offset);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600115}
116
Sol Boucher32532ac2015-05-06 14:44:40 -0700117static struct fit_table *locate_fit_table(fit_offset_converter_t offset_helper,
118 struct buffer *buffer)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600119{
120 struct fit_table *table;
121 uint32_t *fit_pointer;
122
Sol Boucher32532ac2015-05-06 14:44:40 -0700123 fit_pointer = rom_buffer_pointer(buffer,
124 ptr_to_offset(offset_helper, buffer,
125 FIT_POINTER_LOCATION));
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600126
127 /* Ensure pointer is below 4GiB and within 16MiB of 4GiB */
128 if (fit_pointer[1] != 0 || fit_pointer[0] < FIT_TABLE_LOWEST_ADDRESS)
129 return NULL;
130
Sol Boucher32532ac2015-05-06 14:44:40 -0700131 table = rom_buffer_pointer(buffer,
132 ptr_to_offset(offset_helper, buffer, *fit_pointer));
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600133
134 /* Check that the address field has the proper signature. */
135 if (strncmp((const char *)&table->header.address, FIT_HEADER_ADDRESS,
136 sizeof(table->header.address)))
137 return NULL;
138
139 if (table->header.version != FIT_HEADER_VERSION)
140 return NULL;
141
142 if (fit_entry_type(&table->header) != FIT_TYPE_HEADER)
143 return NULL;
144
145 /* Assume that the FIT table only contains the header */
146 if (fit_entry_size_bytes(&table->header) != sizeof(struct fit_entry))
147 return NULL;
148
149 return table;
150}
151
152static void update_fit_checksum(struct fit_table *fit)
153{
154 int size_bytes;
155 uint8_t *buffer;
156 uint8_t result;
157 int i;
158
159 fit->header.checksum = 0;
160 size_bytes = fit_entry_size_bytes(&fit->header);
161 result = 0;
162 buffer = (void *)fit;
163 for (i = 0; i < size_bytes; i++)
164 result += buffer[i];
165 fit->header.checksum = -result;
166}
167
Sol Boucher32532ac2015-05-06 14:44:40 -0700168static void add_microcodde_entries(struct fit_table *fit,
169 const struct cbfs_image *image,
170 int num_mcus, struct microcode_entry *mcus,
171 fit_offset_converter_t offset_helper)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600172{
173 int i;
174
175 for (i = 0; i < num_mcus; i++) {
176 struct fit_entry *entry = &fit->entries[i];
177 struct microcode_entry *mcu = &mcus[i];
178
Sol Boucher32532ac2015-05-06 14:44:40 -0700179 entry->address = offset_to_ptr(offset_helper, &image->buffer,
180 mcu->offset);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600181 fit_entry_update_size(entry, mcu->size);
182 entry->version = FIT_MICROCODE_VERSION;
183 entry->type_checksum_valid = FIT_TYPE_MICROCODE;
184 entry->checksum = 0;
185 fit_entry_add_size(&fit->header, sizeof(struct fit_entry));
186 }
187}
188
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800189static int fit_header(void *ptr, uint32_t *current_offset, uint32_t *file_length)
190{
191 struct buffer buf;
192 struct cbfs_file header;
193 buf.data = ptr;
194 buf.size = sizeof(header);
195 cbfs_file_get_header(&buf, &header);
196 *current_offset = header.offset;
197 *file_length = header.len;
198 return 0;
199}
200
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600201static int parse_microcode_blob(struct cbfs_image *image,
202 struct cbfs_file *mcode_file,
203 struct microcode_entry *mcus, int *total_mcus)
204{
205 int num_mcus;
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800206 uint32_t current_offset;
207 uint32_t file_length;
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600208
Ronald G. Minnich3fcde222014-02-04 17:35:44 -0800209 fit_header(mcode_file, &current_offset, &file_length);
Kyösti Mälkkif9b8ed82014-12-27 13:08:54 +0200210 current_offset += (int)((char *)mcode_file - image->buffer.data);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600211
212 num_mcus = 0;
213 while (file_length > sizeof(struct microcode_header))
214 {
Sol Boucher32532ac2015-05-06 14:44:40 -0700215 const struct microcode_header *mcu_header;
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600216
Sol Boucher32532ac2015-05-06 14:44:40 -0700217 mcu_header = rom_buffer_pointer(&image->buffer, current_offset);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600218
Aaron Durbin8a0cb8d2013-05-07 11:14:01 -0500219 /* Quickly sanity check a prospective microcode update. */
220 if (mcu_header->total_size < sizeof(*mcu_header))
221 break;
222
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600223 /* FIXME: Should the checksum be validated? */
224 mcus[num_mcus].offset = current_offset;
225 mcus[num_mcus].size = mcu_header->total_size;
226
227 /* Proceed to next payload. */
228 current_offset += mcus[num_mcus].size;
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600229 file_length -= mcus[num_mcus].size;
Alexandru Gagniucf87c20a2013-12-08 17:46:40 -0600230 num_mcus++;
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600231
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600232 /* Reached limit of FIT entries. */
233 if (num_mcus == *total_mcus)
234 break;
235 if (file_length < sizeof(struct microcode_header))
236 break;
237 }
238
239 /* Update how many microcode updates we found. */
240 *total_mcus = num_mcus;
241
242 return 0;
243}
244
Sol Boucher32532ac2015-05-06 14:44:40 -0700245int fit_update_table(struct buffer *bootblock, struct cbfs_image *image,
246 const char *microcode_blob_name, int empty_entries,
247 fit_offset_converter_t offset_fn)
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600248{
249 struct fit_table *fit;
250 struct cbfs_file *mcode_file;
251 struct microcode_entry *mcus;
252 int ret = 0;
253 // struct rom_image image = { .rom = rom, .size = romsize, };
254
Sol Boucher32532ac2015-05-06 14:44:40 -0700255 fit = locate_fit_table(offset_fn, bootblock);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600256
257 if (!fit) {
258 ERROR("FIT not found.\n");
259 return 1;
260 }
261
262 mcode_file = cbfs_get_entry(image, microcode_blob_name);
263 if (!mcode_file) {
264 ERROR("File '%s' not found in CBFS.\n",
265 microcode_blob_name);
266 return 1;
267 }
268
269 mcus = malloc(sizeof(*mcus) * empty_entries);
270
271 if (!mcus) {
272 ERROR("Couldn't allocate memory for microcode update entries.\n");
273 return 1;
274 }
275
276 if (parse_microcode_blob(image, mcode_file, mcus, &empty_entries)) {
277 ERROR("Couldn't parse microcode blob.\n");
278 ret = 1;
279 goto out;
280 }
281
Sol Boucher32532ac2015-05-06 14:44:40 -0700282 add_microcodde_entries(fit, image, empty_entries, mcus, offset_fn);
Aaron Durbin6b0d0d62012-12-14 17:16:21 -0600283 update_fit_checksum(fit);
284
285out:
286 free(mcus);
287 return ret;
288}