Show
Ignore:
Timestamp:
07/21/08 19:48:40 (4 months ago)
Author:
stuge
Message:

flashrom: Winbond W39V040C and MSI K8T Neo2-F

W39V040C does standard JEDEC commands except chip erase so add a small driver.
probe_w39v040c() prints the block lock pin status when a chip is found.

The Neo2 board enable matches on 8237-internal IDE and onboard NIC PCI IDs.

Many thanks to Daniel McLellan? for testing all of this on hardware!
Build tested by Uwe.

Signed-off-by: Peter Stuge <peter@…>
Acked-by: Uwe Hermann <uwe@…>

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/util/flashrom/board_enable.c

    r3413 r3431  
    115115 * 
    116116 * Suited for: 
     117 *  - MSI K8T Neo2-F 
    117118 *  - MSI K8N-NEO3 
    118119 */ 
     
    140141 
    141142        return 0; 
     143} 
     144 
     145static int w83627thf_gpio4_4_raise_2e(const char *name) 
     146{ 
     147        return w83627thf_gpio4_4_raise(0x2e, name); 
    142148} 
    143149 
     
    618624        {0x1106, 0x3227, 0x1458, 0x5001, 0x10ec, 0x8139, 0x1458, 0xe000, 
    619625         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}, 
    620628        {0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL}    /* Keep this */ 
    621629};