2015-03-06 04:18:33 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Google, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <bootstate.h>
|
|
|
|
#include <bootmem.h>
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <cbmem.h>
|
|
|
|
#include <imd.h>
|
|
|
|
#include <rules.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <arch/early_variables.h>
|
|
|
|
#if IS_ENABLED(CONFIG_ARCH_X86) && !IS_ENABLED(CONFIG_EARLY_CBMEM_INIT)
|
|
|
|
#include <arch/acpi.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline struct imd *cbmem_get_imd(void)
|
|
|
|
{
|
|
|
|
/* Only supply a backing store for imd in ramstage. */
|
|
|
|
if (ENV_RAMSTAGE) {
|
|
|
|
static struct imd imd_cbmem;
|
|
|
|
return &imd_cbmem;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const struct cbmem_entry *imd_to_cbmem(const struct imd_entry *e)
|
|
|
|
{
|
|
|
|
return (const struct cbmem_entry *)e;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline const struct imd_entry *cbmem_to_imd(const struct cbmem_entry *e)
|
|
|
|
{
|
|
|
|
return (const struct imd_entry *)e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These are the different situations to handle:
|
|
|
|
* CONFIG_EARLY_CBMEM_INIT:
|
|
|
|
* In ramstage cbmem_initialize() attempts a recovery of the
|
|
|
|
* cbmem region set up by romstage. It uses cbmem_top() as the
|
|
|
|
* starting point of recovery.
|
|
|
|
*
|
|
|
|
* In romstage, similar to ramstage, cbmem_initialize() needs to
|
|
|
|
* attempt recovery of the cbmem area using cbmem_top() as the limit.
|
|
|
|
* cbmem_initialize_empty() initializes an empty cbmem area from
|
|
|
|
* cbmem_top();
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static struct imd *imd_init_backing(struct imd *backing)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
|
|
|
|
imd = cbmem_get_imd();
|
|
|
|
|
|
|
|
if (imd != NULL)
|
|
|
|
return imd;
|
|
|
|
|
|
|
|
imd = backing;
|
|
|
|
|
|
|
|
return imd;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct imd *imd_init_backing_with_recover(struct imd *backing)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
|
|
|
|
imd = imd_init_backing(backing);
|
|
|
|
if (!ENV_RAMSTAGE) {
|
2015-05-25 23:30:10 +02:00
|
|
|
imd_handle_init(imd, cbmem_top());
|
|
|
|
|
2015-03-06 04:18:33 +01:00
|
|
|
/* Need to partially recover all the time outside of ramstage
|
|
|
|
* because there's object storage outside of the stack. */
|
|
|
|
imd_handle_init_partial_recovery(imd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return imd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void cbmem_initialize_empty(void)
|
2015-05-08 20:33:55 +02:00
|
|
|
{
|
|
|
|
cbmem_initialize_empty_id_size(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cbmem_initialize_empty_id_size(u32 id, u64 size)
|
2015-03-06 04:18:33 +01:00
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
2015-06-09 20:54:10 +02:00
|
|
|
const int no_recovery = 0;
|
2015-03-06 04:18:33 +01:00
|
|
|
|
|
|
|
imd = imd_init_backing(&imd_backing);
|
2015-05-25 23:30:10 +02:00
|
|
|
imd_handle_init(imd, cbmem_top());
|
2015-03-06 04:18:33 +01:00
|
|
|
|
|
|
|
printk(BIOS_DEBUG, "CBMEM:\n");
|
|
|
|
|
2015-05-08 20:33:55 +02:00
|
|
|
if (imd_create_tiered_empty(imd, CBMEM_ROOT_MIN_SIZE, CBMEM_LG_ALIGN,
|
|
|
|
CBMEM_SM_ROOT_SIZE, CBMEM_SM_ALIGN)) {
|
2015-03-06 04:18:33 +01:00
|
|
|
printk(BIOS_DEBUG, "failed.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-08 20:33:55 +02:00
|
|
|
/* Add the specified range first */
|
|
|
|
if (size)
|
|
|
|
cbmem_add(id, size);
|
|
|
|
|
2015-03-06 04:18:33 +01:00
|
|
|
/* Complete migration to CBMEM. */
|
2015-06-09 20:54:10 +02:00
|
|
|
cbmem_run_init_hooks(no_recovery);
|
2015-03-06 04:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int cbmem_fail_recovery(void)
|
|
|
|
{
|
|
|
|
cbmem_initialize_empty();
|
|
|
|
cbmem_fail_resume();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cbmem_initialize(void)
|
2015-05-08 20:33:55 +02:00
|
|
|
{
|
|
|
|
return cbmem_initialize_id_size(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int cbmem_initialize_id_size(u32 id, u64 size)
|
2015-03-06 04:18:33 +01:00
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
2015-06-09 20:54:10 +02:00
|
|
|
const int recovery = 1;
|
2015-03-06 04:18:33 +01:00
|
|
|
|
|
|
|
imd = imd_init_backing(&imd_backing);
|
2015-05-25 23:30:10 +02:00
|
|
|
imd_handle_init(imd, cbmem_top());
|
2015-03-06 04:18:33 +01:00
|
|
|
|
|
|
|
if (imd_recover(imd))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
#if defined(__PRE_RAM__)
|
|
|
|
/*
|
|
|
|
* Lock the imd in romstage on a recovery. The assumption is that
|
|
|
|
* if the imd area was recovered in romstage then S3 resume path
|
|
|
|
* is being taken.
|
|
|
|
*/
|
|
|
|
imd_lockdown(imd);
|
|
|
|
#endif
|
|
|
|
|
2015-05-08 20:33:55 +02:00
|
|
|
/* Add the specified range first */
|
|
|
|
if (size)
|
|
|
|
cbmem_add(id, size);
|
|
|
|
|
2015-03-06 04:18:33 +01:00
|
|
|
/* Complete migration to CBMEM. */
|
2015-06-09 20:54:10 +02:00
|
|
|
cbmem_run_init_hooks(recovery);
|
2015-03-06 04:18:33 +01:00
|
|
|
|
|
|
|
/* Recovery successful. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int cbmem_recovery(int is_wakeup)
|
|
|
|
{
|
|
|
|
int rv = 0;
|
|
|
|
if (!is_wakeup)
|
|
|
|
cbmem_initialize_empty();
|
|
|
|
else
|
|
|
|
rv = cbmem_initialize();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct cbmem_entry *cbmem_entry_add(u32 id, u64 size64)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
const struct imd_entry *e;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
e = imd_entry_find_or_add(imd, id, size64);
|
|
|
|
|
|
|
|
return imd_to_cbmem(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *cbmem_add(u32 id, u64 size)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
const struct imd_entry *e;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
e = imd_entry_find_or_add(imd, id, size);
|
|
|
|
|
|
|
|
if (e == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return imd_entry_at(imd, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Retrieve a region provided a given id. */
|
|
|
|
const struct cbmem_entry *cbmem_entry_find(u32 id)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
const struct imd_entry *e;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
e = imd_entry_find(imd, id);
|
|
|
|
|
|
|
|
return imd_to_cbmem(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void *cbmem_find(u32 id)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
const struct imd_entry *e;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
e = imd_entry_find(imd, id);
|
|
|
|
|
|
|
|
if (e == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return imd_entry_at(imd, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove a reserved region. Returns 0 on success, < 0 on error. Note: A region
|
|
|
|
* cannot be removed unless it was the last one added. */
|
|
|
|
int cbmem_entry_remove(const struct cbmem_entry *entry)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
return imd_entry_remove(imd, cbmem_to_imd(entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 cbmem_entry_size(const struct cbmem_entry *entry)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
return imd_entry_size(imd, cbmem_to_imd(entry));
|
|
|
|
}
|
|
|
|
|
|
|
|
void *cbmem_entry_start(const struct cbmem_entry *entry)
|
|
|
|
{
|
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
|
|
|
|
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
|
|
|
|
return imd_entry_at(imd, cbmem_to_imd(entry));
|
|
|
|
}
|
|
|
|
|
2015-11-16 22:26:33 +01:00
|
|
|
void cbmem_region_used(uintptr_t *base, size_t *size)
|
|
|
|
{
|
|
|
|
void *baseptr;
|
|
|
|
imd_region_used(cbmem_get_imd(), &baseptr, size);
|
|
|
|
*base = (uintptr_t)baseptr;
|
|
|
|
}
|
|
|
|
|
2015-03-06 04:18:33 +01:00
|
|
|
void cbmem_add_bootmem(void)
|
|
|
|
{
|
2016-03-11 07:14:41 +01:00
|
|
|
uintptr_t base = 0;
|
2015-03-06 04:18:33 +01:00
|
|
|
size_t size = 0;
|
|
|
|
|
2016-03-11 07:14:41 +01:00
|
|
|
cbmem_region_used(&base, &size);
|
|
|
|
bootmem_add_range(base, size, LB_MEM_TABLE);
|
2015-03-06 04:18:33 +01:00
|
|
|
}
|
|
|
|
|
2016-07-25 04:52:15 +02:00
|
|
|
#if ENV_RAMSTAGE || (IS_ENABLED(CONFIG_EARLY_CBMEM_LIST) \
|
|
|
|
&& (ENV_POSTCAR || ENV_ROMSTAGE))
|
2015-09-30 19:26:54 +02:00
|
|
|
/*
|
|
|
|
* -fdata-sections doesn't work so well on read only strings. They all
|
|
|
|
* get put in the same section even though those strings may never be
|
|
|
|
* referenced in the final binary.
|
|
|
|
*/
|
2015-03-06 04:18:33 +01:00
|
|
|
void cbmem_list(void)
|
|
|
|
{
|
|
|
|
static const struct imd_lookup lookup[] = { CBMEM_ID_TO_NAME_TABLE };
|
2016-07-25 04:52:15 +02:00
|
|
|
struct imd *imd;
|
|
|
|
struct imd imd_backing;
|
2015-03-06 04:18:33 +01:00
|
|
|
|
2016-07-25 04:52:15 +02:00
|
|
|
imd = imd_init_backing_with_recover(&imd_backing);
|
|
|
|
imd_print_entries(imd, lookup, ARRAY_SIZE(lookup));
|
2015-03-06 04:18:33 +01:00
|
|
|
}
|
2015-09-30 19:26:54 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
void cbmem_add_records_to_cbtable(struct lb_header *header)
|
|
|
|
{
|
|
|
|
struct imd_cursor cursor;
|
|
|
|
struct imd *imd;
|
|
|
|
|
|
|
|
imd = cbmem_get_imd();
|
|
|
|
|
|
|
|
if (imd_cursor_init(imd, &cursor))
|
|
|
|
return;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
const struct imd_entry *e;
|
|
|
|
struct lb_cbmem_entry *lbe;
|
|
|
|
uint32_t id;
|
|
|
|
|
|
|
|
e = imd_cursor_next(&cursor);
|
|
|
|
|
|
|
|
if (e == NULL)
|
|
|
|
break;
|
|
|
|
|
|
|
|
id = imd_entry_id(imd, e);
|
|
|
|
/* Don't add these metadata entries. */
|
|
|
|
if (id == CBMEM_ID_IMD_ROOT || id == CBMEM_ID_IMD_SMALL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
lbe = (struct lb_cbmem_entry *)lb_new_record(header);
|
|
|
|
lbe->tag = LB_TAG_CBMEM_ENTRY;
|
|
|
|
lbe->size = sizeof(*lbe);
|
|
|
|
lbe->address = (uintptr_t)imd_entry_at(imd, e);
|
|
|
|
lbe->entry_size = imd_entry_size(imd, e);
|
|
|
|
lbe->id = id;
|
|
|
|
}
|
|
|
|
}
|