src/flash/nor: redirect fespi to nuspi for hbird and hbirdv2 SoC

Change-Id: I3d7d58971e7739b5e1104c9595952005c840a5dc
Signed-off-by: Huaqi Fang <578567190@qq.com>
This commit is contained in:
Huaqi Fang 2024-06-25 18:06:19 +08:00
parent aa75e393d2
commit 285f810ce3
1 changed files with 8 additions and 1 deletions

View File

@ -8,6 +8,7 @@
#include "config.h"
#endif
#include "imp.h"
#include <string.h>
/**
* The list of built-in flash drivers.
@ -91,8 +92,14 @@ static const struct flash_driver * const flash_drivers[] = {
const struct flash_driver *flash_driver_find_by_name(const char *name)
{
char *flash_name = name;
if (strcmp(flash_name, "fespi") == 0) {
/* Nuclei added: redirect fespi for old hbird/hbirdv2 SPI driver to nuspi driver */
flash_name = "nuspi";
}
for (unsigned int i = 0; flash_drivers[i]; i++) {
if (strcmp(name, flash_drivers[i]->name) == 0)
if (strcmp(flash_name, flash_drivers[i]->name) == 0)
return flash_drivers[i];
}
return NULL;