1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, EFI NVRAM storage back-end.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2012-2013 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef ___VBox_vmm_pdmnvram_h_
|
---|
27 | #define ___VBox_vmm_pdmnvram_h_
|
---|
28 |
|
---|
29 | #include <VBox/types.h>
|
---|
30 |
|
---|
31 |
|
---|
32 | RT_C_DECLS_BEGIN
|
---|
33 |
|
---|
34 | /** @defgroup grp_pdm_ifs_nvram NVRAM Interface
|
---|
35 | * @ingroup grp_pdm_interfaces
|
---|
36 | * @{
|
---|
37 | */
|
---|
38 |
|
---|
39 | /** Pointer to NVRAM interface provided by the driver. */
|
---|
40 | typedef struct PDMINVRAMCONNECTOR *PPDMINVRAMCONNECTOR;
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * Non-volatile RAM storage interface provided by the driver (up).
|
---|
44 | *
|
---|
45 | * @note The variable indexes used here 0-based, sequential and without gaps.
|
---|
46 | */
|
---|
47 | typedef struct PDMINVRAMCONNECTOR
|
---|
48 | {
|
---|
49 | /**
|
---|
50 | * Query a variable by variable index.
|
---|
51 | *
|
---|
52 | * @returns VBox status code.
|
---|
53 | * @retval VERR_NOT_FOUND if the variable was not found. This indicates that
|
---|
54 | * there are not variables with a higher index.
|
---|
55 | *
|
---|
56 | * @param idxVariable The variable index. By starting @a idxVariable at 0
|
---|
57 | * and increasing it with each call, this can be used
|
---|
58 | * to enumerate all available variables.
|
---|
59 | * @param pVendorUuid The vendor UUID of the variable.
|
---|
60 | * @param pszName The variable name buffer.
|
---|
61 | * @param pcchName On input this hold the name buffer size (including
|
---|
62 | * the space for the terminator char). On successful
|
---|
63 | * return it holds the strlen() value for @a pszName.
|
---|
64 | * @param pfAttributes Where to return the value attributes.
|
---|
65 | * @param pbValue The value buffer.
|
---|
66 | * @param pcbValue On input the size of the value buffer, on output the
|
---|
67 | * actual number of bytes returned.
|
---|
68 | */
|
---|
69 | DECLR3CALLBACKMEMBER(int, pfnVarQueryByIndex,(PPDMINVRAMCONNECTOR pInterface, uint32_t idxVariable,
|
---|
70 | PRTUUID pVendorUuid, char *pszName, uint32_t *pcchName,
|
---|
71 | uint32_t *pfAttributes, uint8_t *pbValue, uint32_t *pcbValue));
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * Begins variable store sequence.
|
---|
75 | *
|
---|
76 | * @returns VBox status code.
|
---|
77 | * @param pInterance Pointer to this interface structure.
|
---|
78 | * @param cVariables The number of variables.
|
---|
79 | */
|
---|
80 | DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqBegin,(PPDMINVRAMCONNECTOR pInterface, uint32_t cVariables));
|
---|
81 |
|
---|
82 | /**
|
---|
83 | * Puts the next variable in the store sequence.
|
---|
84 | *
|
---|
85 | * @returns VBox status code.
|
---|
86 | * @param idxVariable The variable index. This will start at 0 and advance
|
---|
87 | * up to @a cVariables - 1.
|
---|
88 | * @param pVendorUuid The vendor UUID of the variable.
|
---|
89 | * @param pszName The variable name buffer.
|
---|
90 | * @param pcchName On input this hold the name buffer size (including
|
---|
91 | * the space for the terminator char). On successful
|
---|
92 | * return it holds the strlen() value for @a pszName.
|
---|
93 | * @param fAttributes The value attributes.
|
---|
94 | * @param pbValue The value buffer.
|
---|
95 | * @param pcbValue On input the size of the value buffer, on output the
|
---|
96 | * actual number of bytes returned.
|
---|
97 | */
|
---|
98 | DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqPut,(PPDMINVRAMCONNECTOR pInterface, int idxVariable,
|
---|
99 | PCRTUUID pVendorUuid, const char *pszName, size_t cchName,
|
---|
100 | uint32_t fAttributes, uint8_t const *pbValue, size_t cbValue));
|
---|
101 |
|
---|
102 | /**
|
---|
103 | * Ends a variable store sequence.
|
---|
104 | *
|
---|
105 | * @returns VBox status code, @a rc on success.
|
---|
106 | * @param pInterance Pointer to this interface structure.
|
---|
107 | * @param rc The VBox status code for the whole store operation.
|
---|
108 | */
|
---|
109 | DECLR3CALLBACKMEMBER(int, pfnVarStoreSeqEnd,(PPDMINVRAMCONNECTOR pInterface, int rc));
|
---|
110 |
|
---|
111 | } PDMINVRAMCONNECTOR;
|
---|
112 | /** PDMINVRAMCONNECTOR interface ID. */
|
---|
113 | #define PDMINVRAMCONNECTOR_IID "057bc5c9-8022-43a8-9a41-0b106f97a89f"
|
---|
114 |
|
---|
115 | /** @} */
|
---|
116 |
|
---|
117 | RT_C_DECLS_END
|
---|
118 |
|
---|
119 | #endif
|
---|
120 |
|
---|