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/>.
|
|
|
|
*
|
|
|
|
* Code by Andrew Tridgell and Siddharth Bharat Purohit
|
|
|
|
*/
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <AP_BoardConfig/AP_BoardConfig.h>
|
|
|
|
|
|
|
|
#include "Storage.h"
|
|
|
|
#include "hwdef/common/flash.h"
|
2018-07-10 18:24:39 -03:00
|
|
|
#include "hwdef/common/posix.h"
|
2018-06-29 20:22:49 -03:00
|
|
|
#include "sdcard.h"
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
using namespace ChibiOS;
|
|
|
|
|
2018-03-01 20:46:30 -04:00
|
|
|
#ifndef HAL_USE_EMPTY_STORAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2018-06-29 20:22:49 -03:00
|
|
|
#ifndef HAL_STORAGE_FILE
|
|
|
|
// using SKETCHNAME allows the one microSD to be used
|
|
|
|
// for multiple vehicle types
|
|
|
|
#define HAL_STORAGE_FILE "/APM/" SKETCHNAME ".stg"
|
|
|
|
#endif
|
|
|
|
|
2018-07-11 02:44:44 -03:00
|
|
|
#ifndef HAL_STORAGE_BACKUP_FILE
|
|
|
|
// location of backup file
|
|
|
|
#define HAL_STORAGE_BACKUP_FILE "/APM/" SKETCHNAME ".bak"
|
|
|
|
#endif
|
|
|
|
|
2019-03-10 19:12:43 -03:00
|
|
|
#define STORAGE_FLASH_RETRIES 5
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::_storage_open(void)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
|
|
|
if (_initialised) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-29 20:22:49 -03:00
|
|
|
#ifdef USE_POSIX
|
|
|
|
// if we have failed filesystem init don't try again
|
|
|
|
if (log_fd == -1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
_dirty_mask.clearall();
|
|
|
|
|
|
|
|
#if HAL_WITH_RAMTRON
|
|
|
|
using_fram = fram.init();
|
|
|
|
if (using_fram) {
|
|
|
|
if (!fram.read(0, _buffer, CH_STORAGE_SIZE)) {
|
|
|
|
return;
|
|
|
|
}
|
2018-07-11 02:44:44 -03:00
|
|
|
_save_backup();
|
2018-01-05 02:19:51 -04:00
|
|
|
_initialised = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// allow for FMUv3 with no FRAM chip, fall through to flash storage
|
|
|
|
#endif
|
|
|
|
|
2018-06-29 20:22:49 -03:00
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
// load from storage backend
|
|
|
|
_flash_load();
|
2018-07-11 02:44:44 -03:00
|
|
|
#elif defined(USE_POSIX)
|
2018-06-29 20:22:49 -03:00
|
|
|
// allow for fallback to microSD based storage
|
2019-04-06 23:56:05 -03:00
|
|
|
sdcard_retry();
|
2018-06-29 20:22:49 -03:00
|
|
|
|
|
|
|
log_fd = open(HAL_STORAGE_FILE, O_RDWR|O_CREAT);
|
|
|
|
if (log_fd == -1) {
|
|
|
|
hal.console->printf("open failed of " HAL_STORAGE_FILE "\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int ret = read(log_fd, _buffer, CH_STORAGE_SIZE);
|
|
|
|
if (ret < 0) {
|
|
|
|
hal.console->printf("read failed for " HAL_STORAGE_FILE "\n");
|
|
|
|
close(log_fd);
|
|
|
|
log_fd = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// pre-fill to full size
|
|
|
|
if (lseek(log_fd, ret, SEEK_SET) != ret ||
|
|
|
|
write(log_fd, &_buffer[ret], CH_STORAGE_SIZE-ret) != CH_STORAGE_SIZE-ret) {
|
|
|
|
hal.console->printf("setup failed for " HAL_STORAGE_FILE "\n");
|
|
|
|
close(log_fd);
|
|
|
|
log_fd = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
using_filesystem = true;
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
|
2018-07-11 02:44:44 -03:00
|
|
|
_save_backup();
|
2018-01-05 02:19:51 -04:00
|
|
|
_initialised = true;
|
|
|
|
}
|
|
|
|
|
2018-07-11 02:44:44 -03:00
|
|
|
/*
|
|
|
|
save a backup of storage file if we have microSD available. This is
|
|
|
|
very handy for diagnostics, and for moving a copy of storage into
|
|
|
|
SITL for testing
|
|
|
|
*/
|
|
|
|
void Storage::_save_backup(void)
|
|
|
|
{
|
|
|
|
#ifdef USE_POSIX
|
|
|
|
// allow for fallback to microSD based storage
|
2019-04-06 23:56:05 -03:00
|
|
|
sdcard_retry();
|
2018-07-11 02:44:44 -03:00
|
|
|
int fd = open(HAL_STORAGE_BACKUP_FILE, O_WRONLY|O_CREAT|O_TRUNC);
|
|
|
|
if (fd != -1) {
|
|
|
|
write(fd, _buffer, CH_STORAGE_SIZE);
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-01-05 02:19:51 -04:00
|
|
|
/*
|
|
|
|
mark some lines as dirty. Note that there is no attempt to avoid
|
|
|
|
the race condition between this code and the _timer_tick() code
|
|
|
|
below, which both update _dirty_mask. If we lose the race then the
|
|
|
|
result is that a line is written more than once, but it won't result
|
|
|
|
in a line not being written.
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::_mark_dirty(uint16_t loc, uint16_t length)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
|
|
|
uint16_t end = loc + length;
|
|
|
|
for (uint16_t line=loc>>CH_STORAGE_LINE_SHIFT;
|
|
|
|
line <= end>>CH_STORAGE_LINE_SHIFT;
|
|
|
|
line++) {
|
|
|
|
_dirty_mask.set(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::read_block(void *dst, uint16_t loc, size_t n)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
|
|
|
if (loc >= sizeof(_buffer)-(n-1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_storage_open();
|
|
|
|
memcpy(dst, &_buffer[loc], n);
|
|
|
|
}
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::write_block(uint16_t loc, const void *src, size_t n)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
|
|
|
if (loc >= sizeof(_buffer)-(n-1)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (memcmp(src, &_buffer[loc], n) != 0) {
|
|
|
|
_storage_open();
|
|
|
|
memcpy(&_buffer[loc], src, n);
|
|
|
|
_mark_dirty(loc, n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::_timer_tick(void)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2018-06-29 20:22:49 -03:00
|
|
|
if (!_initialised) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (_dirty_mask.empty()) {
|
|
|
|
_last_empty_ms = AP_HAL::millis();
|
2018-01-05 02:19:51 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// write out the first dirty line. We don't write more
|
|
|
|
// than one to keep the latency of this call to a minimum
|
|
|
|
uint16_t i;
|
|
|
|
for (i=0; i<CH_STORAGE_NUM_LINES; i++) {
|
|
|
|
if (_dirty_mask.get(i)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == CH_STORAGE_NUM_LINES) {
|
|
|
|
// this shouldn't be possible
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAL_WITH_RAMTRON
|
|
|
|
if (using_fram) {
|
|
|
|
if (fram.write(CH_STORAGE_LINE_SIZE*i, &_buffer[CH_STORAGE_LINE_SIZE*i], CH_STORAGE_LINE_SIZE)) {
|
|
|
|
_dirty_mask.clear(i);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-06-29 20:22:49 -03:00
|
|
|
#ifdef USE_POSIX
|
|
|
|
if (using_filesystem && log_fd != -1) {
|
|
|
|
uint32_t offset = CH_STORAGE_LINE_SIZE*i;
|
|
|
|
if (lseek(log_fd, offset, SEEK_SET) != offset) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (write(log_fd, &_buffer[offset], CH_STORAGE_LINE_SIZE) != CH_STORAGE_LINE_SIZE) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (fsync(log_fd) != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
_dirty_mask.clear(i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
// save to storage backend
|
|
|
|
_flash_write(i);
|
2018-06-29 20:22:49 -03:00
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
load all data from flash
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::_flash_load(void)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2018-05-29 22:23:03 -03:00
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
_flash_page = STORAGE_FLASH_PAGE;
|
|
|
|
|
|
|
|
hal.console->printf("Storage: Using flash pages %u and %u\n", _flash_page, _flash_page+1);
|
|
|
|
|
|
|
|
if (!_flash.init()) {
|
|
|
|
AP_HAL::panic("unable to init flash storage");
|
|
|
|
}
|
2018-05-29 22:23:03 -03:00
|
|
|
#else
|
|
|
|
AP_HAL::panic("unable to init storage");
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
write one storage line. This also updates _dirty_mask.
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
void Storage::_flash_write(uint16_t line)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2018-05-29 22:23:03 -03:00
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2018-01-05 02:19:51 -04:00
|
|
|
if (_flash.write(line*CH_STORAGE_LINE_SIZE, CH_STORAGE_LINE_SIZE)) {
|
|
|
|
// mark the line clean
|
|
|
|
_dirty_mask.clear(line);
|
|
|
|
}
|
2018-05-29 22:23:03 -03:00
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
callback to write data to flash
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
bool Storage::_flash_write_data(uint8_t sector, uint32_t offset, const uint8_t *data, uint16_t length)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2018-05-29 22:23:03 -03:00
|
|
|
#ifdef STORAGE_FLASH_PAGE
|
2019-03-25 21:21:53 -03:00
|
|
|
size_t base_address = hal.flash->getpageaddr(_flash_page+sector);
|
2019-03-10 19:12:43 -03:00
|
|
|
for (uint8_t i=0; i<STORAGE_FLASH_RETRIES; i++) {
|
2019-03-25 21:21:53 -03:00
|
|
|
if (hal.flash->write(base_address+offset, data, length)) {
|
2019-03-10 19:12:43 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
hal.scheduler->delay(1);
|
|
|
|
}
|
|
|
|
if (_flash_erase_ok()) {
|
2018-01-05 02:19:51 -04:00
|
|
|
// we are getting flash write errors while disarmed. Try
|
|
|
|
// re-writing all of flash
|
|
|
|
uint32_t now = AP_HAL::millis();
|
|
|
|
if (now - _last_re_init_ms > 5000) {
|
|
|
|
_last_re_init_ms = now;
|
|
|
|
bool ok = _flash.re_initialise();
|
|
|
|
hal.console->printf("Storage: failed at %u:%u for %u - re-init %u\n",
|
|
|
|
(unsigned)sector, (unsigned)offset, (unsigned)length, (unsigned)ok);
|
|
|
|
}
|
|
|
|
}
|
2019-03-10 19:12:43 -03:00
|
|
|
return false;
|
2018-05-29 22:23:03 -03:00
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
2018-01-05 02:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
callback to read data from flash
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
bool Storage::_flash_read_data(uint8_t sector, uint32_t offset, uint8_t *data, uint16_t length)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2019-03-25 21:21:53 -03:00
|
|
|
size_t base_address = hal.flash->getpageaddr(_flash_page+sector);
|
2018-01-05 02:19:51 -04:00
|
|
|
const uint8_t *b = ((const uint8_t *)base_address)+offset;
|
|
|
|
memcpy(data, b, length);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
callback to erase flash sector
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
bool Storage::_flash_erase_sector(uint8_t sector)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
2019-03-10 19:12:43 -03:00
|
|
|
for (uint8_t i=0; i<STORAGE_FLASH_RETRIES; i++) {
|
2019-03-25 21:21:53 -03:00
|
|
|
if (hal.flash->erasepage(_flash_page+sector)) {
|
2019-03-10 19:12:43 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
hal.scheduler->delay(1);
|
|
|
|
}
|
|
|
|
return false;
|
2018-01-05 02:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
callback to check if erase is allowed
|
|
|
|
*/
|
2018-01-13 00:02:05 -04:00
|
|
|
bool Storage::_flash_erase_ok(void)
|
2018-01-05 02:19:51 -04:00
|
|
|
{
|
|
|
|
// only allow erase while disarmed
|
|
|
|
return !hal.util->get_soft_armed();
|
|
|
|
}
|
|
|
|
|
2018-06-29 20:22:49 -03:00
|
|
|
/*
|
|
|
|
consider storage healthy if we have nothing to write sometime in the
|
|
|
|
last 2 seconds
|
|
|
|
*/
|
|
|
|
bool Storage::healthy(void)
|
|
|
|
{
|
|
|
|
return _initialised && AP_HAL::millis() - _last_empty_ms < 2000;
|
|
|
|
}
|
|
|
|
|
2018-03-01 20:46:30 -04:00
|
|
|
#endif // HAL_USE_EMPTY_STORAGE
|