blob: 970704a8dd626eb69d95962608bbc9ce5901bf9c [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Simon Glass428dfa42015-01-19 22:16:14 -07002/*
Bin Meng8575ab12015-10-11 21:37:38 -07003 * From coreboot src/southbridge/intel/bd82x6x/mrccache.c
Simon Glass428dfa42015-01-19 22:16:14 -07004 *
5 * Copyright (C) 2014 Google Inc.
Bin Meng1f81b592015-10-11 21:37:39 -07006 * Copyright (C) 2015 Bin Meng <bmeng.cn@gmail.com>
Simon Glass428dfa42015-01-19 22:16:14 -07007 */
8
Simon Glass3a1d96f2023-07-15 21:39:11 -06009#define LOG_CATEGORY UCLASS_RAM
10
Bin Meng1f81b592015-10-11 21:37:39 -070011#include <dm.h>
Simon Glass428dfa42015-01-19 22:16:14 -070012#include <errno.h>
13#include <fdtdec.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <malloc.h>
Simon Glass428dfa42015-01-19 22:16:14 -070016#include <net.h>
17#include <spi.h>
18#include <spi_flash.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Bin Meng21666cf2015-10-11 21:37:36 -070020#include <asm/mrccache.h>
Simon Glass9d25f2e2019-12-06 21:42:03 -070021#include <dm/device-internal.h>
22#include <dm/uclass-internal.h>
Simon Glass428dfa42015-01-19 22:16:14 -070023
Bin Meng1f81b592015-10-11 21:37:39 -070024DECLARE_GLOBAL_DATA_PTR;
25
Simon Glass040bef12019-09-25 08:57:04 -060026static uint mrc_block_size(uint data_size)
27{
28 uint mrc_size = sizeof(struct mrc_data_container) + data_size;
29
30 return ALIGN(mrc_size, MRC_DATA_ALIGN);
31}
32
Simon Glass428dfa42015-01-19 22:16:14 -070033static struct mrc_data_container *next_mrc_block(
Bin Meng8575ab12015-10-11 21:37:38 -070034 struct mrc_data_container *cache)
Simon Glass428dfa42015-01-19 22:16:14 -070035{
36 /* MRC data blocks are aligned within the region */
Bin Meng8575ab12015-10-11 21:37:38 -070037 u8 *region_ptr = (u8 *)cache;
38
Simon Glass040bef12019-09-25 08:57:04 -060039 region_ptr += mrc_block_size(cache->data_size);
Bin Meng8575ab12015-10-11 21:37:38 -070040
Simon Glass428dfa42015-01-19 22:16:14 -070041 return (struct mrc_data_container *)region_ptr;
42}
43
44static int is_mrc_cache(struct mrc_data_container *cache)
45{
46 return cache && (cache->signature == MRC_DATA_SIGNATURE);
47}
48
Bin Meng2845ead2015-10-11 21:37:41 -070049struct mrc_data_container *mrccache_find_current(struct mrc_region *entry)
Simon Glass428dfa42015-01-19 22:16:14 -070050{
51 struct mrc_data_container *cache, *next;
52 ulong base_addr, end_addr;
53 uint id;
54
Bin Meng2845ead2015-10-11 21:37:41 -070055 base_addr = entry->base + entry->offset;
Simon Glass428dfa42015-01-19 22:16:14 -070056 end_addr = base_addr + entry->length;
57 cache = NULL;
58
59 /* Search for the last filled entry in the region */
60 for (id = 0, next = (struct mrc_data_container *)base_addr;
61 is_mrc_cache(next);
62 id++) {
63 cache = next;
64 next = next_mrc_block(next);
65 if ((ulong)next >= end_addr)
66 break;
67 }
68
69 if (id-- == 0) {
70 debug("%s: No valid MRC cache found.\n", __func__);
71 return NULL;
72 }
73
74 /* Verify checksum */
75 if (cache->checksum != compute_ip_checksum(cache->data,
76 cache->data_size)) {
77 printf("%s: MRC cache checksum mismatch\n", __func__);
78 return NULL;
79 }
80
81 debug("%s: picked entry %u from cache block\n", __func__, id);
82
83 return cache;
84}
85
86/**
87 * find_next_mrc_cache() - get next cache entry
88 *
Simon Glassd553f972019-12-06 21:42:02 -070089 * This moves to the next cache entry in the region, making sure it has enough
90 * space to hold data of size @data_size.
91 *
Simon Glass428dfa42015-01-19 22:16:14 -070092 * @entry: MRC cache flash area
93 * @cache: Entry to start from
Simon Glassd553f972019-12-06 21:42:02 -070094 * @data_size: Required data size of the new entry. Note that we assume that
95 * all cache entries are the same size
Simon Glass428dfa42015-01-19 22:16:14 -070096 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010097 * Return: next cache entry if found, NULL if we got to the end
Simon Glass428dfa42015-01-19 22:16:14 -070098 */
Bin Meng2845ead2015-10-11 21:37:41 -070099static struct mrc_data_container *find_next_mrc_cache(struct mrc_region *entry,
Simon Glassd553f972019-12-06 21:42:02 -0700100 struct mrc_data_container *prev, int data_size)
Simon Glass428dfa42015-01-19 22:16:14 -0700101{
Simon Glassd553f972019-12-06 21:42:02 -0700102 struct mrc_data_container *cache;
Simon Glass428dfa42015-01-19 22:16:14 -0700103 ulong base_addr, end_addr;
104
Bin Meng2845ead2015-10-11 21:37:41 -0700105 base_addr = entry->base + entry->offset;
Simon Glass428dfa42015-01-19 22:16:14 -0700106 end_addr = base_addr + entry->length;
107
Simon Glassd553f972019-12-06 21:42:02 -0700108 /*
109 * We assume that all cache entries are the same size, but let's use
110 * data_size here for clarity.
111 */
112 cache = next_mrc_block(prev);
113 if ((ulong)cache + mrc_block_size(data_size) > end_addr) {
Simon Glass428dfa42015-01-19 22:16:14 -0700114 /* Crossed the boundary */
115 cache = NULL;
116 debug("%s: no available entries found\n", __func__);
117 } else {
118 debug("%s: picked next entry from cache block at %p\n",
119 __func__, cache);
120 }
121
122 return cache;
123}
124
Simon Glass6e1b9562019-12-06 21:42:09 -0700125/**
126 * mrccache_update() - update the MRC cache with a new record
127 *
128 * This writes a new record to the end of the MRC cache region. If the new
129 * record is the same as the latest record then the write is skipped
130 *
131 * @sf: SPI flash to write to
132 * @entry: Position and size of MRC cache in SPI flash
133 * @cur: Record to write
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100134 * Return: 0 if updated, -EEXIST if the record is the same as the latest
Simon Glass6e1b9562019-12-06 21:42:09 -0700135 * record, -EINVAL if the record is not valid, other error if SPI write failed
136 */
137static int mrccache_update(struct udevice *sf, struct mrc_region *entry,
138 struct mrc_data_container *cur)
Simon Glass428dfa42015-01-19 22:16:14 -0700139{
140 struct mrc_data_container *cache;
141 ulong offset;
142 ulong base_addr;
143 int ret;
144
Simon Glassfbef25f2019-04-25 21:58:59 -0600145 if (!is_mrc_cache(cur)) {
146 debug("%s: Cache data not valid\n", __func__);
Bin Mengd61a7b42015-10-11 21:37:37 -0700147 return -EINVAL;
Simon Glassfbef25f2019-04-25 21:58:59 -0600148 }
Bin Mengd61a7b42015-10-11 21:37:37 -0700149
Simon Glass428dfa42015-01-19 22:16:14 -0700150 /* Find the last used block */
Bin Meng2845ead2015-10-11 21:37:41 -0700151 base_addr = entry->base + entry->offset;
Simon Glass428dfa42015-01-19 22:16:14 -0700152 debug("Updating MRC cache data\n");
153 cache = mrccache_find_current(entry);
154 if (cache && (cache->data_size == cur->data_size) &&
155 (!memcmp(cache, cur, cache->data_size + sizeof(*cur)))) {
156 debug("MRC data in flash is up to date. No update\n");
157 return -EEXIST;
158 }
159
160 /* Move to the next block, which will be the first unused block */
161 if (cache)
Simon Glassd553f972019-12-06 21:42:02 -0700162 cache = find_next_mrc_cache(entry, cache, cur->data_size);
Simon Glass428dfa42015-01-19 22:16:14 -0700163
164 /*
165 * If we have got to the end, erase the entire mrc-cache area and start
166 * again at block 0.
167 */
168 if (!cache) {
169 debug("Erasing the MRC cache region of %x bytes at %x\n",
170 entry->length, entry->offset);
171
Simon Glass35f15f62015-03-26 09:29:26 -0600172 ret = spi_flash_erase_dm(sf, entry->offset, entry->length);
Simon Glass428dfa42015-01-19 22:16:14 -0700173 if (ret) {
174 debug("Failed to erase flash region\n");
175 return ret;
176 }
177 cache = (struct mrc_data_container *)base_addr;
178 }
179
180 /* Write the data out */
181 offset = (ulong)cache - base_addr + entry->offset;
182 debug("Write MRC cache update to flash at %lx\n", offset);
Simon Glass35f15f62015-03-26 09:29:26 -0600183 ret = spi_flash_write_dm(sf, offset, cur->data_size + sizeof(*cur),
184 cur);
Simon Glass428dfa42015-01-19 22:16:14 -0700185 if (ret) {
186 debug("Failed to write to SPI flash\n");
Simon Glass1b9d8152019-12-06 21:42:06 -0700187 return log_msg_ret("Cannot update mrccache", ret);
Simon Glass428dfa42015-01-19 22:16:14 -0700188 }
189
190 return 0;
191}
Bin Meng1f81b592015-10-11 21:37:39 -0700192
Simon Glass91efff52019-12-06 21:42:07 -0700193static void mrccache_setup(struct mrc_output *mrc, void *data)
Bin Meng1f81b592015-10-11 21:37:39 -0700194{
Simon Glass48fd8562019-04-25 21:58:57 -0600195 struct mrc_data_container *cache = data;
Bin Meng1f81b592015-10-11 21:37:39 -0700196 u16 checksum;
197
Bin Meng1f81b592015-10-11 21:37:39 -0700198 cache->signature = MRC_DATA_SIGNATURE;
Simon Glass91efff52019-12-06 21:42:07 -0700199 cache->data_size = mrc->len;
200 checksum = compute_ip_checksum(mrc->buf, cache->data_size);
Simon Glass3a1d96f2023-07-15 21:39:11 -0600201 log_debug("Saving %d bytes for MRC output data, checksum %04x\n",
202 cache->data_size, checksum);
Bin Meng1f81b592015-10-11 21:37:39 -0700203 cache->checksum = checksum;
204 cache->reserved = 0;
Simon Glass91efff52019-12-06 21:42:07 -0700205 memcpy(cache->data, mrc->buf, cache->data_size);
Bin Meng1f81b592015-10-11 21:37:39 -0700206
Simon Glass91efff52019-12-06 21:42:07 -0700207 mrc->cache = cache;
Simon Glass48fd8562019-04-25 21:58:57 -0600208}
209
210int mrccache_reserve(void)
211{
Simon Glass91efff52019-12-06 21:42:07 -0700212 int i;
Simon Glass48fd8562019-04-25 21:58:57 -0600213
Simon Glass91efff52019-12-06 21:42:07 -0700214 for (i = 0; i < MRC_TYPE_COUNT; i++) {
215 struct mrc_output *mrc = &gd->arch.mrc[i];
Bin Meng1f81b592015-10-11 21:37:39 -0700216
Simon Glass91efff52019-12-06 21:42:07 -0700217 if (!mrc->len)
218 continue;
219
220 /* adjust stack pointer to store pure cache data plus header */
221 gd->start_addr_sp -= (mrc->len + MRC_DATA_HEADER_SIZE);
222 mrccache_setup(mrc, (void *)gd->start_addr_sp);
223
224 gd->start_addr_sp &= ~0xf;
225 }
Bin Meng1f81b592015-10-11 21:37:39 -0700226
227 return 0;
228}
229
Simon Glass91efff52019-12-06 21:42:07 -0700230int mrccache_get_region(enum mrc_type_t type, struct udevice **devp,
231 struct mrc_region *entry)
Bin Meng1f81b592015-10-11 21:37:39 -0700232{
Simon Glass9d25f2e2019-12-06 21:42:03 -0700233 struct udevice *dev;
234 ofnode mrc_node;
Simon Glass4e988f92019-12-06 21:42:04 -0700235 ulong map_base;
236 uint map_size;
237 uint offset;
Simon Glass00bf2792020-05-27 06:58:49 -0600238 ofnode node;
Bin Meng2845ead2015-10-11 21:37:41 -0700239 u32 reg[2];
Bin Meng1f81b592015-10-11 21:37:39 -0700240 int ret;
241
Simon Glass9d25f2e2019-12-06 21:42:03 -0700242 /*
243 * Find the flash chip within the SPI controller node. Avoid probing
244 * the device here since it may put it into a strange state where the
245 * memory map cannot be read.
246 */
247 ret = uclass_find_first_device(UCLASS_SPI_FLASH, &dev);
Simon Glass00bf2792020-05-27 06:58:49 -0600248 if (ret || !dev) {
249 /*
250 * Fall back to searching the device tree since driver model
251 * may not be ready yet (e.g. with FSPv1)
252 */
253 node = ofnode_by_compatible(ofnode_null(), "jedec,spi-nor");
254 if (!ofnode_valid(node))
255 return log_msg_ret("Cannot find SPI flash\n", -ENOENT);
Simon Glass92f98282020-02-02 13:37:06 -0700256 ret = -ENODEV;
Simon Glass4e988f92019-12-06 21:42:04 -0700257 } else {
Simon Glass00bf2792020-05-27 06:58:49 -0600258 ret = dm_spi_get_mmap(dev, &map_base, &map_size, &offset);
259 if (!ret)
260 entry->base = map_base;
261 node = dev_ofnode(dev);
262 }
263
264 /*
265 * At this point we have entry->base if ret == 0. If not, then we have
266 * the node and can look for memory-map
267 */
268 if (ret) {
269 ret = ofnode_read_u32_array(node, "memory-map", reg, 2);
Simon Glass4e988f92019-12-06 21:42:04 -0700270 if (ret)
271 return log_msg_ret("Cannot find memory map\n", ret);
272 entry->base = reg[0];
273 }
Bin Meng2845ead2015-10-11 21:37:41 -0700274
Bin Meng1f81b592015-10-11 21:37:39 -0700275 /* Find the place where we put the MRC cache */
Simon Glass00bf2792020-05-27 06:58:49 -0600276 mrc_node = ofnode_find_subnode(node, type == MRC_TYPE_NORMAL ?
277 "rw-mrc-cache" : "rw-var-mrc-cache");
Simon Glass9d25f2e2019-12-06 21:42:03 -0700278 if (!ofnode_valid(mrc_node))
279 return log_msg_ret("Cannot find node", -EPERM);
Bin Meng1f81b592015-10-11 21:37:39 -0700280
Simon Glass9d25f2e2019-12-06 21:42:03 -0700281 ret = ofnode_read_u32_array(mrc_node, "reg", reg, 2);
282 if (ret)
283 return log_msg_ret("Cannot find address", ret);
Bin Meng2845ead2015-10-11 21:37:41 -0700284 entry->offset = reg[0];
285 entry->length = reg[1];
Bin Meng1f81b592015-10-11 21:37:39 -0700286
Simon Glass9d25f2e2019-12-06 21:42:03 -0700287 if (devp)
288 *devp = dev;
Simon Glass91efff52019-12-06 21:42:07 -0700289 debug("MRC cache type %d in '%s', offset %x, len %x, base %x\n",
Simon Glass00bf2792020-05-27 06:58:49 -0600290 type, dev ? dev->name : ofnode_get_name(node), entry->offset,
291 entry->length, entry->base);
Bin Meng1f81b592015-10-11 21:37:39 -0700292
293 return 0;
294}
295
Simon Glass91efff52019-12-06 21:42:07 -0700296static int mrccache_save_type(enum mrc_type_t type)
Bin Meng1f81b592015-10-11 21:37:39 -0700297{
Simon Glassc3d0c232019-12-06 21:42:05 -0700298 struct mrc_data_container *cache;
Simon Glass91efff52019-12-06 21:42:07 -0700299 struct mrc_output *mrc;
Bin Meng2845ead2015-10-11 21:37:41 -0700300 struct mrc_region entry;
Bin Meng1f81b592015-10-11 21:37:39 -0700301 struct udevice *sf;
302 int ret;
303
Simon Glass91efff52019-12-06 21:42:07 -0700304 mrc = &gd->arch.mrc[type];
305 if (!mrc->len)
Bin Meng1f81b592015-10-11 21:37:39 -0700306 return 0;
Simon Glassfdbc4422023-05-04 16:50:53 -0600307 log_debug("Saving %x bytes of MRC output data type %d to SPI flash\n",
Simon Glass91efff52019-12-06 21:42:07 -0700308 mrc->len, type);
309 ret = mrccache_get_region(type, &sf, &entry);
Bin Meng1f81b592015-10-11 21:37:39 -0700310 if (ret)
Simon Glass1b9d8152019-12-06 21:42:06 -0700311 return log_msg_ret("Cannot get region", ret);
Simon Glass9d25f2e2019-12-06 21:42:03 -0700312 ret = device_probe(sf);
313 if (ret)
Simon Glass1b9d8152019-12-06 21:42:06 -0700314 return log_msg_ret("Cannot probe device", ret);
Simon Glass91efff52019-12-06 21:42:07 -0700315 cache = mrc->cache;
316
Simon Glassc3d0c232019-12-06 21:42:05 -0700317 ret = mrccache_update(sf, &entry, cache);
Simon Glass1b9d8152019-12-06 21:42:06 -0700318 if (!ret)
Simon Glassc3d0c232019-12-06 21:42:05 -0700319 debug("Saved MRC data with checksum %04x\n", cache->checksum);
Simon Glass1b9d8152019-12-06 21:42:06 -0700320 else if (ret == -EEXIST)
Simon Glass9df244f2016-01-17 16:11:29 -0700321 debug("MRC data is the same as last time, skipping save\n");
Bin Meng1f81b592015-10-11 21:37:39 -0700322
Simon Glass1b9d8152019-12-06 21:42:06 -0700323 return 0;
Bin Meng1f81b592015-10-11 21:37:39 -0700324}
Simon Glass48fd8562019-04-25 21:58:57 -0600325
Simon Glass91efff52019-12-06 21:42:07 -0700326int mrccache_save(void)
327{
328 int i;
329
330 for (i = 0; i < MRC_TYPE_COUNT; i++) {
331 int ret;
332
333 ret = mrccache_save_type(i);
334 if (ret)
335 return ret;
336 }
337
338 return 0;
339}
340
Simon Glass48fd8562019-04-25 21:58:57 -0600341int mrccache_spl_save(void)
342{
Simon Glass91efff52019-12-06 21:42:07 -0700343 int i;
Simon Glass48fd8562019-04-25 21:58:57 -0600344
Simon Glass91efff52019-12-06 21:42:07 -0700345 for (i = 0; i < MRC_TYPE_COUNT; i++) {
346 struct mrc_output *mrc = &gd->arch.mrc[i];
347 void *data;
348 int size;
349
350 size = mrc->len + MRC_DATA_HEADER_SIZE;
351 data = malloc(size);
352 if (!data)
353 return log_msg_ret("Allocate MRC cache block", -ENOMEM);
354 mrccache_setup(mrc, data);
355 }
Simon Glass48fd8562019-04-25 21:58:57 -0600356
357 return mrccache_save();
358}