blob: b9420a4cab5201efffb66832c140f03ccc82bdcb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass191c0082015-01-19 22:16:14 -07002/*
Bin Mengbfa95c52015-10-11 21:37:38 -07003 * From coreboot src/southbridge/intel/bd82x6x/mrccache.c
Simon Glass191c0082015-01-19 22:16:14 -07004 *
5 * Copyright (C) 2014 Google Inc.
Bin Menged800962015-10-11 21:37:39 -07006 * Copyright (C) 2015 Bin Meng <bmeng.cn@gmail.com>
Simon Glass191c0082015-01-19 22:16:14 -07007 */
8
9#include <common.h>
Bin Menged800962015-10-11 21:37:39 -070010#include <dm.h>
Simon Glass191c0082015-01-19 22:16:14 -070011#include <errno.h>
12#include <fdtdec.h>
13#include <net.h>
14#include <spi.h>
15#include <spi_flash.h>
Bin Mengf6220f12015-10-11 21:37:36 -070016#include <asm/mrccache.h>
Simon Glass87f10842019-12-06 21:42:03 -070017#include <dm/device-internal.h>
18#include <dm/uclass-internal.h>
Simon Glass191c0082015-01-19 22:16:14 -070019
Bin Menged800962015-10-11 21:37:39 -070020DECLARE_GLOBAL_DATA_PTR;
21
Simon Glassca4e4082019-09-25 08:57:04 -060022static uint mrc_block_size(uint data_size)
23{
24 uint mrc_size = sizeof(struct mrc_data_container) + data_size;
25
26 return ALIGN(mrc_size, MRC_DATA_ALIGN);
27}
28
Simon Glass191c0082015-01-19 22:16:14 -070029static struct mrc_data_container *next_mrc_block(
Bin Mengbfa95c52015-10-11 21:37:38 -070030 struct mrc_data_container *cache)
Simon Glass191c0082015-01-19 22:16:14 -070031{
32 /* MRC data blocks are aligned within the region */
Bin Mengbfa95c52015-10-11 21:37:38 -070033 u8 *region_ptr = (u8 *)cache;
34
Simon Glassca4e4082019-09-25 08:57:04 -060035 region_ptr += mrc_block_size(cache->data_size);
Bin Mengbfa95c52015-10-11 21:37:38 -070036
Simon Glass191c0082015-01-19 22:16:14 -070037 return (struct mrc_data_container *)region_ptr;
38}
39
40static int is_mrc_cache(struct mrc_data_container *cache)
41{
42 return cache && (cache->signature == MRC_DATA_SIGNATURE);
43}
44
Bin Meng4b9f6a62015-10-11 21:37:41 -070045struct mrc_data_container *mrccache_find_current(struct mrc_region *entry)
Simon Glass191c0082015-01-19 22:16:14 -070046{
47 struct mrc_data_container *cache, *next;
48 ulong base_addr, end_addr;
49 uint id;
50
Bin Meng4b9f6a62015-10-11 21:37:41 -070051 base_addr = entry->base + entry->offset;
Simon Glass191c0082015-01-19 22:16:14 -070052 end_addr = base_addr + entry->length;
53 cache = NULL;
54
55 /* Search for the last filled entry in the region */
56 for (id = 0, next = (struct mrc_data_container *)base_addr;
57 is_mrc_cache(next);
58 id++) {
59 cache = next;
60 next = next_mrc_block(next);
61 if ((ulong)next >= end_addr)
62 break;
63 }
64
65 if (id-- == 0) {
66 debug("%s: No valid MRC cache found.\n", __func__);
67 return NULL;
68 }
69
70 /* Verify checksum */
71 if (cache->checksum != compute_ip_checksum(cache->data,
72 cache->data_size)) {
73 printf("%s: MRC cache checksum mismatch\n", __func__);
74 return NULL;
75 }
76
77 debug("%s: picked entry %u from cache block\n", __func__, id);
78
79 return cache;
80}
81
82/**
83 * find_next_mrc_cache() - get next cache entry
84 *
Simon Glass0ad9b6a2019-12-06 21:42:02 -070085 * This moves to the next cache entry in the region, making sure it has enough
86 * space to hold data of size @data_size.
87 *
Simon Glass191c0082015-01-19 22:16:14 -070088 * @entry: MRC cache flash area
89 * @cache: Entry to start from
Simon Glass0ad9b6a2019-12-06 21:42:02 -070090 * @data_size: Required data size of the new entry. Note that we assume that
91 * all cache entries are the same size
Simon Glass191c0082015-01-19 22:16:14 -070092 *
93 * @return next cache entry if found, NULL if we got to the end
94 */
Bin Meng4b9f6a62015-10-11 21:37:41 -070095static struct mrc_data_container *find_next_mrc_cache(struct mrc_region *entry,
Simon Glass0ad9b6a2019-12-06 21:42:02 -070096 struct mrc_data_container *prev, int data_size)
Simon Glass191c0082015-01-19 22:16:14 -070097{
Simon Glass0ad9b6a2019-12-06 21:42:02 -070098 struct mrc_data_container *cache;
Simon Glass191c0082015-01-19 22:16:14 -070099 ulong base_addr, end_addr;
100
Bin Meng4b9f6a62015-10-11 21:37:41 -0700101 base_addr = entry->base + entry->offset;
Simon Glass191c0082015-01-19 22:16:14 -0700102 end_addr = base_addr + entry->length;
103
Simon Glass0ad9b6a2019-12-06 21:42:02 -0700104 /*
105 * We assume that all cache entries are the same size, but let's use
106 * data_size here for clarity.
107 */
108 cache = next_mrc_block(prev);
109 if ((ulong)cache + mrc_block_size(data_size) > end_addr) {
Simon Glass191c0082015-01-19 22:16:14 -0700110 /* Crossed the boundary */
111 cache = NULL;
112 debug("%s: no available entries found\n", __func__);
113 } else {
114 debug("%s: picked next entry from cache block at %p\n",
115 __func__, cache);
116 }
117
118 return cache;
119}
120
Simon Glassfa6cc1d2019-12-06 21:42:09 -0700121/**
122 * mrccache_update() - update the MRC cache with a new record
123 *
124 * This writes a new record to the end of the MRC cache region. If the new
125 * record is the same as the latest record then the write is skipped
126 *
127 * @sf: SPI flash to write to
128 * @entry: Position and size of MRC cache in SPI flash
129 * @cur: Record to write
130 * @return 0 if updated, -EEXIST if the record is the same as the latest
131 * record, -EINVAL if the record is not valid, other error if SPI write failed
132 */
133static int mrccache_update(struct udevice *sf, struct mrc_region *entry,
134 struct mrc_data_container *cur)
Simon Glass191c0082015-01-19 22:16:14 -0700135{
136 struct mrc_data_container *cache;
137 ulong offset;
138 ulong base_addr;
139 int ret;
140
Simon Glass079b38b2019-04-25 21:58:59 -0600141 if (!is_mrc_cache(cur)) {
142 debug("%s: Cache data not valid\n", __func__);
Bin Meng2fe66db2015-10-11 21:37:37 -0700143 return -EINVAL;
Simon Glass079b38b2019-04-25 21:58:59 -0600144 }
Bin Meng2fe66db2015-10-11 21:37:37 -0700145
Simon Glass191c0082015-01-19 22:16:14 -0700146 /* Find the last used block */
Bin Meng4b9f6a62015-10-11 21:37:41 -0700147 base_addr = entry->base + entry->offset;
Simon Glass191c0082015-01-19 22:16:14 -0700148 debug("Updating MRC cache data\n");
149 cache = mrccache_find_current(entry);
150 if (cache && (cache->data_size == cur->data_size) &&
151 (!memcmp(cache, cur, cache->data_size + sizeof(*cur)))) {
152 debug("MRC data in flash is up to date. No update\n");
153 return -EEXIST;
154 }
155
156 /* Move to the next block, which will be the first unused block */
157 if (cache)
Simon Glass0ad9b6a2019-12-06 21:42:02 -0700158 cache = find_next_mrc_cache(entry, cache, cur->data_size);
Simon Glass191c0082015-01-19 22:16:14 -0700159
160 /*
161 * If we have got to the end, erase the entire mrc-cache area and start
162 * again at block 0.
163 */
164 if (!cache) {
165 debug("Erasing the MRC cache region of %x bytes at %x\n",
166 entry->length, entry->offset);
167
Simon Glassba457562015-03-26 09:29:26 -0600168 ret = spi_flash_erase_dm(sf, entry->offset, entry->length);
Simon Glass191c0082015-01-19 22:16:14 -0700169 if (ret) {
170 debug("Failed to erase flash region\n");
171 return ret;
172 }
173 cache = (struct mrc_data_container *)base_addr;
174 }
175
176 /* Write the data out */
177 offset = (ulong)cache - base_addr + entry->offset;
178 debug("Write MRC cache update to flash at %lx\n", offset);
Simon Glassba457562015-03-26 09:29:26 -0600179 ret = spi_flash_write_dm(sf, offset, cur->data_size + sizeof(*cur),
180 cur);
Simon Glass191c0082015-01-19 22:16:14 -0700181 if (ret) {
182 debug("Failed to write to SPI flash\n");
Simon Glass83f288f2019-12-06 21:42:06 -0700183 return log_msg_ret("Cannot update mrccache", ret);
Simon Glass191c0082015-01-19 22:16:14 -0700184 }
185
186 return 0;
187}
Bin Menged800962015-10-11 21:37:39 -0700188
Simon Glass515e8172019-12-06 21:42:07 -0700189static void mrccache_setup(struct mrc_output *mrc, void *data)
Bin Menged800962015-10-11 21:37:39 -0700190{
Simon Glass9a679942019-04-25 21:58:57 -0600191 struct mrc_data_container *cache = data;
Bin Menged800962015-10-11 21:37:39 -0700192 u16 checksum;
193
Bin Menged800962015-10-11 21:37:39 -0700194 cache->signature = MRC_DATA_SIGNATURE;
Simon Glass515e8172019-12-06 21:42:07 -0700195 cache->data_size = mrc->len;
196 checksum = compute_ip_checksum(mrc->buf, cache->data_size);
Bin Menged800962015-10-11 21:37:39 -0700197 debug("Saving %d bytes for MRC output data, checksum %04x\n",
198 cache->data_size, checksum);
199 cache->checksum = checksum;
200 cache->reserved = 0;
Simon Glass515e8172019-12-06 21:42:07 -0700201 memcpy(cache->data, mrc->buf, cache->data_size);
Bin Menged800962015-10-11 21:37:39 -0700202
Simon Glass515e8172019-12-06 21:42:07 -0700203 mrc->cache = cache;
Simon Glass9a679942019-04-25 21:58:57 -0600204}
205
206int mrccache_reserve(void)
207{
Simon Glass515e8172019-12-06 21:42:07 -0700208 int i;
Simon Glass9a679942019-04-25 21:58:57 -0600209
Simon Glass515e8172019-12-06 21:42:07 -0700210 for (i = 0; i < MRC_TYPE_COUNT; i++) {
211 struct mrc_output *mrc = &gd->arch.mrc[i];
Bin Menged800962015-10-11 21:37:39 -0700212
Simon Glass515e8172019-12-06 21:42:07 -0700213 if (!mrc->len)
214 continue;
215
216 /* adjust stack pointer to store pure cache data plus header */
217 gd->start_addr_sp -= (mrc->len + MRC_DATA_HEADER_SIZE);
218 mrccache_setup(mrc, (void *)gd->start_addr_sp);
219
220 gd->start_addr_sp &= ~0xf;
221 }
Bin Menged800962015-10-11 21:37:39 -0700222
223 return 0;
224}
225
Simon Glass515e8172019-12-06 21:42:07 -0700226int mrccache_get_region(enum mrc_type_t type, struct udevice **devp,
227 struct mrc_region *entry)
Bin Menged800962015-10-11 21:37:39 -0700228{
Simon Glass87f10842019-12-06 21:42:03 -0700229 struct udevice *dev;
230 ofnode mrc_node;
Simon Glass506f2242019-12-06 21:42:04 -0700231 ulong map_base;
232 uint map_size;
233 uint offset;
Bin Meng4b9f6a62015-10-11 21:37:41 -0700234 u32 reg[2];
Bin Menged800962015-10-11 21:37:39 -0700235 int ret;
236
Simon Glass87f10842019-12-06 21:42:03 -0700237 /*
238 * Find the flash chip within the SPI controller node. Avoid probing
239 * the device here since it may put it into a strange state where the
240 * memory map cannot be read.
241 */
242 ret = uclass_find_first_device(UCLASS_SPI_FLASH, &dev);
243 if (ret)
244 return log_msg_ret("Cannot find SPI flash\n", ret);
Simon Glass506f2242019-12-06 21:42:04 -0700245 ret = dm_spi_get_mmap(dev, &map_base, &map_size, &offset);
246 if (!ret) {
247 entry->base = map_base;
248 } else {
249 ret = dev_read_u32_array(dev, "memory-map", reg, 2);
250 if (ret)
251 return log_msg_ret("Cannot find memory map\n", ret);
252 entry->base = reg[0];
253 }
Bin Meng4b9f6a62015-10-11 21:37:41 -0700254
Bin Menged800962015-10-11 21:37:39 -0700255 /* Find the place where we put the MRC cache */
Simon Glass0a0b09b2019-12-06 21:42:08 -0700256 mrc_node = dev_read_subnode(dev, type == MRC_TYPE_NORMAL ?
257 "rw-mrc-cache" : "rw-var-mrc-cache");
Simon Glass87f10842019-12-06 21:42:03 -0700258 if (!ofnode_valid(mrc_node))
259 return log_msg_ret("Cannot find node", -EPERM);
Bin Menged800962015-10-11 21:37:39 -0700260
Simon Glass87f10842019-12-06 21:42:03 -0700261 ret = ofnode_read_u32_array(mrc_node, "reg", reg, 2);
262 if (ret)
263 return log_msg_ret("Cannot find address", ret);
Bin Meng4b9f6a62015-10-11 21:37:41 -0700264 entry->offset = reg[0];
265 entry->length = reg[1];
Bin Menged800962015-10-11 21:37:39 -0700266
Simon Glass87f10842019-12-06 21:42:03 -0700267 if (devp)
268 *devp = dev;
Simon Glass515e8172019-12-06 21:42:07 -0700269 debug("MRC cache type %d in '%s', offset %x, len %x, base %x\n",
270 type, dev->name, entry->offset, entry->length, entry->base);
Bin Menged800962015-10-11 21:37:39 -0700271
272 return 0;
273}
274
Simon Glass515e8172019-12-06 21:42:07 -0700275static int mrccache_save_type(enum mrc_type_t type)
Bin Menged800962015-10-11 21:37:39 -0700276{
Simon Glass37a508f2019-12-06 21:42:05 -0700277 struct mrc_data_container *cache;
Simon Glass515e8172019-12-06 21:42:07 -0700278 struct mrc_output *mrc;
Bin Meng4b9f6a62015-10-11 21:37:41 -0700279 struct mrc_region entry;
Bin Menged800962015-10-11 21:37:39 -0700280 struct udevice *sf;
281 int ret;
282
Simon Glass515e8172019-12-06 21:42:07 -0700283 mrc = &gd->arch.mrc[type];
284 if (!mrc->len)
Bin Menged800962015-10-11 21:37:39 -0700285 return 0;
Simon Glass515e8172019-12-06 21:42:07 -0700286 log_debug("Saving %#x bytes of MRC output data type %d to SPI flash\n",
287 mrc->len, type);
288 ret = mrccache_get_region(type, &sf, &entry);
Bin Menged800962015-10-11 21:37:39 -0700289 if (ret)
Simon Glass83f288f2019-12-06 21:42:06 -0700290 return log_msg_ret("Cannot get region", ret);
Simon Glass87f10842019-12-06 21:42:03 -0700291 ret = device_probe(sf);
292 if (ret)
Simon Glass83f288f2019-12-06 21:42:06 -0700293 return log_msg_ret("Cannot probe device", ret);
Simon Glass515e8172019-12-06 21:42:07 -0700294 cache = mrc->cache;
295
Simon Glass37a508f2019-12-06 21:42:05 -0700296 ret = mrccache_update(sf, &entry, cache);
Simon Glass83f288f2019-12-06 21:42:06 -0700297 if (!ret)
Simon Glass37a508f2019-12-06 21:42:05 -0700298 debug("Saved MRC data with checksum %04x\n", cache->checksum);
Simon Glass83f288f2019-12-06 21:42:06 -0700299 else if (ret == -EEXIST)
Simon Glass8b674412016-01-17 16:11:29 -0700300 debug("MRC data is the same as last time, skipping save\n");
Bin Menged800962015-10-11 21:37:39 -0700301
Simon Glass83f288f2019-12-06 21:42:06 -0700302 return 0;
Bin Menged800962015-10-11 21:37:39 -0700303}
Simon Glass9a679942019-04-25 21:58:57 -0600304
Simon Glass515e8172019-12-06 21:42:07 -0700305int mrccache_save(void)
306{
307 int i;
308
309 for (i = 0; i < MRC_TYPE_COUNT; i++) {
310 int ret;
311
312 ret = mrccache_save_type(i);
313 if (ret)
314 return ret;
315 }
316
317 return 0;
318}
319
Simon Glass9a679942019-04-25 21:58:57 -0600320int mrccache_spl_save(void)
321{
Simon Glass515e8172019-12-06 21:42:07 -0700322 int i;
Simon Glass9a679942019-04-25 21:58:57 -0600323
Simon Glass515e8172019-12-06 21:42:07 -0700324 for (i = 0; i < MRC_TYPE_COUNT; i++) {
325 struct mrc_output *mrc = &gd->arch.mrc[i];
326 void *data;
327 int size;
328
329 size = mrc->len + MRC_DATA_HEADER_SIZE;
330 data = malloc(size);
331 if (!data)
332 return log_msg_ret("Allocate MRC cache block", -ENOMEM);
333 mrccache_setup(mrc, data);
334 }
Simon Glass9a679942019-04-25 21:58:57 -0600335
336 return mrccache_save();
337}