Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * flashchips.c: flash programming utility - flash devices |
| 3 | * |
| 4 | * Copyright 2000 Silicon Integrated System Corporation |
| 5 | * Copyright 2004 Tyan Corp |
| 6 | * yhlu yhlu@tyan.com add exclude start and end option |
| 7 | * Copyright 2005 coresystems GmbH <stepan@openbios.org> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | #include "flash.h" |
| 26 | #include "jedec.h" |
| 27 | #include "m29f400bt.h" |
| 28 | #include "82802ab.h" |
| 29 | #ifndef DISABLE_DOC |
| 30 | #include "msys_doc.h" |
| 31 | #endif |
| 32 | #include "am29f040b.h" |
| 33 | #include "sst28sf040.h" |
| 34 | #include "w49f002u.h" |
| 35 | #include "sst39sf020.h" |
| 36 | #include "sst49lf040.h" |
| 37 | #include "pm49fl004.h" |
| 38 | #include "mx29f002.h" |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 39 | #include "sharplhf00l04.h" |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 40 | #include "sst_fwhub.h" |
| 41 | |
| 42 | struct flashchip flashchips[] = { |
| 43 | {"Am29F040B", AMD_ID, AM_29F040B, NULL, 512, 64 * 1024, |
| 44 | probe_29f040b, erase_29f040b, write_29f040b, NULL}, |
| 45 | {"At29C040A", ATMEL_ID, AT_29C040A, NULL, 512, 256, |
| 46 | probe_jedec, erase_chip_jedec, write_jedec, NULL}, |
| 47 | {"Mx29f002", MX_ID, MX_29F002, NULL, 256, 64 * 1024, |
| 48 | probe_29f002, erase_29f002, write_29f002, NULL}, |
| 49 | {"SST29EE020A", SST_ID, SST_29EE020A, NULL, 256, 128, |
| 50 | probe_jedec, erase_chip_jedec, write_jedec, NULL}, |
| 51 | {"SST28SF040A", SST_ID, SST_28SF040, NULL, 512, 256, |
| 52 | probe_28sf040, erase_28sf040, write_28sf040, NULL}, |
| 53 | {"SST39SF020A", SST_ID, SST_39SF020, NULL, 256, 4096, |
| 54 | probe_jedec, erase_chip_jedec, write_39sf020,NULL}, |
| 55 | {"SST39VF020", SST_ID, SST_39VF020, NULL, 256, 4096, |
| 56 | probe_jedec, erase_chip_jedec, write_39sf020,NULL}, |
| 57 | {"SST49LF040", SST_ID, SST_49LF040, NULL, 512, 4096, |
| 58 | probe_jedec, erase_49lf040, write_49lf040,NULL}, |
| 59 | {"SST49LF080A", SST_ID, SST_49LF080A, NULL, 1024, 4096, |
| 60 | probe_jedec, erase_chip_jedec, write_49lf040,NULL}, |
| 61 | {"SST49LF002A/B", SST_ID, SST_49LF002A, NULL, 256, 16 * 1024, |
| 62 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub, NULL}, |
| 63 | {"SST49LF003A/B", SST_ID, SST_49LF003A, NULL, 384, 64 * 1024, |
| 64 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub,NULL}, |
| 65 | {"SST49LF004A/B", SST_ID, SST_49LF004A, NULL, 512, 64 * 1024, |
| 66 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub,NULL}, |
| 67 | {"SST49LF008A", SST_ID, SST_49LF008A, NULL, 1024, 64 * 1024 , |
| 68 | probe_sst_fwhub, erase_sst_fwhub, write_sst_fwhub, NULL}, |
| 69 | {"Pm49FL004", PMC_ID, PMC_49FL004, NULL, 512, 64 * 1024, |
| 70 | probe_jedec, erase_chip_jedec, write_49fl004,NULL}, |
| 71 | {"W29C011", WINBOND_ID, W_29C011, NULL, 128, 128, |
| 72 | probe_jedec, erase_chip_jedec, write_jedec, NULL}, |
| 73 | {"W29C020C", WINBOND_ID, W_29C020C, NULL, 256, 128, |
| 74 | probe_jedec, erase_chip_jedec, write_jedec, NULL}, |
| 75 | {"W49F002U", WINBOND_ID, W_49F002U, NULL, 256, 128, |
| 76 | probe_jedec, erase_chip_jedec, write_49f002, NULL}, |
Stefan Reinauer | 9d3d93e | 2006-02-24 13:47:26 +0000 | [diff] [blame^] | 77 | {"M29F040B", ST_ID, ST_M29F040B, NULL, 512, 64 * 1024, |
| 78 | probe_29f040b, erase_29f040b, write_29f040b, NULL}, |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 79 | {"M29F400BT", ST_ID, ST_M29F400BT, NULL, 512, 64 * 1024, |
| 80 | probe_m29f400bt, erase_m29f400bt, write_linuxbios_m29f400bt, NULL}, |
| 81 | {"82802ab", 137, 173, NULL, 512, 64 * 1024, |
| 82 | probe_82802ab, erase_82802ab, write_82802ab, NULL}, |
| 83 | {"82802ac", 137, 172, NULL, 1024, 64 * 1024, |
| 84 | probe_82802ab, erase_82802ab, write_82802ab, NULL}, |
| 85 | #ifndef DISABLE_DOC |
| 86 | {"MD-2802 (M-Systems DiskOnChip Millennium Module)", |
| 87 | MSYSTEMS_ID, MSYSTEMS_MD2802, |
| 88 | NULL, 8, 8 * 1024, |
| 89 | probe_md2802, erase_md2802, write_md2802, read_md2802}, |
| 90 | #endif |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 91 | {"LHF00L04", SHARP_ID, SHARP_LHF00L04, NULL, 1024, 64 * 1024, |
| 92 | probe_lhf00l04, erase_lhf00l04, write_lhf00l04, NULL}, |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 93 | {NULL,} |
| 94 | }; |
| 95 | |
| 96 | |