summaryrefslogtreecommitdiff
path: root/board/cr50/tpm2/nvmem_ops.c
blob: 048b85273299277fbc5ff978a5fbe77d8b911b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Copyright 2018 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "Global.h"
#include "NV_fp.h"
#include "util.h"

void nvmem_wipe_cache(void)
{
	/*
	 * Inclusive list of NV indices not to be wiped out when invalidating
	 * the cache.
	 */
	const uint16_t whitelist_range[] = { 0x1007, 0x100b };

	NvSelectivelyInvalidateCache(whitelist_range);

	/*
	 * Wipe some confidential persistent data
	 */
	memset(&gp.ownerAuth, 0, sizeof(gp.ownerAuth));
	memset(&gp.endorsementAuth, 0, sizeof(gp.endorsementAuth));
	memset(&gp.lockoutAuth, 0, sizeof(gp.lockoutAuth));
	memset(&gp.EPSeed, 0, sizeof(gp.EPSeed));
	memset(&gp.SPSeed, 0, sizeof(gp.SPSeed));
	memset(&gp.PPSeed, 0, sizeof(gp.PPSeed));
	memset(&gp.phProof, 0, sizeof(gp.phProof));
	memset(&gp.shProof, 0, sizeof(gp.shProof));
	memset(&gp.ehProof, 0, sizeof(gp.ehProof));

	NvWriteReserved(NV_OWNER_AUTH, &gp.ownerAuth);
	NvWriteReserved(NV_ENDORSEMENT_AUTH, &gp.endorsementAuth);
	NvWriteReserved(NV_LOCKOUT_AUTH, &gp.lockoutAuth);
	NvWriteReserved(NV_EP_SEED, &gp.EPSeed);
	NvWriteReserved(NV_SP_SEED, &gp.SPSeed);
	NvWriteReserved(NV_PP_SEED, &gp.PPSeed);
	NvWriteReserved(NV_PH_PROOF, &gp.phProof);
	NvWriteReserved(NV_SH_PROOF, &gp.shProof);
	NvWriteReserved(NV_EH_PROOF, &gp.ehProof);
}