2017-10-18 16:36:26 +00:00
|
|
|
#ifndef __NORCOW_H__
|
|
|
|
#define __NORCOW_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2017-12-14 23:06:09 +00:00
|
|
|
#include "secbool.h"
|
2017-10-18 16:36:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Storage parameters:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NORCOW_SECTOR_COUNT 2
|
|
|
|
#define NORCOW_SECTOR_SIZE (64*1024)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize storage
|
|
|
|
*/
|
2017-12-09 13:48:49 +00:00
|
|
|
void norcow_init(void);
|
2017-10-18 16:36:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Wipe the storage
|
|
|
|
*/
|
2017-12-09 13:48:49 +00:00
|
|
|
void norcow_wipe(void);
|
2017-10-18 16:36:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Looks for the given key, returns status of the operation
|
|
|
|
*/
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool norcow_get(uint16_t key, const void **val, uint16_t *len);
|
2017-10-18 16:36:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Sets the given key, returns status of the operation
|
|
|
|
*/
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool norcow_set(uint16_t key, const void *val, uint16_t len);
|
2017-10-18 16:36:26 +00:00
|
|
|
|
2017-12-12 22:47:42 +00:00
|
|
|
/*
|
|
|
|
* Update a word in flash in the given key at the given offset.
|
|
|
|
* Note that you can only change bits from 1 to 0.
|
|
|
|
*/
|
|
|
|
secbool norcow_update(uint16_t key, uint16_t offset, uint32_t value);
|
|
|
|
|
2017-10-18 16:36:26 +00:00
|
|
|
#endif
|