blob: 5713c2c3287d9eeec8541899e4912bca5534ef7c [file] [log] [blame]
Aaron Durbin0dff57d2015-03-05 21:18:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 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 Durbin0dff57d2015-03-05 21:18:33 -060014 */
15
16#include <bootstate.h>
17#include <bootmem.h>
18#include <console/console.h>
19#include <cbmem.h>
20#include <imd.h>
21#include <rules.h>
22#include <string.h>
23#include <stdlib.h>
24#include <arch/early_variables.h>
Aaron Durbin0dff57d2015-03-05 21:18:33 -060025
Julius Werner3c814b22016-08-19 16:20:40 -070026/*
Aaron Durbin403fdbc2017-08-02 10:57:23 -060027 * We need special handling on x86 where CAR global migration is employed. One
28 * cannot use true globals in that circumstance because CAR is where the globals
29 * are backed -- creating a circular dependency. For non CAR platforms globals
30 * are free to be used as well as any stages that are purely executing out of
31 * RAM. For CAR platforms that don't migrate globals the as-linked globals can
32 * be used, but they need special decoration using CAR_GLOBAL. That ensures
33 * proper object placement in conjunction with the linker.
34 *
35 * For the CAR global migration platforms we have to always try to partially
36 * recover CBMEM from cbmem_top() whenever we try to access it. In other
37 * environments we're not so constrained and just keep the backing imd struct
38 * in a global. This also means that we can easily tell whether CBMEM has
39 * explicitly been initialized or recovered yet on those platforms, and don't
40 * need to put the burden on board or chipset code to tell us by returning
41 * NULL from cbmem_top() before that point.
Julius Werner3c814b22016-08-19 16:20:40 -070042 */
Aaron Durbin1e9a9142016-09-16 16:23:21 -050043#define CAN_USE_GLOBALS \
Aaron Durbin403fdbc2017-08-02 10:57:23 -060044 (!IS_ENABLED(CONFIG_ARCH_X86) || ENV_RAMSTAGE || ENV_POSTCAR || \
45 IS_ENABLED(CONFIG_NO_CAR_GLOBAL_MIGRATION))
Julius Werner3c814b22016-08-19 16:20:40 -070046
Aaron Durbin0dff57d2015-03-05 21:18:33 -060047static inline struct imd *cbmem_get_imd(void)
48{
Julius Werner3c814b22016-08-19 16:20:40 -070049 if (CAN_USE_GLOBALS) {
Aaron Durbin403fdbc2017-08-02 10:57:23 -060050 static struct imd imd_cbmem CAR_GLOBAL;
Aaron Durbin0dff57d2015-03-05 21:18:33 -060051 return &imd_cbmem;
52 }
53 return NULL;
54}
55
Aaron Durbin0dff57d2015-03-05 21:18:33 -060056static inline const struct cbmem_entry *imd_to_cbmem(const struct imd_entry *e)
57{
58 return (const struct cbmem_entry *)e;
59}
60
61static inline const struct imd_entry *cbmem_to_imd(const struct cbmem_entry *e)
62{
63 return (const struct imd_entry *)e;
64}
65
66/* These are the different situations to handle:
67 * CONFIG_EARLY_CBMEM_INIT:
Lee Leahye20a3192017-03-09 16:21:34 -080068 * In ramstage cbmem_initialize() attempts a recovery of the
69 * cbmem region set up by romstage. It uses cbmem_top() as the
70 * starting point of recovery.
Aaron Durbin0dff57d2015-03-05 21:18:33 -060071 *
Lee Leahye20a3192017-03-09 16:21:34 -080072 * In romstage, similar to ramstage, cbmem_initialize() needs to
73 * attempt recovery of the cbmem area using cbmem_top() as the limit.
74 * cbmem_initialize_empty() initializes an empty cbmem area from
75 * cbmem_top();
Aaron Durbin0dff57d2015-03-05 21:18:33 -060076 *
77 */
78static struct imd *imd_init_backing(struct imd *backing)
79{
80 struct imd *imd;
81
82 imd = cbmem_get_imd();
83
84 if (imd != NULL)
85 return imd;
86
87 imd = backing;
88
89 return imd;
90}
91
92static struct imd *imd_init_backing_with_recover(struct imd *backing)
93{
94 struct imd *imd;
95
96 imd = imd_init_backing(backing);
Julius Werner3c814b22016-08-19 16:20:40 -070097 if (!CAN_USE_GLOBALS) {
98 /* Always partially recover if we can't keep track of whether
99 * we have already initialized CBMEM in this stage. */
Kyösti Mälkkie1fb0522015-05-26 00:30:10 +0300100 imd_handle_init(imd, cbmem_top());
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600101 imd_handle_init_partial_recovery(imd);
102 }
103
104 return imd;
105}
106
107void cbmem_initialize_empty(void)
108{
Lee Leahy522149c2015-05-08 11:33:55 -0700109 cbmem_initialize_empty_id_size(0, 0);
110}
111
Aaron Durbindfdea2a2017-08-01 10:27:10 -0600112void __attribute__((weak)) cbmem_top_init(void)
113{
114}
115
116static void cbmem_top_init_once(void)
117{
118 /* Call one-time hook on expected cbmem init during boot. This sequence
119 assumes first init call is in romstage for early cbmem init and
120 ramstage for late cbmem init. */
121 if (IS_ENABLED(CONFIG_EARLY_CBMEM_INIT) && !ENV_ROMSTAGE)
122 return;
123 if (IS_ENABLED(CONFIG_LATE_CBMEM_INIT) && !ENV_RAMSTAGE)
124 return;
125
126 cbmem_top_init();
127}
128
Lee Leahy522149c2015-05-08 11:33:55 -0700129void cbmem_initialize_empty_id_size(u32 id, u64 size)
130{
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600131 struct imd *imd;
132 struct imd imd_backing;
Aaron Durbin41607a42015-06-09 13:54:10 -0500133 const int no_recovery = 0;
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600134
Aaron Durbindfdea2a2017-08-01 10:27:10 -0600135 cbmem_top_init_once();
136
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600137 imd = imd_init_backing(&imd_backing);
Kyösti Mälkkie1fb0522015-05-26 00:30:10 +0300138 imd_handle_init(imd, cbmem_top());
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600139
140 printk(BIOS_DEBUG, "CBMEM:\n");
141
Lee Leahy522149c2015-05-08 11:33:55 -0700142 if (imd_create_tiered_empty(imd, CBMEM_ROOT_MIN_SIZE, CBMEM_LG_ALIGN,
143 CBMEM_SM_ROOT_SIZE, CBMEM_SM_ALIGN)) {
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600144 printk(BIOS_DEBUG, "failed.\n");
145 return;
146 }
147
Lee Leahy522149c2015-05-08 11:33:55 -0700148 /* Add the specified range first */
149 if (size)
150 cbmem_add(id, size);
151
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600152 /* Complete migration to CBMEM. */
Aaron Durbin41607a42015-06-09 13:54:10 -0500153 cbmem_run_init_hooks(no_recovery);
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600154}
155
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600156int cbmem_initialize(void)
157{
Lee Leahy522149c2015-05-08 11:33:55 -0700158 return cbmem_initialize_id_size(0, 0);
159}
160
161int cbmem_initialize_id_size(u32 id, u64 size)
162{
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600163 struct imd *imd;
164 struct imd imd_backing;
Aaron Durbin41607a42015-06-09 13:54:10 -0500165 const int recovery = 1;
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600166
Aaron Durbindfdea2a2017-08-01 10:27:10 -0600167 cbmem_top_init_once();
168
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600169 imd = imd_init_backing(&imd_backing);
Kyösti Mälkkie1fb0522015-05-26 00:30:10 +0300170 imd_handle_init(imd, cbmem_top());
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600171
172 if (imd_recover(imd))
173 return 1;
174
175#if defined(__PRE_RAM__)
176 /*
177 * Lock the imd in romstage on a recovery. The assumption is that
178 * if the imd area was recovered in romstage then S3 resume path
179 * is being taken.
180 */
181 imd_lockdown(imd);
182#endif
183
Lee Leahy522149c2015-05-08 11:33:55 -0700184 /* Add the specified range first */
185 if (size)
186 cbmem_add(id, size);
187
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600188 /* Complete migration to CBMEM. */
Aaron Durbin41607a42015-06-09 13:54:10 -0500189 cbmem_run_init_hooks(recovery);
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600190
191 /* Recovery successful. */
192 return 0;
193}
194
195int cbmem_recovery(int is_wakeup)
196{
197 int rv = 0;
198 if (!is_wakeup)
199 cbmem_initialize_empty();
200 else
201 rv = cbmem_initialize();
202 return rv;
203}
204
205const struct cbmem_entry *cbmem_entry_add(u32 id, u64 size64)
206{
207 struct imd *imd;
208 struct imd imd_backing;
209 const struct imd_entry *e;
210
211 imd = imd_init_backing_with_recover(&imd_backing);
212
213 e = imd_entry_find_or_add(imd, id, size64);
214
215 return imd_to_cbmem(e);
216}
217
218void *cbmem_add(u32 id, u64 size)
219{
220 struct imd *imd;
221 struct imd imd_backing;
222 const struct imd_entry *e;
223
224 imd = imd_init_backing_with_recover(&imd_backing);
225
226 e = imd_entry_find_or_add(imd, id, size);
227
228 if (e == NULL)
229 return NULL;
230
231 return imd_entry_at(imd, e);
232}
233
234/* Retrieve a region provided a given id. */
235const struct cbmem_entry *cbmem_entry_find(u32 id)
236{
237 struct imd *imd;
238 struct imd imd_backing;
239 const struct imd_entry *e;
240
241 imd = imd_init_backing_with_recover(&imd_backing);
242
243 e = imd_entry_find(imd, id);
244
245 return imd_to_cbmem(e);
246}
247
248void *cbmem_find(u32 id)
249{
250 struct imd *imd;
251 struct imd imd_backing;
252 const struct imd_entry *e;
253
254 imd = imd_init_backing_with_recover(&imd_backing);
255
256 e = imd_entry_find(imd, id);
257
258 if (e == NULL)
259 return NULL;
260
261 return imd_entry_at(imd, e);
262}
263
264/* Remove a reserved region. Returns 0 on success, < 0 on error. Note: A region
265 * cannot be removed unless it was the last one added. */
266int cbmem_entry_remove(const struct cbmem_entry *entry)
267{
268 struct imd *imd;
269 struct imd imd_backing;
270
271 imd = imd_init_backing_with_recover(&imd_backing);
272
273 return imd_entry_remove(imd, cbmem_to_imd(entry));
274}
275
276u64 cbmem_entry_size(const struct cbmem_entry *entry)
277{
278 struct imd *imd;
279 struct imd imd_backing;
280
281 imd = imd_init_backing_with_recover(&imd_backing);
282
283 return imd_entry_size(imd, cbmem_to_imd(entry));
284}
285
286void *cbmem_entry_start(const struct cbmem_entry *entry)
287{
288 struct imd *imd;
289 struct imd imd_backing;
290
291 imd = imd_init_backing_with_recover(&imd_backing);
292
293 return imd_entry_at(imd, cbmem_to_imd(entry));
294}
295
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600296void cbmem_add_bootmem(void)
297{
Aaron Durbinfb532422017-08-02 10:40:25 -0600298 void *baseptr = NULL;
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600299 size_t size = 0;
300
Aaron Durbinfb532422017-08-02 10:40:25 -0600301 imd_region_used(cbmem_get_imd(), &baseptr, &size);
302 bootmem_add_range((uintptr_t)baseptr, size, LB_MEM_TABLE);
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600303}
304
Lee Leahye2422e32016-07-24 19:52:15 -0700305#if ENV_RAMSTAGE || (IS_ENABLED(CONFIG_EARLY_CBMEM_LIST) \
306 && (ENV_POSTCAR || ENV_ROMSTAGE))
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500307/*
308 * -fdata-sections doesn't work so well on read only strings. They all
309 * get put in the same section even though those strings may never be
310 * referenced in the final binary.
311 */
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600312void cbmem_list(void)
313{
314 static const struct imd_lookup lookup[] = { CBMEM_ID_TO_NAME_TABLE };
Lee Leahye2422e32016-07-24 19:52:15 -0700315 struct imd *imd;
316 struct imd imd_backing;
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600317
Lee Leahye2422e32016-07-24 19:52:15 -0700318 imd = imd_init_backing_with_recover(&imd_backing);
319 imd_print_entries(imd, lookup, ARRAY_SIZE(lookup));
Aaron Durbin0dff57d2015-03-05 21:18:33 -0600320}
Aaron Durbin1ca2d862015-09-30 12:26:54 -0500321#endif
322
323void cbmem_add_records_to_cbtable(struct lb_header *header)
324{
325 struct imd_cursor cursor;
326 struct imd *imd;
327
328 imd = cbmem_get_imd();
329
330 if (imd_cursor_init(imd, &cursor))
331 return;
332
333 while (1) {
334 const struct imd_entry *e;
335 struct lb_cbmem_entry *lbe;
336 uint32_t id;
337
338 e = imd_cursor_next(&cursor);
339
340 if (e == NULL)
341 break;
342
343 id = imd_entry_id(imd, e);
344 /* Don't add these metadata entries. */
345 if (id == CBMEM_ID_IMD_ROOT || id == CBMEM_ID_IMD_SMALL)
346 continue;
347
348 lbe = (struct lb_cbmem_entry *)lb_new_record(header);
349 lbe->tag = LB_TAG_CBMEM_ENTRY;
350 lbe->size = sizeof(*lbe);
351 lbe->address = (uintptr_t)imd_entry_at(imd, e);
352 lbe->entry_size = imd_entry_size(imd, e);
353 lbe->id = id;
354 }
355}