Changeset 1493 for trunk/flashchips.c
- Timestamp:
- Feb 16, 2012 12:40:23 AM (15 months ago)
- File:
-
- 1 edited
-
trunk/flashchips.c (modified) (20 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/flashchips.c
r1471 r1493 1121 1121 .total_size = 4096, 1122 1122 .page_size = 256, 1123 .feature_bits = FEATURE_WRSR_WREN, 1123 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */ 1124 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1124 1125 .tested = TEST_UNTESTED, 1125 1126 .probe = probe_spi_rdid, … … 1159 1160 .total_size = 4096, 1160 1161 .page_size = 256, 1161 .feature_bits = FEATURE_WRSR_WREN, 1162 /* OTP: 64B total; read 0x4B, 0x48; write 0x42 */ 1163 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1162 1164 .tested = TEST_UNTESTED, 1163 1165 .probe = probe_spi_rdid, … … 1316 1318 .total_size = 256, 1317 1319 .page_size = 256, 1318 .feature_bits = FEATURE_WRSR_WREN, 1320 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */ 1321 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1319 1322 .tested = TEST_UNTESTED, 1320 1323 .probe = probe_spi_rdid, … … 1544 1547 .total_size = 4096, 1545 1548 .page_size = 256, 1546 .feature_bits = FEATURE_WRSR_WREN, 1549 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */ 1550 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1547 1551 .tested = TEST_OK_PROBE, 1548 1552 .probe = probe_spi_rdid, … … 1620 1624 .total_size = 2048, 1621 1625 .page_size = 256, 1622 .feature_bits = FEATURE_WRSR_WREN, 1626 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */ 1627 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1623 1628 .tested = TEST_UNTESTED, 1624 1629 .probe = probe_spi_rdid, … … 1658 1663 .total_size = 64, 1659 1664 .page_size = 256, 1660 .feature_bits = FEATURE_WRSR_WREN, 1665 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */ 1666 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 1661 1667 .tested = TEST_UNTESTED, 1662 1668 .probe = probe_spi_rdid, … … 2169 2175 .total_size = 4096 /* Size can only be determined from status register */, 2170 2176 .page_size = 512 /* Size can only be determined from status register */, 2177 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */ 2178 .feature_bits = FEATURE_OTP, 2171 2179 .tested = TEST_BAD_READ, 2172 2180 .probe = probe_spi_rdid, … … 3237 3245 .total_size = 512, 3238 3246 .page_size = 256, 3239 /* TODO: chip features 256-byte one-time programmable region*/3240 .feature_bits = FEATURE_WRSR_WREN ,3247 /* OTP: 256B total; enter 0x3A */ 3248 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3241 3249 .tested = TEST_UNTESTED, 3242 3250 .probe = probe_spi_rdid, … … 3272 3280 .total_size = 1024, 3273 3281 .page_size = 256, 3274 /* TODO: chip features 256-byte one-time programmable region*/3275 .feature_bits = FEATURE_WRSR_WREN ,3282 /* OTP: 256B total; enter 0x3A */ 3283 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3276 3284 .tested = TEST_UNTESTED, 3277 3285 .probe = probe_spi_rdid, … … 3309 3317 .total_size = 2048, 3310 3318 .page_size = 256, 3311 /* TODO: EN25D16 features 512-byte one-time programmable region, 3312 * EN25Q16 features a 128-byte one-time programmable region */ 3313 .feature_bits = FEATURE_WRSR_WREN, 3319 /* OTP: D16 512B/Q16 128B total; enter 0x3A */ 3320 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3314 3321 .tested = TEST_UNTESTED, 3315 3322 .probe = probe_spi_rdid, … … 3349 3356 .total_size = 4096, 3350 3357 .page_size = 256, 3351 /* TODO: chip features 512-byte one-time programmable region*/3352 .feature_bits = FEATURE_WRSR_WREN ,3358 /* OTP: 512B total; enter 0x3A */ 3359 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3353 3360 .tested = TEST_UNTESTED, 3354 3361 .probe = probe_spi_rdid, … … 3384 3391 .total_size = 8192, 3385 3392 .page_size = 256, 3386 /* TODO: chip features 512-byte one-time programmable region*/3387 .feature_bits = FEATURE_WRSR_WREN ,3393 /* OTP: 512B total; enter 0x3A */ 3394 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3388 3395 .tested = TEST_UNTESTED, 3389 3396 .probe = probe_spi_rdid, … … 3419 3426 .total_size = 16384, 3420 3427 .page_size = 256, 3421 /* TODO: chip features 512-byte one-time programmable region*/3422 .feature_bits = FEATURE_WRSR_WREN ,3428 /* OTP: 512B total; enter 0x3A */ 3429 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3423 3430 .tested = TEST_UNTESTED, 3424 3431 .probe = probe_spi_rdid, … … 3453 3460 .total_size = 2048, 3454 3461 .page_size = 256, 3455 /* TODO: chip features 512-byte one-time programmable region 3456 * and supports SFDP. 3457 */ 3458 .feature_bits = FEATURE_WRSR_WREN, 3462 /* supports SFDP */ 3463 /* OTP: 512B total; enter 0x3A */ 3464 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 3459 3465 .tested = TEST_UNTESTED, 3460 3466 .probe = probe_spi_rdid, … … 7093 7099 .total_size = 2048, 7094 7100 .page_size = 256, 7101 /* OTP: 64B total; read 0x4B; write 0x42 */ 7102 .feature_bits = FEATURE_OTP, 7095 7103 .tested = TEST_OK_PREW, 7096 7104 .probe = probe_spi_rdid, … … 7961 7969 .total_size = 1024, 7962 7970 .page_size = 256, 7963 .feature_bits = FEATURE_WRSR_WREN, 7971 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */ 7972 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 7964 7973 .tested = TEST_OK_PREW, 7965 7974 .probe = probe_spi_rdid, … … 7998 8007 .total_size = 2048, 7999 8008 .page_size = 256, 8000 .feature_bits = FEATURE_WRSR_WREN, 8009 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */ 8010 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 8001 8011 .tested = TEST_OK_PREW, 8002 8012 .probe = probe_spi_rdid, … … 8035 8045 .total_size = 4096, 8036 8046 .page_size = 256, 8037 .feature_bits = FEATURE_WRSR_WREN, 8047 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */ 8048 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 8038 8049 .tested = TEST_OK_PREW, 8039 8050 .probe = probe_spi_rdid, … … 8072 8083 .total_size = 8192, 8073 8084 .page_size = 256, 8074 .feature_bits = FEATURE_WRSR_WREN, 8085 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */ 8086 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 8075 8087 .tested = TEST_OK_PREW, 8076 8088 .probe = probe_spi_rdid, … … 8108 8120 .total_size = 16384, 8109 8121 .page_size = 256, 8110 .feature_bits = FEATURE_WRSR_WREN, 8122 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */ 8123 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP, 8111 8124 .tested = TEST_OK_PROBE, 8112 8125 .probe = probe_spi_rdid,
Note: See TracChangeset
for help on using the changeset viewer.
