2017-10-18 16:36:26 +00:00
|
|
|
#ifndef __NORCOW_H__
|
|
|
|
#define __NORCOW_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2017-10-27 15:49:30 +00:00
|
|
|
#include "../../trezorhal/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
|
|
|
|
|
|
|
#endif
|