gr55xx_nvds.h
Go to the documentation of this file.
1 /**
2  ******************************************************************************
3  *
4  * @file gr55xx_nvds.h
5  *
6  * @brief NVDS API
7  *
8  ******************************************************************************
9  * @attention
10  #####Copyright (c) 2019 GOODIX
11  All rights reserved.
12 
13  Redistribution and use in source and binary forms, with or without
14  modification, are permitted provided that the following conditions are met:
15  * Redistributions of source code must retain the above copyright
16  notice, this list of conditions and the following disclaimer.
17  * Redistributions in binary form must reproduce the above copyright
18  notice, this list of conditions and the following disclaimer in the
19  documentation and/or other materials provided with the distribution.
20  * Neither the name of GOODIX nor the names of its contributors may be used
21  to endorse or promote products derived from this software without
22  specific prior written permission.
23 
24  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
28  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  POSSIBILITY OF SUCH DAMAGE.
35  *****************************************************************************************
36  */
37 
38 /**
39  * @addtogroup SYSTEM
40  * @{
41  */
42  /**
43  @addtogroup NVDS Non-Volatile Data Storage
44  @{
45  @brief Definitions and prototypes for the NVDS interface.
46  */
47 
48 #ifndef __GR55XX_NVDS_H__
49 #define __GR55XX_NVDS_H__
50 
51 #include <stdint.h>
52 #include <stdbool.h>
53 
54 /** @addtogroup NVDS_DEFINES Defines
55  * @{ */
56 #define NV_TAGCAT_APP 0x4000 /**< NVDS tag mask for user application. */
57 
58 /**@brief Get NVDS tag for user application.
59  * The values of Tag 0x0000 and 0xFFFF are invalid. idx should not be used
60  * as the parameter of NVDS APIs directly. The range of idx is 0x0001~0x3FFF.
61  */
62 #define NV_TAG_APP(idx) (NV_TAGCAT_APP | ((idx) & 0x3FFF))
63 /** @} */
64 
65 /**@addtogroup NVDS_ENUMERATIONS Enumerations
66  * @{ */
67 /**@brief NVDS Returned Status. */
69 {
70  NVDS_SUCCESS, /**< NVDS succeeds. */
71  NVDS_FAIL, /**< NVDS failed. */
72  NVDS_TAG_NOT_EXISTED, /**< NVDS tag does not exist. */
73  NVDS_SPACE_NOT_ENOUGH, /**< NVDS space is not enough. */
74  NVDS_LENGTH_OUT_OF_RANGE, /**< NVDS length out of range. */
75  NVDS_INVALID_PARA, /**< NVDS invalid params. */
76  NVDS_INVALID_START_ADDR, /**< NVDS invalid start address. */
77  NVDS_INVALID_SECTORS, /**< NVDS invalid sector. */
78  NVDS_COMPACT_FAILED, /**< NVDS failed to compact sectors. */
79  NVDS_STORAGE_ACCESS_FAILED , /**< NVDS failed to access storage. */
80  NVDS_GC_COMPLETE, /**< NVDS garbage collection complete. */
81  NVDS_NOT_INIT, /**< NVDS not initialize. */
82  NVDS_POINTER_NULL /**< NVDS or driver function repalce error: NULL. */
83 };
84 /** @} */
85 
86 /**@addtogroup NVDS_STRUCTURES Structures
87  * @{ */
88 /**@brief NVDS Item tag. */
89 typedef uint16_t NvdsTag_t;
90 /** @} */
91 
92 /** @addtogroup NVDS_FUNCTIONS Functions
93  * @{ */
94 /**
95  ****************************************************************************************
96  * @brief Initialize the sectors for NVDS.
97  *
98  * @note NVDS locates in the last sector of Flash.
99  *
100  * @param[in] start_addr: Start address of NVDS area. If the value equals zero,
101  NVDS area will locate in the last sector(s) in flash
102  memory. If the value does not equal zero, it must be
103  sector-aligned.
104  * @param[in] sectors: The number of sectors.
105  *
106  * @return ::NVDS_SUCCESS if successful.
107  * @return error code in ::NVDS_STATUS if not successful.
108  ****************************************************************************************
109  */
110 uint8_t nvds_init(uint32_t start_addr, uint8_t sectors);
111 
112 /**
113  ****************************************************************************************
114  * @brief Read data from NVDS.
115  *
116  * @param[in] tag: Valid NVDS item tag.
117  * @param[in,out] p_len: Pointer to the length of data.
118  * @param[out] p_buf: Data is read into the buffer.
119  *
120  * @return ::NVDS_SUCCESS if successful.
121  * @return error code in ::NVDS_STATUS if not successful.
122  ****************************************************************************************
123  */
124 uint8_t nvds_get(NvdsTag_t tag, uint16_t *p_len, uint8_t *p_buf);
125 
126 /**
127  ****************************************************************************************
128  * @brief Write data to NVDS. If the tag does not exist, create one.
129  *
130  * @param[in] tag: Valid NVDS item tag.
131  * @param[in] len: Length of data to be written, the max length of data is 1024 bytes.
132  * @param[in] p_buf: Data to be written.
133  *
134  * @return ::NVDS_SUCCESS: if successful.
135  * @return error code in ::NVDS_STATUS if not successful.
136  ****************************************************************************************
137  */
138 uint8_t nvds_put(NvdsTag_t tag, uint16_t len, const uint8_t *p_buf);
139 
140 /**
141  ****************************************************************************************
142  * @brief Delete a tag in NVDS
143  *
144  * @param[in] tag: The tag to be deleted.
145  *
146  * @return NVDS_SUCCESS: If the deletion is successful.
147  * @return Error code in ::NVDS_STATUS if not successful.
148  ****************************************************************************************
149  */
150 uint8_t nvds_del(NvdsTag_t tag);
151 
152 /**
153  ****************************************************************************************
154  * @brief Get the length of a tag in NVDS
155  *
156  * @param[in] tag: The tag to get the length.
157  *
158  * @return length: if tag exists.
159  * @return 0: if tag does not exist.
160  ****************************************************************************************
161  */
163 
164 
165 /** @addtogroup LOCAL_FLASH_FUNCTIONS Local Flash Functions
166  * @{ */
167 /**@brief Flash operation API based on hal flash.*/
168 /**
169  ****************************************************************************************
170  * @brief Erase flash chip.
171  *
172  * @return true if successful.
173  * @return false if not successful.
174  ****************************************************************************************
175  */
177 
178 /**
179  ****************************************************************************************
180  * @brief Erase flash region.
181  *
182  * @note All sectors that have address in range of [addr, addr+len]
183  * will be erased. If addr is not sector aligned, preceding data
184  * on the sector that addr belongs to will also be erased.
185  * If (addr + size) is not sector aligned, the whole sector
186  * will also be erased.
187  *
188  * @param[in] addr start address in flash to write data to.
189  * @param[in] size number of bytes to write.
190  *
191  * @return true if successful.
192  * @return false if not successful.
193  ****************************************************************************************
194  */
195 bool local_hal_flash_erase(const uint32_t addr, const uint32_t size);
196 
197 /**
198  *******************************************************************************
199  * @brief Write flash Memory.
200  *
201  * @param[in] addr start address in flash to write data to.
202  * @param[in,out] buf buffer of data to write.
203  * @param[in] size number of bytes to write.
204  *
205  * @return number of bytes written
206  *******************************************************************************
207  */
208 uint32_t local_hal_flash_write(const uint32_t addr, const uint8_t *buf, const uint32_t size);
209 
210 /**
211  *******************************************************************************
212  * @brief Read flash Memory.
213  *
214  * @param[in] addr start address in flash to read data.
215  * @param[in,out] buf buffer to read data to.
216  * @param[in] size number of bytes to read.
217  *
218  * @return number of bytes read
219  *******************************************************************************
220  */
221 uint32_t local_hal_flash_read(const uint32_t addr, uint8_t *buf, const uint32_t size);
222 
223 /**
224  *******************************************************************************
225  * @brief Get Flash information.
226  *
227  * @param[in,out] id Pointer to flash id.
228  * @param[in,out] size Pointer to flash size.
229  *
230  *******************************************************************************
231  */
232 void local_hal_flash_get_info(uint32_t *id, uint32_t *size);
233 
234 /**
235  *******************************************************************************
236  * @brief Get encrypted and decrypted status in write-read operations.
237  *
238  * @return true Enable encrypted and decrypted.
239  * @return false Disable encrypted and decrypted.
240  *******************************************************************************
241  */
243 
244 /**
245  *******************************************************************************
246  * @brief Enable encrypted and decrypted in write-read operations.
247  *
248  * @param[in] enable control encrypted and decrypte.
249  *
250  *******************************************************************************
251  */
253 
254 /**
255  *******************************************************************************
256  * @brief Write flash Memory reliably.
257  *
258  * @note It's possible that the data was not written into Flash Memory
259  * successfully. This function reads the data from Flash Memory to check
260  * the reliability of programming Flash Memory.
261  * @param[in] addr start address in flash to write data to.
262  * @param[in,out] buf buffer of data to write.
263  * @param[in] size number of bytes to write.
264  *
265  * @return number of bytes written
266  *******************************************************************************
267  */
268 uint32_t local_hal_flash_write_r(const uint32_t addr, const uint8_t *buf, const uint32_t size);
269 
270 /** @} */
271 
272 /** @} */
273 
274 #endif
275 
276 /** @} */
277 /** @} */
278 
nvds_del
uint8_t nvds_del(NvdsTag_t tag)
Delete a tag in NVDS.
NVDS_SPACE_NOT_ENOUGH
@ NVDS_SPACE_NOT_ENOUGH
Definition: gr55xx_nvds.h:73
local_hal_flash_write
uint32_t local_hal_flash_write(const uint32_t addr, const uint8_t *buf, const uint32_t size)
Write flash Memory.
local_hal_flash_read
uint32_t local_hal_flash_read(const uint32_t addr, uint8_t *buf, const uint32_t size)
Read flash Memory.
NVDS_POINTER_NULL
@ NVDS_POINTER_NULL
Definition: gr55xx_nvds.h:82
NVDS_COMPACT_FAILED
@ NVDS_COMPACT_FAILED
Definition: gr55xx_nvds.h:78
NVDS_NOT_INIT
@ NVDS_NOT_INIT
Definition: gr55xx_nvds.h:81
local_hal_flash_set_security
void local_hal_flash_set_security(bool enable)
Enable encrypted and decrypted in write-read operations.
local_hal_flash_get_security
bool local_hal_flash_get_security(void)
Get encrypted and decrypted status in write-read operations.
NVDS_LENGTH_OUT_OF_RANGE
@ NVDS_LENGTH_OUT_OF_RANGE
Definition: gr55xx_nvds.h:74
NVDS_GC_COMPLETE
@ NVDS_GC_COMPLETE
Definition: gr55xx_nvds.h:80
NVDS_INVALID_PARA
@ NVDS_INVALID_PARA
Definition: gr55xx_nvds.h:75
NVDS_STORAGE_ACCESS_FAILED
@ NVDS_STORAGE_ACCESS_FAILED
Definition: gr55xx_nvds.h:79
local_hal_flash_erase
bool local_hal_flash_erase(const uint32_t addr, const uint32_t size)
Erase flash region.
local_hal_flash_get_info
void local_hal_flash_get_info(uint32_t *id, uint32_t *size)
Get Flash information.
NVDS_INVALID_SECTORS
@ NVDS_INVALID_SECTORS
Definition: gr55xx_nvds.h:77
NVDS_FAIL
@ NVDS_FAIL
Definition: gr55xx_nvds.h:71
nvds_put
uint8_t nvds_put(NvdsTag_t tag, uint16_t len, const uint8_t *p_buf)
Write data to NVDS. If the tag does not exist, create one.
nvds_tag_length
uint16_t nvds_tag_length(NvdsTag_t tag)
Get the length of a tag in NVDS.
local_hal_flash_erase_chip
bool local_hal_flash_erase_chip(void)
Flash operation API based on hal flash.
NVDS_STATUS
NVDS_STATUS
NVDS Returned Status.
Definition: gr55xx_nvds.h:69
NVDS_SUCCESS
@ NVDS_SUCCESS
Definition: gr55xx_nvds.h:70
local_hal_flash_write_r
uint32_t local_hal_flash_write_r(const uint32_t addr, const uint8_t *buf, const uint32_t size)
Write flash Memory reliably.
NVDS_TAG_NOT_EXISTED
@ NVDS_TAG_NOT_EXISTED
Definition: gr55xx_nvds.h:72
nvds_init
uint8_t nvds_init(uint32_t start_addr, uint8_t sectors)
Initialize the sectors for NVDS.
nvds_get
uint8_t nvds_get(NvdsTag_t tag, uint16_t *p_len, uint8_t *p_buf)
Read data from NVDS.
NVDS_INVALID_START_ADDR
@ NVDS_INVALID_START_ADDR
Definition: gr55xx_nvds.h:76
NvdsTag_t
uint16_t NvdsTag_t
NVDS Item tag.
Definition: gr55xx_nvds.h:89