emin_int11

theoretical DRAM

Jun 2nd, 2015
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1.  
  2.  
  3. for e.g on DRAM cell
  4. | word line
  5. -|---------|-------------
  6. | |
  7. | |
  8. | |
  9. |________---_______|__Vcc/2
  10. | |
  11. === c1 |
  12. | D (bit line)
  13. ===
  14. -
  15.  
  16.  
  17.  
  18. snippet - the parasitic body capacitor that is an inherent part of silicon on insulator (SOI) - (SOI MOSFET) transistors.
  19. A DRAM cell consists of a capacitor connected by a pass transistor to the bit line (or digit line or column line). The digit line (or column line) is connected to a multitude of cells arranged in a column. Assume that the capacitor's common node is biased approximately at VCC/2
  20. The voltage change is given by (V^signal observed voltage change in the digit line, C^cell the capacitance of the DRAM cell capacitor, and C^line the capacitance of the digit line..
  21.  
  22. cell contains a charge Q = ±VCC/2 • C^cell
  23.  
  24. capacitance of the capacitor C^cell if the cell charge ? Q = +VCC/2 • C^cell(true state = stores a 1)
  25.  
  26. V^signal = V^cell*C^cell *(C^cell+C^line)-1
  27.  
  28. wiki image
  29.  
  30. http://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Original_1T1C_DRAM_design.svg/800px-Original_1T1C_DRAM_design.svg.png
  31.  
  32. DRAM cell poisoning with rowhammer (U,R bit)
  33.  
  34. 4 KiB (212 bytes) page size
  35. page table entry
  36. ------------------------------------------
  37. |G|S|0|A|D|W|U|R|P
  38. ------------------------------------------
  39. U, the 'User\Supervisor' bit, controls access to the page based on privilege level. If the bit is set, then the page may be accessed by all; if the bit is not set, however, only the supervisor can access it. For a page directory entry, the user bit controls access to all the pages referenced by the page directory entry. Therefore if you wish to make a page a user page, you must set the user bit in the relevant page directory entry as well as the page table entry.
  40. R, the 'Read/Write' permissions flag. If the bit is set, the page is read/write. Otherwise when it is not set, the page is read-only. The WP bit in CR0 determines if this is only applied to userland, always giving the kernel write access (the default) or both userland and the kernel.
  41.  
  42. #emingh,#son28gun
Advertisement
Add Comment
Please, Sign In to add comment