2018-01-05 02:19:51 -04:00
|
|
|
/*
|
|
|
|
* This file 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 file 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/>.
|
2019-10-20 10:31:12 -03:00
|
|
|
*
|
2018-01-05 02:19:51 -04:00
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include "AP_HAL_ChibiOS_Namespace.h"
|
|
|
|
#include <AP_Common/Bitmask.h>
|
|
|
|
#include <AP_FlashStorage/AP_FlashStorage.h>
|
|
|
|
#include "hwdef/common/flash.h"
|
|
|
|
#include <AP_RAMTRON/AP_RAMTRON.h>
|
|
|
|
|
|
|
|
#define CH_STORAGE_SIZE HAL_STORAGE_SIZE
|
|
|
|
|
2018-03-01 20:46:30 -04:00
|
|
|
#ifndef HAL_USE_EMPTY_STORAGE
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
// when using flash storage we use a small line size to make storage
|
|
|
|
// compact and minimise the number of erase cycles needed
|
|
|
|
#define CH_STORAGE_LINE_SHIFT 3
|
|
|
|
|
|
|
|
#define CH_STORAGE_LINE_SIZE (1<<CH_STORAGE_LINE_SHIFT)
|
|
|
|
#define CH_STORAGE_NUM_LINES (CH_STORAGE_SIZE/CH_STORAGE_LINE_SIZE)
|
|
|
|
|
2020-01-30 01:58:04 -04:00
|
|
|
static_assert(CH_STORAGE_SIZE % CH_STORAGE_LINE_SIZE == 0,
|
|
|
|
"Storage is not multiple of line size");
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
class ChibiOS::Storage : public AP_HAL::Storage {
|
2018-01-05 02:19:51 -04:00
|
|
|
public:
|
2018-11-07 06:58:46 -04:00
|
|
|
void init() override {}
|
2019-12-26 20:44:05 -04:00
|
|
|
bool erase() override;
|
2018-11-07 06:58:46 -04:00
|
|
|
void read_block(void *dst, uint16_t src, size_t n) override;
|
|
|
|
void write_block(uint16_t dst, const void* src, size_t n) override;
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-01-26 22:32:58 -04:00
|
|
|
void _timer_tick(void) override;
|
2018-06-29 20:22:49 -03:00
|
|
|
bool healthy(void) override;
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
private:
|
2020-02-20 00:08:23 -04:00
|
|
|
enum class StorageBackend: uint8_t {
|
|
|
|
None,
|
|
|
|
FRAM,
|
|
|
|
Flash,
|
|
|
|
SDCard,
|
|
|
|
};
|
|
|
|
StorageBackend _initialisedType = StorageBackend::None;
|
2018-01-05 02:19:51 -04:00
|
|
|
void _storage_create(void);
|
|
|
|
void _storage_open(void);
|
2018-07-11 02:44:44 -03:00
|
|
|
void _save_backup(void);
|
2018-01-05 02:19:51 -04:00
|
|
|
void _mark_dirty(uint16_t loc, uint16_t length);
|
|
|
|
uint8_t _buffer[CH_STORAGE_SIZE] __attribute__((aligned(4)));
|
2019-04-11 09:12:54 -03:00
|
|
|
Bitmask<CH_STORAGE_NUM_LINES> _dirty_mask;
|
2020-04-20 05:20:54 -03:00
|
|
|
HAL_Semaphore sem;
|
|
|
|
uint8_t tmpline[CH_STORAGE_LINE_SIZE];
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
bool _flash_write_data(uint8_t sector, uint32_t offset, const uint8_t *data, uint16_t length);
|
|
|
|
bool _flash_read_data(uint8_t sector, uint32_t offset, uint8_t *data, uint16_t length);
|
|
|
|
bool _flash_erase_sector(uint8_t sector);
|
|
|
|
bool _flash_erase_ok(void);
|
|
|
|
uint8_t _flash_page;
|
|
|
|
bool _flash_failed;
|
|
|
|
uint32_t _last_re_init_ms;
|
2018-06-29 20:22:49 -03:00
|
|
|
uint32_t _last_empty_ms;
|
2018-05-29 22:23:03 -03:00
|
|
|
|
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
AP_FlashStorage _flash{_buffer,
|
2019-04-08 01:22:26 -03:00
|
|
|
stm32_flash_getpagesize(STORAGE_FLASH_PAGE),
|
2018-01-13 00:02:05 -04:00
|
|
|
FUNCTOR_BIND_MEMBER(&Storage::_flash_write_data, bool, uint8_t, uint32_t, const uint8_t *, uint16_t),
|
|
|
|
FUNCTOR_BIND_MEMBER(&Storage::_flash_read_data, bool, uint8_t, uint32_t, uint8_t *, uint16_t),
|
|
|
|
FUNCTOR_BIND_MEMBER(&Storage::_flash_erase_sector, bool, uint8_t),
|
|
|
|
FUNCTOR_BIND_MEMBER(&Storage::_flash_erase_ok, bool)};
|
2018-05-29 22:23:03 -03:00
|
|
|
#endif
|
2019-10-20 10:31:12 -03:00
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
void _flash_load(void);
|
2020-04-20 05:20:54 -03:00
|
|
|
bool _flash_write(uint16_t line);
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
#if HAL_WITH_RAMTRON
|
|
|
|
AP_RAMTRON fram;
|
|
|
|
#endif
|
2018-06-29 20:22:49 -03:00
|
|
|
#ifdef USE_POSIX
|
|
|
|
int log_fd;
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
};
|
2018-03-01 20:46:30 -04:00
|
|
|
|
|
|
|
#endif // HAL_USE_EMPTY_STORAGE
|