2019-01-25 10:58:23 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2019-01-25 10:58:23 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NORCOW_CONFIG_H__
|
|
|
|
#define __NORCOW_CONFIG_H__
|
|
|
|
|
2023-11-01 12:40:50 +00:00
|
|
|
#include "flash_area.h"
|
2019-01-25 10:58:23 +00:00
|
|
|
|
|
|
|
#define NORCOW_SECTOR_COUNT 2
|
2019-03-29 16:10:31 +00:00
|
|
|
#define NORCOW_SECTOR_SIZE (16 * 1024)
|
|
|
|
#define NORCOW_SECTORS \
|
|
|
|
{ 2, 3 }
|
2019-01-25 10:58:23 +00:00
|
|
|
|
|
|
|
/*
|
2019-03-29 16:10:31 +00:00
|
|
|
* The length of the sector header in bytes. The header is preserved between
|
|
|
|
* sector erasures.
|
2019-01-25 10:58:23 +00:00
|
|
|
*/
|
2019-02-21 19:39:44 +00:00
|
|
|
#define NORCOW_HEADER_LEN (0)
|
2019-01-25 10:58:23 +00:00
|
|
|
|
2023-06-30 10:12:55 +00:00
|
|
|
extern const flash_area_t STORAGE_AREAS[NORCOW_SECTOR_COUNT];
|
|
|
|
|
2019-01-25 10:58:23 +00:00
|
|
|
/*
|
|
|
|
* Current storage version.
|
|
|
|
*/
|
2023-08-21 08:56:18 +00:00
|
|
|
#define NORCOW_VERSION ((uint32_t)0x00000004)
|
2019-01-25 10:58:23 +00:00
|
|
|
|
|
|
|
#endif
|