2016-02-17 21:25:28 -04:00
|
|
|
#pragma once
|
2012-12-12 18:04:27 -04:00
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2019-01-21 00:21:42 -04:00
|
|
|
#include <AP_Common/Bitmask.h>
|
2015-05-04 03:15:12 -03:00
|
|
|
#include "AP_HAL_SITL_Namespace.h"
|
2019-01-21 00:21:42 -04:00
|
|
|
#include <AP_FlashStorage/AP_FlashStorage.h>
|
2021-07-12 22:41:18 -03:00
|
|
|
#include <AP_RAMTRON/AP_RAMTRON.h>
|
2012-12-12 18:04:27 -04:00
|
|
|
|
2019-01-21 00:21:42 -04:00
|
|
|
#ifndef STORAGE_USE_FLASH
|
2021-06-10 23:30:38 -03:00
|
|
|
#define STORAGE_USE_FLASH 1
|
2019-01-21 00:21:42 -04:00
|
|
|
#endif
|
|
|
|
|
2021-06-10 23:30:38 -03:00
|
|
|
#ifndef STORAGE_USE_POSIX
|
2019-01-21 00:21:42 -04:00
|
|
|
#define STORAGE_USE_POSIX 1
|
2021-06-10 23:30:38 -03:00
|
|
|
#endif
|
2019-01-21 00:21:42 -04:00
|
|
|
|
2021-07-12 22:41:18 -03:00
|
|
|
#ifndef STORAGE_USE_FRAM
|
|
|
|
#define STORAGE_USE_FRAM HAL_WITH_RAMTRON
|
|
|
|
#endif
|
|
|
|
|
2019-01-21 00:21:42 -04:00
|
|
|
#define STORAGE_LINE_SHIFT 3
|
|
|
|
|
|
|
|
#define STORAGE_LINE_SIZE (1<<STORAGE_LINE_SHIFT)
|
|
|
|
#define STORAGE_NUM_LINES (HAL_STORAGE_SIZE/STORAGE_LINE_SIZE)
|
|
|
|
|
|
|
|
class HALSITL::Storage : public AP_HAL::Storage {
|
2012-12-12 18:04:27 -04:00
|
|
|
public:
|
2019-01-21 00:21:42 -04:00
|
|
|
void init() override {}
|
|
|
|
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;
|
|
|
|
|
|
|
|
void _timer_tick(void) override;
|
|
|
|
bool healthy(void) override;
|
2012-12-12 18:04:27 -04:00
|
|
|
|
|
|
|
private:
|
2021-06-10 23:30:38 -03:00
|
|
|
enum class StorageBackend: uint8_t {
|
|
|
|
None,
|
2021-07-12 22:41:18 -03:00
|
|
|
FRAM,
|
2021-06-10 23:30:38 -03:00
|
|
|
Flash,
|
|
|
|
SDCard, // AKA POSIX
|
|
|
|
};
|
|
|
|
StorageBackend _initialisedType = StorageBackend::None;
|
|
|
|
|
2019-01-21 00:21:42 -04:00
|
|
|
void _storage_create(void);
|
|
|
|
void _storage_open(void);
|
|
|
|
void _save_backup(void);
|
|
|
|
void _mark_dirty(uint16_t loc, uint16_t length);
|
|
|
|
uint8_t _buffer[HAL_STORAGE_SIZE] __attribute__((aligned(4)));
|
2019-04-11 09:13:02 -03:00
|
|
|
Bitmask<STORAGE_NUM_LINES> _dirty_mask;
|
2019-01-21 00:21:42 -04:00
|
|
|
|
2021-06-10 23:30:38 -03:00
|
|
|
uint32_t _last_empty_ms;
|
|
|
|
|
2019-01-21 00:21:42 -04:00
|
|
|
#if STORAGE_USE_FLASH
|
|
|
|
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);
|
|
|
|
|
|
|
|
bool _flash_failed;
|
|
|
|
uint32_t _last_re_init_ms;
|
|
|
|
|
|
|
|
AP_FlashStorage _flash{_buffer,
|
2020-04-11 23:16:40 -03:00
|
|
|
HAL_FLASH_SECTOR_SIZE,
|
2019-01-21 00:21:42 -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)};
|
2021-06-10 23:30:38 -03:00
|
|
|
|
2019-01-21 00:21:42 -04:00
|
|
|
void _flash_load(void);
|
|
|
|
void _flash_write(uint16_t line);
|
2021-06-10 23:30:38 -03:00
|
|
|
#endif
|
2019-01-21 00:21:42 -04:00
|
|
|
|
|
|
|
#if STORAGE_USE_POSIX
|
|
|
|
int log_fd;
|
|
|
|
#endif
|
2021-07-12 22:41:18 -03:00
|
|
|
|
|
|
|
#if STORAGE_USE_FRAM
|
|
|
|
AP_RAMTRON fram;
|
|
|
|
#endif
|
2012-12-12 18:04:27 -04:00
|
|
|
};
|