mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 09:39:00 +00:00
89147ef493
[no changelog]
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
#include "translations.h"
|
|
#include <assert.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include "common.h"
|
|
#include "flash.h"
|
|
#include "model.h"
|
|
|
|
bool translations_write(const uint8_t* data, uint32_t offset, uint32_t len) {
|
|
uint32_t size = translations_area_bytesize();
|
|
if (offset > size || size - offset < len) {
|
|
return false;
|
|
}
|
|
|
|
ensure(flash_unlock_write(), "translations_write unlock");
|
|
// todo consider alignment
|
|
ensure(flash_area_write_data_padded(&TRANSLATIONS_AREA, offset, data, len,
|
|
0xFF, FLASH_ALIGN(len)),
|
|
"translations_write write");
|
|
ensure(flash_lock_write(), "translations_write lock");
|
|
return true;
|
|
}
|
|
|
|
const uint8_t* translations_read(uint32_t* len, uint32_t offset) {
|
|
// TODO: _Static_assert was not happy with TRANSLATIONS_AREA.num_subareas == 1
|
|
// error: expression in static assertion is not constant
|
|
assert(TRANSLATIONS_AREA.num_subareas == 1);
|
|
*len = flash_area_get_size(&TRANSLATIONS_AREA) - offset;
|
|
return flash_area_get_address(&TRANSLATIONS_AREA, offset, 0);
|
|
}
|
|
|
|
void translations_erase(void) {
|
|
ensure(flash_area_erase(&TRANSLATIONS_AREA, NULL), "translations erase");
|
|
}
|
|
|
|
uint32_t translations_area_bytesize(void) {
|
|
return flash_area_get_size(&TRANSLATIONS_AREA);
|
|
}
|