blob: 416a6c95905c0076d9533504da1adeec8547b601 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <types.h>
#include "memory.h"
/**
* To be called after DRAM init.
* Tells the caller if DRAM must be cleared as requested by the user,
* firmware or security framework.
*/
bool security_clear_dram_request(void)
{
if (CONFIG(SECURITY_CLEAR_DRAM_ON_REGULAR_BOOT))
return true;
/* TODO: Add TEE environments here */
return false;
}