1
0
Fork 0
forked from len0rd/rockbox

iriver_flash: add support for SST39VF3201 ROM chips

These are used in the iRiver H300 series.

Change-Id: Iafbd165bdfd71b691698156d3fd91243c50b3b61
This commit is contained in:
James Buren 2020-10-25 23:16:04 +00:00
parent 3fbca49929
commit 1419070b3d

View file

@ -165,6 +165,12 @@ bool cfi_get_flash_info(struct flash_info* pInfo)
rb->strcpy(pInfo->name, "SST39VF160"); rb->strcpy(pInfo->name, "SST39VF160");
return true; return true;
} }
else if (pInfo->id == 0x5B)
{
pInfo->size = 4096* 1024; /* 4 MiB */
rb->strcpy(pInfo->name, "SST39VF3201");
return true;
}
else else
return false; return false;
} }