blob: 0917cf2470419503e04a506773472f57d90d1640 [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 * Copyright (C) 2014 Google, Inc
Bin Meng1f81b592015-10-11 21:37:39 -07004 * Copyright (C) 2015 Bin Meng <bmeng.cn@gmail.com>
Simon Glass428dfa42015-01-19 22:16:14 -07005 */
6
Bin Meng8575ab12015-10-11 21:37:38 -07007#ifndef _ASM_MRCCACHE_H
8#define _ASM_MRCCACHE_H
Simon Glass428dfa42015-01-19 22:16:14 -07009
Simon Glass91c07362019-12-06 21:42:01 -070010#define MRC_DATA_ALIGN 0x100
Bin Meng8575ab12015-10-11 21:37:38 -070011#define MRC_DATA_SIGNATURE (('M' << 0) | ('R' << 8) | \
12 ('C' << 16) | ('D'<<24))
Simon Glass428dfa42015-01-19 22:16:14 -070013
Bin Meng1f81b592015-10-11 21:37:39 -070014#define MRC_DATA_HEADER_SIZE 32
15
Bin Meng8575ab12015-10-11 21:37:38 -070016struct __packed mrc_data_container {
Simon Glass428dfa42015-01-19 22:16:14 -070017 u32 signature; /* "MRCD" */
18 u32 data_size; /* Size of the 'data' field */
19 u32 checksum; /* IP style checksum */
20 u32 reserved; /* For header alignment */
21 u8 data[0]; /* Variable size, platform/run time dependent */
22};
23
Bin Meng2845ead2015-10-11 21:37:41 -070024struct mrc_region {
25 u32 base;
26 u32 offset;
27 u32 length;
28};
29
Simon Glass91efff52019-12-06 21:42:07 -070030/* Types of MRC data */
31enum mrc_type_t {
32 MRC_TYPE_NORMAL,
Simon Glassb5b0aff2019-12-06 21:42:08 -070033 MRC_TYPE_VAR,
Simon Glass91efff52019-12-06 21:42:07 -070034
35 MRC_TYPE_COUNT,
36};
37
Simon Glass35f15f62015-03-26 09:29:26 -060038struct udevice;
Simon Glass428dfa42015-01-19 22:16:14 -070039
40/**
41 * mrccache_find_current() - find the latest MRC cache record
42 *
43 * This searches the MRC cache region looking for the latest record to use
44 * for setting up SDRAM
45 *
Bin Meng8575ab12015-10-11 21:37:38 -070046 * @entry: Position and size of MRC cache in SPI flash
Simon Glass428dfa42015-01-19 22:16:14 -070047 * @return pointer to latest record, or NULL if none
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/**
52 * mrccache_update() - update the MRC cache with a new record
53 *
Bin Meng8575ab12015-10-11 21:37:38 -070054 * This writes a new record to the end of the MRC cache region. If the new
55 * record is the same as the latest record then the write is skipped
Simon Glass428dfa42015-01-19 22:16:14 -070056 *
57 * @sf: SPI flash to write to
58 * @entry: Position and size of MRC cache in SPI flash
59 * @cur: Record to write
60 * @return 0 if updated, -EEXIST if the record is the same as the latest
Bin Mengd61a7b42015-10-11 21:37:37 -070061 * record, -EINVAL if the record is not valid, other error if SPI write failed
Simon Glass428dfa42015-01-19 22:16:14 -070062 */
Bin Meng2845ead2015-10-11 21:37:41 -070063int mrccache_update(struct udevice *sf, struct mrc_region *entry,
Simon Glass428dfa42015-01-19 22:16:14 -070064 struct mrc_data_container *cur);
65
Bin Meng1f81b592015-10-11 21:37:39 -070066/**
67 * mrccache_reserve() - reserve MRC data on the stack
68 *
69 * This copies MRC data pointed by gd->arch.mrc_output to a new place on the
70 * stack with length gd->arch.mrc_output_len, and updates gd->arch.mrc_output
71 * to point to the new place once the migration is done.
72 *
73 * This routine should be called by reserve_arch() before U-Boot is relocated
74 * when MRC cache is enabled.
75 *
76 * @return 0 always
77 */
78int mrccache_reserve(void);
79
80/**
81 * mrccache_get_region() - get MRC region on the SPI flash
82 *
83 * This gets MRC region whose offset and size are described in the device tree
84 * as a subnode to the SPI flash. If a non-NULL device pointer is supplied,
85 * this also probes the SPI flash device and returns its device pointer for
86 * the caller to use later.
87 *
88 * Be careful when calling this routine with a non-NULL device pointer:
89 * - driver model initialization must be complete
90 * - calling in the pre-relocation phase may bring some side effects during
91 * the SPI flash device probe (eg: for SPI controllers on a PCI bus, it
92 * triggers PCI bus enumeration during which insufficient memory issue
93 * might be exposed and it causes subsequent SPI flash probe fails).
94 *
Simon Glass91efff52019-12-06 21:42:07 -070095 * @type: Type of MRC data to use
Bin Meng1f81b592015-10-11 21:37:39 -070096 * @devp: Returns pointer to the SPI flash device
97 * @entry: Position and size of MRC cache in SPI flash
98 * @return 0 if success, -ENOENT if SPI flash node does not exist in the
99 * device tree, -EPERM if MRC region subnode does not exist in the device
100 * tree, -EINVAL if MRC region properties format is incorrect, other error
101 * if SPI flash probe failed.
102 */
Simon Glass91efff52019-12-06 21:42:07 -0700103int mrccache_get_region(enum mrc_type_t type, struct udevice **devp,
104 struct mrc_region *entry);
Bin Meng1f81b592015-10-11 21:37:39 -0700105
106/**
107 * mrccache_save() - save MRC data to the SPI flash
108 *
109 * This saves MRC data stored previously by gd->arch.mrc_output to a proper
110 * place within the MRC region on the SPI flash.
111 *
112 * @return 0 if saved to SPI flash successfully, other error if failed
113 */
114int mrccache_save(void);
115
Simon Glass48fd8562019-04-25 21:58:57 -0600116/**
117 * mrccache_spl_save() - Save to the MRC region from SPL
118 *
119 * When SPL is used to set up the memory controller we want to save the MRC
120 * data in SPL to avoid needing to pass it up to U-Boot proper to save. This
121 * function handles that.
122 *
123 * @return 0 if saved to SPI flash successfully, other error if failed
124 */
125int mrccache_spl_save(void);
126
Bin Meng8575ab12015-10-11 21:37:38 -0700127#endif /* _ASM_MRCCACHE_H */