Changeset 3431
- Timestamp:
- 07/21/08 19:48:40 (3 months ago)
- Location:
- trunk/util/flashrom
- Files:
-
- 1 added
- 4 modified
-
Makefile (modified) (1 diff)
-
board_enable.c (modified) (3 diffs)
-
flash.h (modified) (1 diff)
-
flashchips.c (modified) (1 diff)
-
w39v040c.c (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/util/flashrom/Makefile
r3404 r3431 30 30 sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o \ 31 31 flashrom.o w39v080fa.o sharplhf00l04.o w29ee011.o spi.o it87spi.o \ 32 ichspi.o 32 ichspi.o w39v040c.o 33 33 34 34 all: pciutils dep $(PROGRAM) -
trunk/util/flashrom/board_enable.c
r3413 r3431 115 115 * 116 116 * Suited for: 117 * - MSI K8T Neo2-F 117 118 * - MSI K8N-NEO3 118 119 */ … … 140 141 141 142 return 0; 143 } 144 145 static int w83627thf_gpio4_4_raise_2e(const char *name) 146 { 147 return w83627thf_gpio4_4_raise(0x2e, name); 142 148 } 143 149 … … 618 624 {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, 619 625 NULL, NULL, "GIGABYTE GA-7VT600", board_biostar_p4m80_m4}, 626 {0x1106, 0x3149, 0x1462, 0x7094, 0x10ec, 0x8167, 0x1462, 0x094c, 627 NULL, NULL, "MSI K8T Neo2", w83627thf_gpio4_4_raise_2e}, 620 628 {0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL} /* Keep this */ 621 629 }; -
trunk/util/flashrom/flash.h
r3418 r3431 518 518 int write_sst_fwhub(struct flashchip *flash, uint8_t *buf); 519 519 520 /* w39v040c.c */ 521 int probe_w39v040c(struct flashchip *flash); 522 int erase_w39v040c(struct flashchip *flash); 523 int write_w39v040c(struct flashchip *flash, uint8_t *buf); 524 520 525 /* w39V080fa.c */ 521 526 int probe_winbond_fwhub(struct flashchip *flash); -
trunk/util/flashrom/flashchips.c
r3416 r3431 133 133 {"Winbond", "W39V040A", WINBOND_ID, W_39V040A, 512, 64*1024, TEST_UNTESTED, probe_jedec, erase_chip_jedec, write_39sf020}, 134 134 {"Winbond", "W39V040B", WINBOND_ID, W_39V040B, 512, 64*1024, TEST_OK_PREW, probe_jedec, erase_chip_jedec, write_39sf020}, 135 {"Winbond", "W39V040C", 0xda, 0x50, 512, 64*1024, TEST_OK_PREW, probe_w39v040c, erase_w39v040c, write_w39v040c}, 135 136 {"Winbond", "W39V040FA", WINBOND_ID, W_39V040FA, 512, 64*1024, TEST_OK_PR, probe_jedec, erase_chip_jedec, write_39sf020}, 136 137 {"Winbond", "W39V080A", WINBOND_ID, W_39V080A, 1024, 64*1024, TEST_OK_PREW, probe_jedec, erase_chip_jedec, write_39sf020},
