16:49 < $BUMBLER> So what's a RES1 ID? 16:50 < $DEV> $BUMBLER: see the datasheet of the chip 16:50 < $DEV> $BUMBLER: and "probe_spi_res1" in flashrom 16:51 < $BUMBLER> $DEV: I'm trying to edit flashchips.c like in the wiki, but I find no mention of RES1 in the datasheet. 16:52 < $DEV> $BUMBLER: which chip 16:52 < $BUMBLER> SST25VF016B 16:54 < $DEV> $BUMBLER: can you show us a verbose flashrom log of the thinkpad? 16:54 < $DEV> that way we can be sure that the ID command works 16:55 < $DEV> in general you want to read the Read-ID section of the datasheet 16:56 < $BUMBLER> It's disassembled now, but there's these: samnoble.org/x60/ 16:56 < $DEV> see spi.h for a quick reference which opcode is which command 16:56 < $DEV> *sigh* 16:57 < $DEV> ^ because i have implemented very nice pretty prints of the ICH registers... for all versions > ICH7 :) 16:57 * $BUMBLER wonders if he should feel guilty? 16:57 < $DEV> no 16:57 < $DEV> not at all 16:58 < $DEV> 0x58: 0x05d80302 (OPMENU) 16:58 < $DEV> 0x5c: 0x0001d8ab (OPMENU+4) 16:58 < $BUMBLER> I can't wear out this crowd, cause I'm likely to need lots of handholding when I finally get to the coreboot part of this project :) 16:58 < $DEV> that are the allowed opcodes 16:58 < $DEV> (8 bits each) 16:58 < $DEV> #define JEDEC_RESII0xab 16:59 < $DEV> so the wiki tutorial is correct for that one 16:59 < $DEV> hehe 16:59 < $BUMBLER> cool. 17:00 < $DEV> $BUMBLER: Table 7 is what you need 17:01 < $DEV> manufacturer id is the same as for jedec rdid, so you dont need to change that in .c 17:01 < $DEV> i think you manage the rest :) 17:03 < $BUMBLER> Well I'm taking notes at least.