Skip to main content
mark9
Associate III
July 22, 2007
Question

reading silicon die information from OTP

  • July 22, 2007
  • 2 replies
  • 562 views
Posted on July 22, 2007 at 09:03

reading silicon die information from OTP

This topic has been closed for replies.

2 replies

mark9
mark9Author
Associate III
May 17, 2011
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
May 17, 2011
Posted on May 17, 2011 at 09:45

I've a rev D STR912FW44 datecode 713.

The silicon rev. is 0x9113.