Electronic – Why DRAM costs much more than flash memory

costflashsdram

Comparing prices at a local store, I calculated prices 0.36 USD/GB for SSD NAND flash memory and 5.41 USD/GB for DRAM memory. The difference is 15 times. Why so big difference?

Both are semiconductor devices. Memory cells of both types occupy approximately the same die area: 4 F^2 for NAND flash memory, 6 F^2 for DRAM. (I can't give a good source; this information is scattered over the internet.) MLC of flash memory gives 2 times improvement. (BTW, is the same technology possible for DRAM?) I can't blame market forces because both markets seem similar to me in terms of competition, maturity, and size. For example, DRAM revenue 35.74e9 USD, SSD revenue 10.9e9 USD in 2013.

Best Answer

The key element in the difference is redundancy. A DRAM has to be perfect (that is, it has no redundancy). This is because, in order to get the speeds required of DRAM, there is no buffer level between the address inputs and the memory cells except for address decoding.

Flash, on the other hand, is not expected to run nearly as fast as DRAM, and this allows the insertion of various logic into the address logic. Specifically, data is organized into blocks (equivalent to pages), and there are a fair number of spare blocks included on the chip. When an access is attempted the address essentially goes into a lookup table which redirects access from a known bad block to a good (spare) one.

The result is that manufacturing can be much cheaper for flash than DRAM, since it is much harder to produce a bad (unusable) chip for flash.