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:
parent
3fbca49929
commit
1419070b3d
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue