cancel
Showing results for 
Search instead for 
Did you mean: 

reading silicon die information from OTP

mark9
Associate II
Posted on July 22, 2007 at 09:03

reading silicon die information from OTP

2 REPLIES 2
mark9
Associate II
Posted on May 17, 2011 at 09:45

I'm curious what various revs of silicon there are out there. I have a rev D STR912FW44 datecode 646 chip, and the upper word of the OTP reads: 0x9113.

// 9 = major family (STR9)

// 1 = minor family (STR912)

// 1 = major mask

// 3 = minor mask.

You can use this code to read it out.

uint32_t rev = (FMI_ReadOTPData(FMI_OTP_WORD_7) >> 16);

char buffer[32];

sprintf(buffer,''Die: %04X\n'',rev);

The FA documentation says that this should be 0x9103 [sic] for the rev D FW44 chip, and 0x9120 for the FAW44.

As we've discovered recently, there was a mask change between date code 646 and date code 710.

Can anyone with a 710 chip please read out this data and report it?

-Mark

d_steffen
Associate II
Posted on May 17, 2011 at 09:45

I've a rev D STR912FW44 datecode 713.

The silicon rev. is 0x9113.