1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/embed/extmod/modtrezorconfig/norcow.h

41 lines
756 B
C
Raw Normal View History

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
*/
void norcow_init(void);
2017-10-18 16:36:26 +00:00
/*
* Wipe the storage
*/
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
/*
* 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