RAMTRON: Update driver to include support for newer RAMTRON parts.
This commit is contained in:
parent
c68b4b10e4
commit
c83d92e846
@ -10801,3 +10801,6 @@
|
|||||||
* fs/vfs/epoll.c and include/sys/epoll.h: Add a very simple epoll layer
|
* fs/vfs/epoll.c and include/sys/epoll.h: Add a very simple epoll layer
|
||||||
just around poll calls. To satisfy build app requirements. From Anton
|
just around poll calls. To satisfy build app requirements. From Anton
|
||||||
D. Kachalov.
|
D. Kachalov.
|
||||||
|
* drivers/mtd/ramtron.c: Update to include supportf for newer
|
||||||
|
RAMTRON parts. From David Sidrane.
|
||||||
|
|
||||||
|
@ -176,6 +176,14 @@ static const struct ramtron_parts_s g_ramtron_parts[] =
|
|||||||
2, /* addr_len */
|
2, /* addr_len */
|
||||||
RAMTRON_INIT_CLK_MAX /* speed */
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"FM25V01A", /* name */
|
||||||
|
0x21, /* id1 */
|
||||||
|
0x08, /* id2 */
|
||||||
|
16L*1024L, /* size */
|
||||||
|
2, /* addr_len */
|
||||||
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"FM25V02", /* name */
|
"FM25V02", /* name */
|
||||||
0x22, /* id1 */
|
0x22, /* id1 */
|
||||||
@ -184,6 +192,14 @@ static const struct ramtron_parts_s g_ramtron_parts[] =
|
|||||||
2, /* addr_len */
|
2, /* addr_len */
|
||||||
RAMTRON_INIT_CLK_MAX /* speed */
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"FM25V02A", /* name */
|
||||||
|
0x22, /* id1 */
|
||||||
|
0x08, /* id2 */
|
||||||
|
32L*1024L, /* size */
|
||||||
|
2, /* addr_len */
|
||||||
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"FM25VN02", /* name */
|
"FM25VN02", /* name */
|
||||||
0x22, /* id1 */
|
0x22, /* id1 */
|
||||||
@ -224,6 +240,22 @@ static const struct ramtron_parts_s g_ramtron_parts[] =
|
|||||||
3, /* addr_len */
|
3, /* addr_len */
|
||||||
RAMTRON_INIT_CLK_MAX /* speed */
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"FM25V20A", /* name */
|
||||||
|
0x25, /* id1 */
|
||||||
|
0x08, /* id2 */
|
||||||
|
256L*1024L, /* size */
|
||||||
|
3, /* addr_len */
|
||||||
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"CY15B104Q", /* name */
|
||||||
|
0x26, /* id1 */
|
||||||
|
0x08, /* id2 */
|
||||||
|
512L*1024L, /* size */
|
||||||
|
3, /* addr_len */
|
||||||
|
RAMTRON_INIT_CLK_MAX /* speed */
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"MB85RS1MT", /* name */
|
"MB85RS1MT", /* name */
|
||||||
0x27, /* id1 */
|
0x27, /* id1 */
|
||||||
|
Loading…
Reference in New Issue
Block a user