summaryrefslogtreecommitdiff
path: root/host/include/crossystem_vbnv.h
blob: 64e0c7c7176e8dff2863401cacff9ee11b568afa (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
/* Copyright 2016 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.
 *
 * vboot nv storage related functions exported for use by userspace programs
 */

#ifndef VBOOT_REFERENCE_CROSSYSTEM_VBNV_H_
#define VBOOT_REFERENCE_CROSSYSTEM_VBNV_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <vboot_nvstorage.h>

/**
 * Attempt to read VbNvContext using mosys.
 *
 * Returns 0 if success, non-zero if error.
 */
int VbReadNvStorage_mosys(VbNvContext* vnc);

/**
 * Attempt to write VbNvContext using mosys.
 *
 * Returns 0 if success, non-zero if error.
 */
int VbWriteNvStorage_mosys(VbNvContext* vnc);

#ifdef __cplusplus
}
#endif

#endif  /* VBOOT_REFERENCE_CROSSYSTEM_VBNV_H_ */