2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file flash_main.cpp
|
|
|
|
* @brief Higher-level logic of saving data into internal flash memory
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Sep 19, 2013
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
2021-07-25 22:05:17 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2019-04-12 19:07:03 -07:00
|
|
|
#if EFI_INTERNAL_FLASH
|
2019-07-05 17:03:32 -07:00
|
|
|
#include "os_access.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "flash_main.h"
|
|
|
|
#include "eficonsole.h"
|
2019-07-04 00:57:21 -07:00
|
|
|
|
2020-04-25 13:32:32 -07:00
|
|
|
#include "flash_int.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2019-04-12 19:07:03 -07:00
|
|
|
#if EFI_TUNER_STUDIO
|
2015-07-10 06:01:56 -07:00
|
|
|
#include "tunerstudio.h"
|
|
|
|
#endif
|
|
|
|
|
2021-08-14 06:36:08 -07:00
|
|
|
#if EFI_STORAGE_EXT_SNOR == TRUE
|
|
|
|
#include "hal_serial_nor.h"
|
|
|
|
#include "hal_mfs.h"
|
|
|
|
#endif
|
|
|
|
|
2021-01-31 19:41:17 -08:00
|
|
|
#include "runtime_state.h"
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
static bool needToWriteConfiguration = false;
|
|
|
|
|
|
|
|
extern persistent_config_container_s persistentState;
|
|
|
|
|
|
|
|
extern engine_configuration_s *engineConfiguration;
|
|
|
|
|
2021-08-14 06:36:08 -07:00
|
|
|
/* if we store settings externally */
|
|
|
|
#if EFI_STORAGE_EXT_SNOR == TRUE
|
|
|
|
|
|
|
|
/* Some fields in following struct is used for DMA transfers, so do no cache */
|
|
|
|
NO_CACHE SNORDriver snor1;
|
|
|
|
|
|
|
|
const WSPIConfig WSPIcfg1 = {
|
|
|
|
.end_cb = NULL,
|
|
|
|
.error_cb = NULL,
|
|
|
|
.dcr = STM32_DCR_FSIZE(23U) | /* 8MB device. */
|
|
|
|
STM32_DCR_CSHT(1U) /* NCS 2 cycles delay. */
|
|
|
|
};
|
|
|
|
|
|
|
|
const SNORConfig snorcfg1 = {
|
|
|
|
.busp = &WSPID1,
|
|
|
|
.buscfg = &WSPIcfg1
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Managed Flash Storage stuff */
|
|
|
|
MFSDriver mfsd;
|
|
|
|
|
|
|
|
const MFSConfig mfsd_nor_config = {
|
|
|
|
.flashp = (BaseFlash *)&snor1,
|
|
|
|
.erased = 0xFFFFFFFFU,
|
|
|
|
.bank_size = 64 * 1024U,
|
|
|
|
.bank0_start = 0U,
|
|
|
|
.bank0_sectors = 128U, /* 128 * 4 K = 0.5 Mb */
|
|
|
|
.bank1_start = 128U,
|
|
|
|
.bank1_sectors = 128U
|
|
|
|
};
|
|
|
|
|
2021-08-23 21:39:03 -07:00
|
|
|
#define EFI_MFS_SETTINGS_RECORD_ID 1
|
2021-08-14 06:36:08 -07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2017-02-13 22:03:01 -08:00
|
|
|
/**
|
|
|
|
* https://sourceforge.net/p/rusefi/tickets/335/
|
|
|
|
*
|
2019-04-24 21:10:39 -07:00
|
|
|
* In order to preserve at least one copy of the tune in case of electrical issues address of second configuration copy
|
|
|
|
* should be in a different sector of flash since complete flash sectors are erased on write.
|
2017-02-13 22:03:01 -08:00
|
|
|
*/
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
crc_t flashStateCrc(persistent_config_container_s *state) {
|
|
|
|
return calc_crc((const crc_t*) &state->persistentConfiguration, sizeof(persistent_config_s));
|
|
|
|
}
|
|
|
|
|
2021-03-25 15:44:41 -07:00
|
|
|
#if EFI_FLASH_WRITE_THREAD
|
|
|
|
chibios_rt::BinarySemaphore flashWriteSemaphore(/*taken =*/ true);
|
|
|
|
|
|
|
|
static THD_WORKING_AREA(flashWriteStack, UTILITY_THREAD_STACK_SIZE);
|
|
|
|
static void flashWriteThread(void*) {
|
2021-06-21 06:00:15 -07:00
|
|
|
chRegSetThreadName("flash writer");
|
|
|
|
|
2021-03-25 15:44:41 -07:00
|
|
|
while (true) {
|
|
|
|
// Wait for a request to come in
|
|
|
|
flashWriteSemaphore.wait();
|
|
|
|
|
|
|
|
// Do the actual flash write operation
|
|
|
|
writeToFlashNow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // EFI_FLASH_WRITE_THREAD
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
void setNeedToWriteConfiguration(void) {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Scheduling configuration write");
|
2015-07-10 06:01:56 -07:00
|
|
|
needToWriteConfiguration = true;
|
2021-03-25 15:44:41 -07:00
|
|
|
|
|
|
|
#if EFI_FLASH_WRITE_THREAD
|
2021-08-23 21:39:03 -07:00
|
|
|
if (allowFlashWhileRunning() || (EFI_STORAGE_EXT_SNOR == TRUE)) {
|
2021-05-28 22:05:29 -07:00
|
|
|
// Signal the flash writer thread to wake up and write at its leisure
|
|
|
|
flashWriteSemaphore.signal();
|
|
|
|
}
|
2021-03-25 15:44:41 -07:00
|
|
|
#endif // EFI_FLASH_WRITE_THREAD
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool getNeedToWriteConfiguration(void) {
|
|
|
|
return needToWriteConfiguration;
|
|
|
|
}
|
|
|
|
|
|
|
|
void writeToFlashIfPending() {
|
2021-05-28 22:05:29 -07:00
|
|
|
// with a flash write thread, the schedule happens directly from
|
|
|
|
// setNeedToWriteConfiguration, so there's nothing to do here
|
|
|
|
if (allowFlashWhileRunning() || !getNeedToWriteConfiguration()) {
|
2021-08-15 13:04:58 -07:00
|
|
|
// Allow sensor timeouts again now that we're done (and a little time has passed)
|
|
|
|
Sensor::inhibitTimeouts(false);
|
2015-07-10 06:01:56 -07:00
|
|
|
return;
|
|
|
|
}
|
2021-03-25 15:44:41 -07:00
|
|
|
|
2021-08-15 13:04:58 -07:00
|
|
|
// Prevent sensor timeouts while flashing
|
|
|
|
Sensor::inhibitTimeouts(true);
|
2015-07-10 06:01:56 -07:00
|
|
|
writeToFlashNow();
|
|
|
|
}
|
|
|
|
|
2020-03-07 07:23:30 -08:00
|
|
|
// Erase and write a copy of the configuration at the specified address
|
|
|
|
template <typename TStorage>
|
2021-05-09 06:19:20 -07:00
|
|
|
int eraseAndFlashCopy(flashaddr_t storageAddress, const TStorage& data) {
|
|
|
|
// error already reported, return
|
|
|
|
if (!storageAddress) {
|
|
|
|
return FLASH_RETURN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2021-04-12 05:18:11 -07:00
|
|
|
auto err = intFlashErase(storageAddress, sizeof(TStorage));
|
|
|
|
if (FLASH_RETURN_SUCCESS != err) {
|
2021-08-01 15:26:42 -07:00
|
|
|
firmwareError(OBD_PCM_Processor_Fault, "Failed to erase flash at 0x%08x: %d", storageAddress, err);
|
2021-04-12 05:18:11 -07:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2021-08-01 15:26:42 -07:00
|
|
|
err = intFlashWrite(storageAddress, reinterpret_cast<const char*>(&data), sizeof(TStorage));
|
|
|
|
if (FLASH_RETURN_SUCCESS != err) {
|
|
|
|
firmwareError(OBD_PCM_Processor_Fault, "Failed to write flash at 0x%08x: %d", storageAddress, err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
2020-03-07 07:23:30 -08:00
|
|
|
}
|
|
|
|
|
2021-08-10 04:11:41 -07:00
|
|
|
bool burnWithoutFlash = false;
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
void writeToFlashNow(void) {
|
2021-08-14 06:36:08 -07:00
|
|
|
bool isSuccess = false;
|
|
|
|
|
2021-08-10 04:11:41 -07:00
|
|
|
if (burnWithoutFlash) {
|
|
|
|
needToWriteConfiguration = false;
|
|
|
|
return;
|
|
|
|
}
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Writing pending configuration...");
|
2020-03-07 07:23:30 -08:00
|
|
|
|
|
|
|
// Set up the container
|
|
|
|
persistentState.size = sizeof(persistentState);
|
2015-07-10 06:01:56 -07:00
|
|
|
persistentState.version = FLASH_DATA_VERSION;
|
2020-03-07 07:23:30 -08:00
|
|
|
persistentState.value = flashStateCrc(&persistentState);
|
|
|
|
|
2021-08-14 06:36:08 -07:00
|
|
|
#if EFI_STORAGE_EXT_SNOR == TRUE
|
|
|
|
mfs_error_t err;
|
|
|
|
/* In case of MFS:
|
|
|
|
* do we need to have two copies?
|
|
|
|
* do we need to protect it with CRC? */
|
|
|
|
|
2021-08-23 21:39:03 -07:00
|
|
|
err = mfsWriteRecord(&mfsd, EFI_MFS_SETTINGS_RECORD_ID,
|
2021-08-14 06:36:08 -07:00
|
|
|
sizeof(persistentState), (uint8_t *)&persistentState);
|
|
|
|
|
|
|
|
if (err == MFS_NO_ERROR)
|
|
|
|
isSuccess = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if EFI_STORAGE_INT_FLASH == TRUE
|
2020-03-07 07:23:30 -08:00
|
|
|
// Flash two copies
|
|
|
|
int result1 = eraseAndFlashCopy(getFlashAddrFirstCopy(), persistentState);
|
|
|
|
int result2 = eraseAndFlashCopy(getFlashAddrSecondCopy(), persistentState);
|
|
|
|
|
|
|
|
// handle success/failure
|
2021-08-14 06:36:08 -07:00
|
|
|
isSuccess = (result1 == FLASH_RETURN_SUCCESS) && (result2 == FLASH_RETURN_SUCCESS);
|
|
|
|
#endif
|
2020-03-07 07:23:30 -08:00
|
|
|
|
2015-07-13 17:02:18 -07:00
|
|
|
if (isSuccess) {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("FLASH_SUCCESS");
|
2015-07-13 17:02:18 -07:00
|
|
|
} else {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Flashing failed");
|
2015-07-13 17:02:18 -07:00
|
|
|
}
|
2018-02-03 07:55:15 -08:00
|
|
|
assertEngineReference();
|
2020-02-26 15:16:35 -08:00
|
|
|
|
2017-05-19 18:52:10 -07:00
|
|
|
resetMaxValues();
|
2021-03-25 15:44:41 -07:00
|
|
|
|
|
|
|
// Write complete, clear the flag
|
|
|
|
needToWriteConfiguration = false;
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool isValidCrc(persistent_config_container_s *state) {
|
|
|
|
crc_t result = flashStateCrc(state);
|
|
|
|
int isValidCrc_b = result == state->value;
|
|
|
|
return isValidCrc_b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void doResetConfiguration(void) {
|
2021-04-21 11:28:48 -07:00
|
|
|
resetConfigurationExt(engineConfiguration->engineType PASS_ENGINE_PARAMETER_SUFFIX);
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
2021-03-25 15:16:26 -07:00
|
|
|
typedef enum {
|
|
|
|
PC_OK = 0,
|
|
|
|
CRC_FAILED = 1,
|
|
|
|
INCOMPATIBLE_VERSION = 2,
|
|
|
|
RESET_REQUESTED = 3,
|
|
|
|
PC_ERROR = 4
|
|
|
|
} persisted_configuration_state_e;
|
2015-07-10 06:01:56 -07:00
|
|
|
|
2021-04-21 11:28:48 -07:00
|
|
|
static persisted_configuration_state_e doReadConfiguration(flashaddr_t address) {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("readFromFlash %x", address);
|
2021-05-09 06:19:20 -07:00
|
|
|
|
|
|
|
// error already reported, return
|
|
|
|
if (!address) {
|
|
|
|
return CRC_FAILED;
|
|
|
|
}
|
|
|
|
|
2020-04-25 13:32:32 -07:00
|
|
|
intFlashRead(address, (char *) &persistentState, sizeof(persistentState));
|
2017-02-13 22:03:01 -08:00
|
|
|
|
|
|
|
if (!isValidCrc(&persistentState)) {
|
|
|
|
return CRC_FAILED;
|
2020-03-07 07:23:30 -08:00
|
|
|
} else if (persistentState.version != FLASH_DATA_VERSION || persistentState.size != sizeof(persistentState)) {
|
2017-02-13 22:03:01 -08:00
|
|
|
return INCOMPATIBLE_VERSION;
|
|
|
|
} else {
|
|
|
|
return PC_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 11:02:00 -07:00
|
|
|
/**
|
|
|
|
* this method could and should be executed before we have any
|
|
|
|
* connectivity so no console output here
|
|
|
|
*/
|
2021-04-21 11:28:48 -07:00
|
|
|
static persisted_configuration_state_e readConfiguration() {
|
2021-08-14 06:36:08 -07:00
|
|
|
persisted_configuration_state_e result = CRC_FAILED;
|
|
|
|
|
2019-12-13 15:02:24 -08:00
|
|
|
efiAssert(CUSTOM_ERR_ASSERT, getCurrentRemainingStack() > EXPECTED_REMAINING_STACK, "read f", PC_ERROR);
|
2021-08-14 06:36:08 -07:00
|
|
|
|
|
|
|
#if EFI_STORAGE_EXT_SNOR == TRUE
|
|
|
|
mfs_error_t err;
|
|
|
|
size_t settings_size = sizeof(persistentState);
|
2021-08-23 21:39:03 -07:00
|
|
|
err = mfsReadRecord(&mfsd, EFI_MFS_SETTINGS_RECORD_ID,
|
2021-08-14 06:36:08 -07:00
|
|
|
&settings_size, (uint8_t *)&persistentState);
|
|
|
|
|
|
|
|
if ((err == MFS_NO_ERROR) && (sizeof(persistentState) == settings_size))
|
|
|
|
result = PC_OK;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if EFI_STORAGE_INT_FLASH == TRUE
|
|
|
|
auto firstCopyAddr = getFlashAddrFirstCopy();
|
|
|
|
auto secondyCopyAddr = getFlashAddrSecondCopy();
|
|
|
|
|
|
|
|
result = doReadConfiguration(firstCopyAddr);
|
|
|
|
|
|
|
|
if (result != PC_OK) {
|
|
|
|
efiPrintf("Reading second configuration copy");
|
|
|
|
result = doReadConfiguration(secondyCopyAddr);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void readFromFlash() {
|
|
|
|
persisted_configuration_state_e result = PC_OK;
|
|
|
|
|
|
|
|
#if HW_CHECK_MODE
|
2021-05-10 06:02:27 -07:00
|
|
|
/*
|
|
|
|
* getFlashAddr does device validation, we want validation to be invoked even while we are
|
|
|
|
* HW_CHECK_MODE mode where we would not need actual address
|
|
|
|
* todo: rename method to emphasis the fact of validation check?
|
|
|
|
*/
|
2021-05-10 05:53:19 -07:00
|
|
|
auto firstCopyAddr = getFlashAddrFirstCopy();
|
|
|
|
auto secondyCopyAddr = getFlashAddrSecondCopy();
|
|
|
|
|
2021-04-22 19:04:39 -07:00
|
|
|
resetConfigurationExt(DEFAULT_ENGINE_TYPE PASS_ENGINE_PARAMETER_SUFFIX);
|
2021-08-14 06:36:08 -07:00
|
|
|
#else
|
|
|
|
result = readConfiguration();
|
|
|
|
#endif
|
2017-02-13 22:03:01 -08:00
|
|
|
|
|
|
|
if (result == CRC_FAILED) {
|
2020-05-23 13:24:26 -07:00
|
|
|
// we are here on first boot on brand new chip
|
|
|
|
warning(CUSTOM_ERR_FLASH_CRC_FAILED, "flash CRC failed");
|
2021-04-21 11:28:48 -07:00
|
|
|
resetConfigurationExt(DEFAULT_ENGINE_TYPE PASS_ENGINE_PARAMETER_SUFFIX);
|
2017-02-13 22:03:01 -08:00
|
|
|
} else if (result == INCOMPATIBLE_VERSION) {
|
2021-04-21 11:28:48 -07:00
|
|
|
resetConfigurationExt(engineConfiguration->engineType PASS_ENGINE_PARAMETER_SUFFIX);
|
2015-07-10 06:01:56 -07:00
|
|
|
} else {
|
2015-12-21 20:01:27 -08:00
|
|
|
/**
|
|
|
|
* At this point we know that CRC and version number is what we expect. Safe to assume it's a valid configuration.
|
|
|
|
*/
|
2021-04-21 11:28:48 -07:00
|
|
|
applyNonPersistentConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
2021-08-14 06:36:08 -07:00
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
// we can only change the state after the CRC check
|
2016-12-25 08:02:42 -08:00
|
|
|
engineConfiguration->byFirmwareVersion = getRusEfiVersion();
|
2020-04-19 18:42:00 -07:00
|
|
|
memset(persistentState.persistentConfiguration.warning_message , 0, ERROR_BUFFER_SIZE);
|
2017-08-31 04:53:41 -07:00
|
|
|
validateConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
2015-12-21 20:01:27 -08:00
|
|
|
|
|
|
|
if (result == CRC_FAILED) {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Need to reset flash to default due to CRC");
|
2015-12-21 20:01:27 -08:00
|
|
|
} else if (result == INCOMPATIBLE_VERSION) {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Resetting due to version mismatch but preserving engine type [%d]", engineConfiguration->engineType);
|
2015-12-21 20:01:27 -08:00
|
|
|
} else {
|
2021-04-21 09:53:13 -07:00
|
|
|
efiPrintf("Read valid configuration from flash!");
|
2015-12-21 20:01:27 -08:00
|
|
|
}
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void rewriteConfig(void) {
|
|
|
|
doResetConfiguration();
|
|
|
|
writeToFlashNow();
|
|
|
|
}
|
|
|
|
|
2019-04-08 08:57:16 -07:00
|
|
|
static void writeConfigCommand() {
|
|
|
|
#if EFI_TUNER_STUDIO
|
|
|
|
// on start-up rusEfi would read from working copy of TS while
|
|
|
|
// we have a lot of console commands which write into real copy of configuration directly
|
|
|
|
// we have a bit of a mess here
|
|
|
|
syncTunerStudioCopy();
|
|
|
|
#endif /* EFI_TUNER_STUDIO */
|
|
|
|
writeToFlashNow();
|
|
|
|
}
|
|
|
|
|
2021-04-21 11:28:48 -07:00
|
|
|
void initFlash() {
|
2021-08-14 06:36:08 -07:00
|
|
|
#if EFI_STORAGE_EXT_SNOR == TRUE
|
|
|
|
mfs_error_t err;
|
|
|
|
|
2021-08-17 01:06:37 -07:00
|
|
|
#if SNOR_SHARED_BUS == FALSE
|
|
|
|
wspiStart(&WSPID1, &WSPIcfg1);
|
|
|
|
#endif
|
|
|
|
|
2021-08-14 06:36:08 -07:00
|
|
|
/* Initializing and starting snor1 driver.*/
|
|
|
|
snorObjectInit(&snor1);
|
|
|
|
snorStart(&snor1, &snorcfg1);
|
|
|
|
|
|
|
|
/* MFS */
|
|
|
|
mfsObjectInit(&mfsd);
|
|
|
|
err = mfsStart(&mfsd, &mfsd_nor_config);
|
|
|
|
if (err != MFS_NO_ERROR) {
|
|
|
|
/* hm...? */
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-10 06:01:56 -07:00
|
|
|
addConsoleAction("readconfig", readFromFlash);
|
|
|
|
/**
|
|
|
|
* This would write NOW (you should not be doing this while connected to real engine)
|
|
|
|
*/
|
2019-07-14 12:21:38 -07:00
|
|
|
addConsoleAction(CMD_WRITECONFIG, writeConfigCommand);
|
2019-04-12 19:07:03 -07:00
|
|
|
#if EFI_TUNER_STUDIO
|
2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* This would schedule write to flash once the engine is stopped
|
|
|
|
*/
|
2021-06-20 21:51:25 -07:00
|
|
|
addConsoleAction(CMD_BURNCONFIG, requestBurn);
|
2015-07-10 06:01:56 -07:00
|
|
|
#endif
|
|
|
|
addConsoleAction("resetconfig", doResetConfiguration);
|
|
|
|
addConsoleAction("rewriteconfig", rewriteConfig);
|
2021-03-25 15:44:41 -07:00
|
|
|
|
|
|
|
#if EFI_FLASH_WRITE_THREAD
|
2021-05-28 22:05:29 -07:00
|
|
|
if (allowFlashWhileRunning()) {
|
|
|
|
chThdCreateStatic(flashWriteStack, sizeof(flashWriteStack), PRIO_FLASH_WRITE, flashWriteThread, nullptr);
|
|
|
|
}
|
2021-03-25 15:44:41 -07:00
|
|
|
#endif
|
2015-07-10 06:01:56 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* EFI_INTERNAL_FLASH */
|