fbpx
Wikipedia

Semiconductor memory

Semiconductor memory is a digital electronic semiconductor device used for digital data storage, such as computer memory. It typically refers to devices in which data is stored within metal–oxide–semiconductor (MOS) memory cells on a silicon integrated circuit memory chip.[1][2][3] There are numerous different types using different semiconductor technologies. The two main types of random-access memory (RAM) are static RAM (SRAM), which uses several transistors per memory cell, and dynamic RAM (DRAM), which uses a transistor and a MOS capacitor per cell. Non-volatile memory (such as EPROM, EEPROM and flash memory) uses floating-gate memory cells, which consist of a single floating-gate transistor per cell.

Most types of semiconductor memory have the property of random access,[4] which means that it takes the same amount of time to access any memory location, so data can be efficiently accessed in any random order.[5] This contrasts with data storage media such as CDs which read and write data consecutively and therefore the data can only be accessed in the same sequence it was written. Semiconductor memory also has much faster access times than other types of data storage; a byte of data can be written to or read from semiconductor memory within a few nanoseconds, while access time for rotating storage such as hard disks is in the range of milliseconds. For these reasons it is used for primary storage, to hold the program and data the computer is currently working on, among other uses.

As of 2017, semiconductor memory chips sell $124 billion annually, accounting for 30% of the semiconductor industry.[6] Shift registers, processor registers, data buffers and other small digital registers that have no memory address decoding mechanism are typically not referred to as memory although they also store digital data.

Description edit

In a semiconductor memory chip, each bit of binary data is stored in a tiny circuit called a memory cell consisting of one to several transistors. The memory cells are laid out in rectangular arrays on the surface of the chip. The 1-bit memory cells are grouped in small units called words which are accessed together as a single memory address. Memory is manufactured in word length that is usually a power of two, typically N=1, 2, 4 or 8 bits.

Data is accessed by means of a binary number called a memory address applied to the chip's address pins, which specifies which word in the chip is to be accessed. If the memory address consists of M bits, the number of addresses on the chip is 2M, each containing an N bit word. Consequently, the amount of data stored in each chip is N2M bits.[5] The memory storage capacity for M number of address lines is given by 2M, which is usually in power of two: 2, 4, 8, 16, 32, 64, 128, 256 and 512 and measured in kilobits, megabits, gigabits or terabits, etc. As of 2014 the largest semiconductor memory chips hold a few gigabits of data, but higher capacity memory is constantly being developed. By combining several integrated circuits, memory can be arranged into a larger word length and/or address space than what is offered by each chip, often but not necessarily a power of two.[5]

The two basic operations performed by a memory chip are "read", in which the data contents of a memory word is read out (nondestructively), and "write" in which data is stored in a memory word, replacing any data that was previously stored there. To increase data rate, in some of the latest types of memory chips such as DDR SDRAM multiple words are accessed with each read or write operation.

In addition to standalone memory chips, blocks of semiconductor memory are integral parts of many computer and data processing integrated circuits. For example, the microprocessor chips that run computers contain cache memory to store instructions awaiting execution.

Types edit

Volatile memory edit

 
RAM chips for computers usually come on removable memory modules like these. Additional memory can be added to the computer by plugging in additional modules.

Volatile memory loses its stored data when the power to the memory chip is turned off. However it can be faster and less expensive than non-volatile memory. This type is used for the main memory in most computers, since data is stored on the hard disk while the computer is off. Major types are:[7][8]

RAM (Random-access memory) – This has become a generic term for any semiconductor memory that can be written to, as well as read from, in contrast to ROM (below), which can only be read. All semiconductor memory, not just RAM, has the property of random access.

  • DRAM (Dynamic random-access memory) – This uses memory cells consisting of one MOSFET (MOS field-effect transistor) and one MOS capacitor to store each bit. This type of RAM is the cheapest and highest in density, so it is used for the main memory in computers. However, the electric charge that stores the data in the memory cells slowly leaks out, so the memory cells must be periodically refreshed (rewritten) which requires additional circuitry. The refresh process is handled internally by the computer and is transparent to its user.
    • FPM DRAM (Fast page mode DRAM) – An older type of asynchronous DRAM that improved on previous types by allowing repeated accesses to a single "page" of memory to occur at a faster rate. Used in the mid-1990s.
    • EDO DRAM (Extended data out DRAM) – An older type of asynchronous DRAM which had faster access time than earlier types by being able to initiate a new memory access while data from the previous access was still being transferred. Used in the later part of the 1990s.
    • VRAM (Video random access memory) – An older type of dual-ported memory once used for the frame buffers of video adapters (video cards).
    • SDRAM (Synchronous dynamic random-access memory) – This added circuitry to the DRAM chip which synchronizes all operations with a clock signal added to the computer's memory bus. This allowed the chip to process multiple memory requests simultaneously using pipelining, to increase the speed. The data on the chip is also divided into banks which can each work on a memory operation simultaneously. This became the dominant type of computer memory by about the year 2000.
      • DDR SDRAM (Double data rate SDRAM) – This could transfer twice the data (two consecutive words) on each clock cycle by double pumping (transferring data on both the rising and falling edges of the clock pulse). Extensions of this idea are the current (2012) technique being used to increase memory access rate and throughput. Since it is proving difficult to further increase the internal clock speed of memory chips, these chips increase the transfer rate by transferring more data words on each clock cycle
        • DDR2 SDRAM – Transfers 4 consecutive words per internal clock cycle
        • DDR3 SDRAM – Transfers 8 consecutive words per internal clock cycle.
        • DDR4 SDRAM – Transfers 16 consecutive words per internal clock cycle.
      • RDRAM (Rambus DRAM) – An alternate double data rate memory standard that was used on some Intel systems but ultimately lost out to DDR SDRAM.
      • SGRAM (Synchronous graphics RAM) – A specialized type of SDRAM made for graphics adaptors (video cards). It can perform graphics-related operations such as bit masking and block write, and can open two pages of memory at once.
      • HBM (High Bandwidth Memory) – A development of SDRAM used in graphics cards that can transfer data at a faster rate. It consists of multiple memory chips stacked on top of one another, with a wider data bus.
    • PSRAM (Pseudostatic RAM) – This is DRAM which has circuitry to perform memory refresh on the chip, so that it acts like SRAM, allowing the external memory controller to be shut down to save energy. It is used in a few game consoles such as the Wii.
  • SRAM (Static random-access memory) – This stores each bit of data in a circuit called a flip-flop, made of 4 to 6 transistors. SRAM is less dense and more expensive per bit than DRAM, but faster and does not require memory refresh. It is used for smaller cache memories in computers.
  • CAM (Content-addressable memory) – This is a specialized type in which, instead of accessing data using an address, a data word is applied and the memory returns the location if the word is stored in the memory. It is mostly incorporated in other chips such as microprocessors where it is used for cache memory.

Non-volatile memory edit

Non-volatile memory (NVM) preserves the data stored in it during periods when the power to the chip is turned off. Therefore, it is used for the memory in portable devices, which don't have disks, and for removable memory cards among other uses. Major types are:[7][8]

  • ROM (Read-only memory) – This is designed to hold permanent data, and in normal operation is only read from, not written to. Although many types can be written to, the writing process is slow and usually all the data in the chip must be rewritten at once. It is usually used to store system software which must be immediately accessible to the computer, such as the BIOS program which starts the computer, and the software (microcode) for portable devices and embedded computers such as microcontrollers.
    • MROM (Mask programmed ROM or Mask ROM) – In this type the data is programmed into the chip when the chip is manufactured, so it is only used for large production runs. It cannot be rewritten with new data.
    • PROM (Programmable read-only memory) – In this type the data is written into an existing PROM chip before it is installed in the circuit, but it can only be written once. The data is written by plugging the chip into a device called a PROM programmer.
    • EPROM (Erasable programmable read-only memory or UVEPROM) – In this type the data in it can be rewritten by removing the chip from the circuit board, exposing it to an ultraviolet light to erase the existing data, and plugging it into a PROM programmer. The IC package has a small transparent "window" in the top to admit the UV light. It is often used for prototypes and small production run devices, where the program in it may have to be changed at the factory.
       
      4M EPROM, showing transparent window used to erase the chip
    • EEPROM (Electrically erasable programmable read-only memory) – In this type the data can be rewritten electrically, while the chip is on the circuit board, but the writing process is slow. This type is used to hold firmware, the low level microcode which runs hardware devices, such as the BIOS program in most computers, so that it can be updated.
  • NVRAM (Non-volatile random-access memory)
  • Flash memory – In this type the writing process is intermediate in speed between EEPROMS and RAM memory; it can be written to, but not fast enough to serve as main memory. It is often used as a semiconductor version of a hard disk, to store files. It is used in portable devices such as PDAs, USB flash drives, and removable memory cards used in digital cameras and cellphones.

History edit

Early computer memory consisted of magnetic-core memory, as early solid-state electronic semiconductors, including transistors such as the bipolar junction transistor (BJT), were impractical for use as digital storage elements (memory cells). The earliest semiconductor memory dates back to the early 1960s, with bipolar memory, which used bipolar transistors.[9] Bipolar semiconductor memory made from discrete devices was first shipped by Texas Instruments to the United States Air Force in 1961. The same year, the concept of solid-state memory on an integrated circuit (IC) chip was proposed by applications engineer Bob Norman at Fairchild Semiconductor.[10] The first single-chip memory IC was the BJT 16-bit IBM SP95 fabricated in December 1965, engineered by Paul Castrucci.[9][10] While bipolar memory offered improved performance over magnetic-core memory, it could not compete with the lower price of magnetic-core memory, which remained dominant up until the late 1960s.[9] Bipolar memory failed to replace magnetic-core memory because bipolar flip-flop circuits were too large and expensive.[11]

MOS memory edit

The advent of the metal–oxide–semiconductor field-effect transistor (MOSFET),[12] invented by Mohamed M. Atalla and Dawon Kahng at Bell Labs in 1959,[13] enabled the practical use of metal–oxide–semiconductor (MOS) transistors as memory cell storage elements, a function previously served by magnetic cores in computer memory.[12] MOS memory was developed by John Schmidt at Fairchild Semiconductor in 1964.[14][15] In addition to higher performance, MOS memory was cheaper and consumed less power than magnetic-core memory.[14] This led to MOSFETs eventually replacing magnetic cores as the standard storage elements in computer memory.[12]

In 1965, J. Wood and R. Ball of the Royal Radar Establishment proposed digital storage systems that use CMOS (complementary MOS) memory cells, in addition to MOSFET power devices for the power supply, switched cross-coupling, switches and delay-line storage.[16] The development of silicon-gate MOS integrated circuit (MOS IC) technology by Federico Faggin at Fairchild in 1968 enabled the production of MOS memory chips.[17] NMOS memory was commercialized by IBM in the early 1970s.[18] MOS memory overtook magnetic core memory as the dominant memory technology in the early 1970s.[14]

The term "memory" when used with reference to computers most often refers to volatile random-access memory (RAM). The two main types of volatile RAM are static random-access memory (SRAM) and dynamic random-access memory (DRAM). Bipolar SRAM was invented by Robert Norman at Fairchild Semiconductor in 1963,[9] followed by the development of MOS SRAM by John Schmidt at Fairchild in 1964.[14] SRAM became an alternative to magnetic-core memory, but required six MOS transistors for each bit of data.[19] Commercial use of SRAM began in 1965, when IBM introduced their SP95 SRAM chip for the System/360 Model 95.[9]

Toshiba introduced bipolar DRAM memory cells for its Toscal BC-1411 electronic calculator in 1965.[20][21] While it offered improved performance over magnetic-core memory, bipolar DRAM could not compete with the lower price of the then dominant magnetic-core memory.[22] MOS technology is the basis for modern DRAM. In 1966, Dr. Robert H. Dennard at the IBM Thomas J. Watson Research Center was working on MOS memory. While examining the characteristics of MOS technology, he found it was capable of building capacitors, and that storing a charge or no charge on the MOS capacitor could represent the 1 and 0 of a bit, while the MOS transistor could control writing the charge to the capacitor. This led to his development of a single-transistor DRAM memory cell.[19] In 1967, Dennard filed a patent under IBM for a single-transistor DRAM memory cell, based on MOS technology.[23] This led to the first commercial DRAM IC chip, the Intel 1103, in October 1970.[24][25][26] Synchronous dynamic random-access memory (SDRAM) later debuted with the Samsung KM48SL2000 chip in 1992.[27][28]

The term "memory" is also often used to refer to non-volatile memory, specifically flash memory. It has origins in read-only memory (ROM). Programmable read-only memory (PROM) was invented by Wen Tsing Chow in 1956, while working for the Arma Division of the American Bosch Arma Corporation.[29][30] In 1967, Dawon Kahng and Simon Sze of Bell Labs proposed that the floating gate of a MOS semiconductor device could be used for the cell of a reprogrammable read-only memory (ROM), which led to Dov Frohman of Intel inventing EPROM (erasable PROM) in 1971.[31] EEPROM (electrically erasable PROM) was developed by Yasuo Tarui, Yutaka Hayashi and Kiyoko Naga at Japan's Ministry of International Trade and Industry (MITI) Electrotechnical Laboratory in 1972.[32] Flash memory was invented by Fujio Masuoka at Toshiba in the early 1980s.[33][34] Masuoka and colleagues presented the invention of NOR flash in 1984,[35] and then NAND flash in 1987.[36] Toshiba commercialized NAND flash memory in 1987.[37][38]

Applications edit

MOS memory applications
MOS memory type Abbr. MOS memory cell Applications
Static random-access memory SRAM MOSFETs Cache memory, cell phones, eSRAM, mainframes, multimedia computers, networking, personal computers, servers, supercomputers, telecommunications, workstations,[39] DVD disk buffer,[40] data buffer,[41] nonvolatile BIOS memory
Dynamic random-access memory DRAM MOSFET, MOS capacitor Camcorders, embedded logic, eDRAM, graphics card, hard disk drive (HDD), networks, personal computers, personal digital assistants, printers,[39] main computer memory, desktop computers, servers, solid-state drives, video memory,[40] framebuffer memory[42][43]
Ferroelectric random-access memory FRAM MOSFET, Ferroelectric capacitor Non-volatile memory, radio-frequency identification (RF identification), smart cards[39][40]
Read-only memory ROM MOSFET Character generators, electronic musical instruments, laser printer fonts, video game ROM cartridges, word processor dictionary data[39][40]
Erasable programmable read-only memory EPROM Floating-gate MOSFET CD-ROM drives, embedded memory, code storage, modems[39][40]
Electrically erasable programmable read-only memory EEPROM Floating-gate MOSFET Anti-lock braking systems, air bags, car radios, cell phones, consumer electronics, cordless telephones, disk drives, embedded memory, flight controllers, military technology, modems, pagers, printers, set-top box, smart cards[39][40]
Flash memory Flash Floating-gate MOSFET ATA controllers, battery-powered applications, telecommunications, code storage, digital cameras, MP3 players, portable media players, BIOS memory,[39] USB flash drive,[44] digital TV, e-books, memory cards, mobile devices, set-top box, smartphones, solid-state drives, tablet computers[40]
Non-volatile random-access memory NVRAM Floating-gate MOSFETs Medical equipment, spacecraft[39][40]

See also edit

References edit

  1. ^ "The MOS Memory Market" (PDF). Integrated Circuit Engineering Corporation. Smithsonian Institution. 1997. Retrieved 16 October 2019.
  2. ^ "MOS Memory Market Trends" (PDF). Integrated Circuit Engineering Corporation. Smithsonian Institution. 1998. Retrieved 16 October 2019.
  3. ^ Veendrick, Harry J. M. (2017). Nanometer CMOS ICs: From Basics to ASICs. Springer. pp. 314–5. ISBN 9783319475974.
  4. ^ Lin, Wen C. (1990). CRC Handbook of Digital System Design, Second Edition. CRC Press. p. 225. ISBN 0849342724. from the original on 27 October 2016. Retrieved 4 January 2016.
  5. ^ a b c Dawoud, Dawoud Shenouda; R. Peplow (2010). Digital System Design - Use of Microcontroller. River Publishers. pp. 255–258. ISBN 978-8792329400. from the original on 2014-07-06.
  6. ^ "Annual Semiconductor Sales Increase 21.6 Percent, Top $400 Billion for First Time". Semiconductor Industry Association. 5 February 2018. Retrieved 29 July 2019.
  7. ^ a b Godse, A.P.; D.A.Godse (2008). Fundamentals of Computing and Programing. India: Technical Publications. p. 1.35. ISBN 978-8184315097. from the original on 2014-07-06.
  8. ^ a b Arora, Ashok (2006). Foundations of Computer Science. Laxmi Publications. pp. 39–41. ISBN 8170089719. from the original on 2014-07-06.
  9. ^ a b c d e "1966: Semiconductor RAMs Serve High-speed Storage Needs". Computer History Museum. Retrieved 19 June 2019.
  10. ^ a b "Semiconductor Memory Timeline Notes" (PDF). Computer History Museum. November 8, 2006. Retrieved 2 August 2019.
  11. ^ Orton, John W. (2009). Semiconductors and the Information Revolution: Magic Crystals that made IT Happen. Academic Press. p. 104. ISBN 978-0-08-096390-7.
  12. ^ a b c "Transistors – an overview". ScienceDirect. Retrieved 8 August 2019.
  13. ^ "1960 – Metal Oxide Semiconductor (MOS) Transistor Demonstrated". The Silicon Engine. Computer History Museum.
  14. ^ a b c d "1970: MOS Dynamic RAM Competes with Magnetic Core Memory on Price". Computer History Museum. Retrieved 29 July 2019.
  15. ^ Solid State Design. Vol. 6. Horizon House. 1965.
  16. ^ Wood, J.; Ball, R. (February 1965). The use of insulated-gate field-effect transistors in digital storage systems. 1965 IEEE International Solid-State Circuits Conference. Digest of Technical Papers. Vol. VIII. pp. 82–83. doi:10.1109/ISSCC.1965.1157606.
  17. ^ "1968: Silicon Gate Technology Developed for ICs". Computer History Museum. Retrieved 10 August 2019.
  18. ^ Critchlow, D. L. (2007). "Recollections on MOSFET Scaling". IEEE Solid-State Circuits Society Newsletter. 12 (1): 19–22. doi:10.1109/N-SSC.2007.4785536.
  19. ^ a b "DRAM". IBM100. IBM. 9 August 2017. Retrieved 20 September 2019.
  20. ^ "Spec Sheet for Toshiba "TOSCAL" BC-1411". Old Calculator Web Museum. from the original on 3 July 2017. Retrieved 8 May 2018.
  21. ^ Toshiba "Toscal" BC-1411 Desktop Calculator 2007-05-20 at the Wayback Machine
  22. ^ "1966: Semiconductor RAMs Serve High-speed Storage Needs". Computer History Museum.
  23. ^ "Robert Dennard". Encyclopedia Britannica. Retrieved 8 July 2019.
  24. ^ (PDF). Intel. 2003. Archived from the original (PDF) on 4 November 2021. Retrieved 26 June 2019.
  25. ^ The DRAM memory of Robert Dennard. history-computer.com.
  26. ^ Lojek, Bo (2007). History of Semiconductor Engineering. Springer Science & Business Media. pp. 362–363. ISBN 9783540342588. The i1103 was manufactured on a 6-mask silicon-gate P-MOS process with 8 μm minimum features. The resulting product had a 2,400 µm, 2 memory cell size, a die size just under 10 mm2, and sold for around $21.
  27. ^ "KM48SL2000-7 Datasheet". Samsung. August 1992. Retrieved 19 June 2019.
  28. ^ "Electronic Design". Electronic Design. Hayden Publishing Company. 41 (15–21). 1993. The first commercial synchronous DRAM, the Samsung 16-Mbit KM48SL2000, employs a single-bank architecture that lets system designers easily transition from asynchronous to synchronous systems.
  29. ^ Han-Way Huang (5 December 2008). Embedded System Design with C805. Cengage Learning. p. 22. ISBN 978-1-111-81079-5. from the original on 27 April 2018.
  30. ^ Marie-Aude Aufaure; Esteban Zimányi (17 January 2013). Business Intelligence: Second European Summer School, eBISS 2012, Brussels, Belgium, July 15–21, 2012, Tutorial Lectures. Springer. p. 136. ISBN 978-3-642-36318-4. from the original on 27 April 2018.
  31. ^ "1971: Reusable semiconductor ROM introduced". Computer History Museum. Retrieved 19 June 2019.
  32. ^ Tarui, Y.; Hayashi, Y.; Nagai, K. (1972). "Electrically reprogrammable nonvolatile semiconductor memory". IEEE Journal of Solid-State Circuits. 7 (5): 369–375. Bibcode:1972IJSSC...7..369T. doi:10.1109/JSSC.1972.1052895. ISSN 0018-9200.
  33. ^ Fulford, Benjamin (24 June 2002). "Unsung hero". Forbes. from the original on 3 March 2008. Retrieved 18 March 2008.
  34. ^ US 4531203  Fujio Masuoka.
  35. ^ "Toshiba: Inventor of Flash Memory". Toshiba. Retrieved 20 June 2019.
  36. ^ Masuoka, F.; Momodomi, M.; Iwata, Y.; Shirota, R. (1987). "New ultra high density EPROM and flash EEPROM with NAND structure cell". Electron Devices Meeting, 1987 International. IEDM 1987. IEEE. doi:10.1109/IEDM.1987.191485.
  37. ^ "1987: Toshiba Launches NAND Flash". eWeek. April 11, 2012. Retrieved 20 June 2019.
  38. ^ "1971: Reusable semiconductor ROM introduced". Computer History Museum. Retrieved 19 June 2019.
  39. ^ a b c d e f g h Veendrick, Harry (2000). (PDF) (2nd ed.). Kluwer Academic Publishers. pp. 267–8. ISBN 9044001116. Archived from the original (PDF) on 2020-12-06. Retrieved 2019-11-14.
  40. ^ a b c d e f g h Veendrick, Harry J. M. (2017). Nanometer CMOS ICs: From Basics to ASICs (2nd ed.). Springer. p. 315. ISBN 9783319475974.
  41. ^ Veendrick, Harry J. M. (2017). Nanometer CMOS ICs: From Basics to ASICs (2nd ed.). Springer. p. 264. ISBN 9783319475974.
  42. ^ Richard Shoup (2001). (PDF). Annals of the History of Computing. IEEE. Archived from the original (PDF) on 2004-06-12.
  43. ^ Goldwasser, S.M. (June 1983). Computer Architecture For Interactive Display Of Segmented Imagery. Computer Architectures for Spatially Distributed Data. Springer Science & Business Media. pp. 75–94 (81). ISBN 9783642821509.
  44. ^ Windbacher, Thomas (June 2010). "Flash Memory". TU Wien. Retrieved 20 December 2019.

semiconductor, memory, digital, electronic, semiconductor, device, used, digital, data, storage, such, computer, memory, typically, refers, devices, which, data, stored, within, metal, oxide, semiconductor, memory, cells, silicon, integrated, circuit, memory, . Semiconductor memory is a digital electronic semiconductor device used for digital data storage such as computer memory It typically refers to devices in which data is stored within metal oxide semiconductor MOS memory cells on a silicon integrated circuit memory chip 1 2 3 There are numerous different types using different semiconductor technologies The two main types of random access memory RAM are static RAM SRAM which uses several transistors per memory cell and dynamic RAM DRAM which uses a transistor and a MOS capacitor per cell Non volatile memory such as EPROM EEPROM and flash memory uses floating gate memory cells which consist of a single floating gate transistor per cell Most types of semiconductor memory have the property of random access 4 which means that it takes the same amount of time to access any memory location so data can be efficiently accessed in any random order 5 This contrasts with data storage media such as CDs which read and write data consecutively and therefore the data can only be accessed in the same sequence it was written Semiconductor memory also has much faster access times than other types of data storage a byte of data can be written to or read from semiconductor memory within a few nanoseconds while access time for rotating storage such as hard disks is in the range of milliseconds For these reasons it is used for primary storage to hold the program and data the computer is currently working on among other uses As of 2017 update semiconductor memory chips sell 124 billion annually accounting for 30 of the semiconductor industry 6 Shift registers processor registers data buffers and other small digital registers that have no memory address decoding mechanism are typically not referred to as memory although they also store digital data Contents 1 Description 2 Types 2 1 Volatile memory 2 2 Non volatile memory 3 History 3 1 MOS memory 4 Applications 5 See also 6 ReferencesDescription editSee also Computer memory In a semiconductor memory chip each bit of binary data is stored in a tiny circuit called a memory cell consisting of one to several transistors The memory cells are laid out in rectangular arrays on the surface of the chip The 1 bit memory cells are grouped in small units called words which are accessed together as a single memory address Memory is manufactured in word length that is usually a power of two typically N 1 2 4 or 8 bits Data is accessed by means of a binary number called a memory address applied to the chip s address pins which specifies which word in the chip is to be accessed If the memory address consists of M bits the number of addresses on the chip is 2M each containing an N bit word Consequently the amount of data stored in each chip is N2M bits 5 The memory storage capacity for M number of address lines is given by 2M which is usually in power of two 2 4 8 16 32 64 128 256 and 512 and measured in kilobits megabits gigabits or terabits etc As of 2014 update the largest semiconductor memory chips hold a few gigabits of data but higher capacity memory is constantly being developed By combining several integrated circuits memory can be arranged into a larger word length and or address space than what is offered by each chip often but not necessarily a power of two 5 The two basic operations performed by a memory chip are read in which the data contents of a memory word is read out nondestructively and write in which data is stored in a memory word replacing any data that was previously stored there To increase data rate in some of the latest types of memory chips such as DDR SDRAM multiple words are accessed with each read or write operation In addition to standalone memory chips blocks of semiconductor memory are integral parts of many computer and data processing integrated circuits For example the microprocessor chips that run computers contain cache memory to store instructions awaiting execution Types editVolatile memory edit nbsp RAM chips for computers usually come on removable memory modules like these Additional memory can be added to the computer by plugging in additional modules Volatile memory loses its stored data when the power to the memory chip is turned off However it can be faster and less expensive than non volatile memory This type is used for the main memory in most computers since data is stored on the hard disk while the computer is off Major types are 7 8 RAM Random access memory This has become a generic term for any semiconductor memory that can be written to as well as read from in contrast to ROM below which can only be read All semiconductor memory not just RAM has the property of random access DRAM Dynamic random access memory This uses memory cells consisting of one MOSFET MOS field effect transistor and one MOS capacitor to store each bit This type of RAM is the cheapest and highest in density so it is used for the main memory in computers However the electric charge that stores the data in the memory cells slowly leaks out so the memory cells must be periodically refreshed rewritten which requires additional circuitry The refresh process is handled internally by the computer and is transparent to its user FPM DRAM Fast page mode DRAM An older type of asynchronous DRAM that improved on previous types by allowing repeated accesses to a single page of memory to occur at a faster rate Used in the mid 1990s EDO DRAM Extended data out DRAM An older type of asynchronous DRAM which had faster access time than earlier types by being able to initiate a new memory access while data from the previous access was still being transferred Used in the later part of the 1990s VRAM Video random access memory An older type of dual ported memory once used for the frame buffers of video adapters video cards SDRAM Synchronous dynamic random access memory This added circuitry to the DRAM chip which synchronizes all operations with a clock signal added to the computer s memory bus This allowed the chip to process multiple memory requests simultaneously using pipelining to increase the speed The data on the chip is also divided into banks which can each work on a memory operation simultaneously This became the dominant type of computer memory by about the year 2000 DDR SDRAM Double data rate SDRAM This could transfer twice the data two consecutive words on each clock cycle by double pumping transferring data on both the rising and falling edges of the clock pulse Extensions of this idea are the current 2012 technique being used to increase memory access rate and throughput Since it is proving difficult to further increase the internal clock speed of memory chips these chips increase the transfer rate by transferring more data words on each clock cycle DDR2 SDRAM Transfers 4 consecutive words per internal clock cycle DDR3 SDRAM Transfers 8 consecutive words per internal clock cycle DDR4 SDRAM Transfers 16 consecutive words per internal clock cycle RDRAM Rambus DRAM An alternate double data rate memory standard that was used on some Intel systems but ultimately lost out to DDR SDRAM XDR DRAM Extreme data rate DRAM SGRAM Synchronous graphics RAM A specialized type of SDRAM made for graphics adaptors video cards It can perform graphics related operations such as bit masking and block write and can open two pages of memory at once GDDR SDRAM Graphics DDR SDRAM GDDR2 GDDR3 SDRAM GDDR4 SDRAM GDDR5 SDRAM GDDR6 SDRAM HBM High Bandwidth Memory A development of SDRAM used in graphics cards that can transfer data at a faster rate It consists of multiple memory chips stacked on top of one another with a wider data bus PSRAM Pseudostatic RAM This is DRAM which has circuitry to perform memory refresh on the chip so that it acts like SRAM allowing the external memory controller to be shut down to save energy It is used in a few game consoles such as the Wii SRAM Static random access memory This stores each bit of data in a circuit called a flip flop made of 4 to 6 transistors SRAM is less dense and more expensive per bit than DRAM but faster and does not require memory refresh It is used for smaller cache memories in computers CAM Content addressable memory This is a specialized type in which instead of accessing data using an address a data word is applied and the memory returns the location if the word is stored in the memory It is mostly incorporated in other chips such as microprocessors where it is used for cache memory Non volatile memory edit Non volatile memory NVM preserves the data stored in it during periods when the power to the chip is turned off Therefore it is used for the memory in portable devices which don t have disks and for removable memory cards among other uses Major types are 7 8 ROM Read only memory This is designed to hold permanent data and in normal operation is only read from not written to Although many types can be written to the writing process is slow and usually all the data in the chip must be rewritten at once It is usually used to store system software which must be immediately accessible to the computer such as the BIOS program which starts the computer and the software microcode for portable devices and embedded computers such as microcontrollers MROM Mask programmed ROM or Mask ROM In this type the data is programmed into the chip when the chip is manufactured so it is only used for large production runs It cannot be rewritten with new data PROM Programmable read only memory In this type the data is written into an existing PROM chip before it is installed in the circuit but it can only be written once The data is written by plugging the chip into a device called a PROM programmer EPROM Erasable programmable read only memory or UVEPROM In this type the data in it can be rewritten by removing the chip from the circuit board exposing it to an ultraviolet light to erase the existing data and plugging it into a PROM programmer The IC package has a small transparent window in the top to admit the UV light It is often used for prototypes and small production run devices where the program in it may have to be changed at the factory nbsp 4M EPROM showing transparent window used to erase the chip EEPROM Electrically erasable programmable read only memory In this type the data can be rewritten electrically while the chip is on the circuit board but the writing process is slow This type is used to hold firmware the low level microcode which runs hardware devices such as the BIOS program in most computers so that it can be updated NVRAM Non volatile random access memory FRAM Ferroelectric RAM One type of nonvolatile RAM Flash memory In this type the writing process is intermediate in speed between EEPROMS and RAM memory it can be written to but not fast enough to serve as main memory It is often used as a semiconductor version of a hard disk to store files It is used in portable devices such as PDAs USB flash drives and removable memory cards used in digital cameras and cellphones History editSee also Computer memory and Memory cell computing Early computer memory consisted of magnetic core memory as early solid state electronic semiconductors including transistors such as the bipolar junction transistor BJT were impractical for use as digital storage elements memory cells The earliest semiconductor memory dates back to the early 1960s with bipolar memory which used bipolar transistors 9 Bipolar semiconductor memorymade from discrete devices was first shipped by Texas Instruments to the United States Air Force in 1961 The same year the concept of solid state memory on an integrated circuit IC chip was proposed by applications engineer Bob Norman at Fairchild Semiconductor 10 The first single chip memory IC was the BJT 16 bit IBM SP95 fabricated in December 1965 engineered by Paul Castrucci 9 10 While bipolar memory offered improved performance over magnetic core memory it could not compete with the lower price of magnetic core memory which remained dominant up until the late 1960s 9 Bipolar memory failed to replace magnetic core memory because bipolar flip flop circuits were too large and expensive 11 MOS memory edit See also MOSFET The advent of the metal oxide semiconductor field effect transistor MOSFET 12 invented by Mohamed M Atalla and Dawon Kahng at Bell Labs in 1959 13 enabled the practical use of metal oxide semiconductor MOS transistors as memory cell storage elements a function previously served by magnetic cores in computer memory 12 MOS memory was developed by John Schmidt at Fairchild Semiconductor in 1964 14 15 In addition to higher performance MOS memory was cheaper and consumed less power than magnetic core memory 14 This led to MOSFETs eventually replacing magnetic cores as the standard storage elements in computer memory 12 In 1965 J Wood and R Ball of the Royal Radar Establishment proposed digital storage systems that use CMOS complementary MOS memory cells in addition to MOSFET power devices for the power supply switched cross coupling switches and delay line storage 16 The development of silicon gate MOS integrated circuit MOS IC technology by Federico Faggin at Fairchild in 1968 enabled the production of MOS memory chips 17 NMOS memory was commercialized by IBM in the early 1970s 18 MOS memory overtook magnetic core memory as the dominant memory technology in the early 1970s 14 The term memory when used with reference to computers most often refers to volatile random access memory RAM The two main types of volatile RAM are static random access memory SRAM and dynamic random access memory DRAM Bipolar SRAM was invented by Robert Norman at Fairchild Semiconductor in 1963 9 followed by the development of MOS SRAM by John Schmidt at Fairchild in 1964 14 SRAM became an alternative to magnetic core memory but required six MOS transistors for each bit of data 19 Commercial use of SRAM began in 1965 when IBM introduced their SP95 SRAM chip for the System 360 Model 95 9 Toshiba introduced bipolar DRAM memory cells for its Toscal BC 1411 electronic calculator in 1965 20 21 While it offered improved performance over magnetic core memory bipolar DRAM could not compete with the lower price of the then dominant magnetic core memory 22 MOS technology is the basis for modern DRAM In 1966 Dr Robert H Dennard at the IBM Thomas J Watson Research Center was working on MOS memory While examining the characteristics of MOS technology he found it was capable of building capacitors and that storing a charge or no charge on the MOS capacitor could represent the 1 and 0 of a bit while the MOS transistor could control writing the charge to the capacitor This led to his development of a single transistor DRAM memory cell 19 In 1967 Dennard filed a patent under IBM for a single transistor DRAM memory cell based on MOS technology 23 This led to the first commercial DRAM IC chip the Intel 1103 in October 1970 24 25 26 Synchronous dynamic random access memory SDRAM later debuted with the Samsung KM48SL2000 chip in 1992 27 28 The term memory is also often used to refer to non volatile memory specifically flash memory It has origins in read only memory ROM Programmable read only memory PROM was invented by Wen Tsing Chow in 1956 while working for the Arma Division of the American Bosch Arma Corporation 29 30 In 1967 Dawon Kahng and Simon Sze of Bell Labs proposed that the floating gate of a MOS semiconductor device could be used for the cell of a reprogrammable read only memory ROM which led to Dov Frohman of Intel inventing EPROM erasable PROM in 1971 31 EEPROM electrically erasable PROM was developed by Yasuo Tarui Yutaka Hayashi and Kiyoko Naga at Japan s Ministry of International Trade and Industry MITI Electrotechnical Laboratory in 1972 32 Flash memory was invented by Fujio Masuoka at Toshiba in the early 1980s 33 34 Masuoka and colleagues presented the invention of NOR flash in 1984 35 and then NAND flash in 1987 36 Toshiba commercialized NAND flash memory in 1987 37 38 Applications editSee also List of MOSFET applications MOS memory applications MOS memory type Abbr MOS memory cell ApplicationsStatic random access memory SRAM MOSFETs Cache memory cell phones eSRAM mainframes multimedia computers networking personal computers servers supercomputers telecommunications workstations 39 DVD disk buffer 40 data buffer 41 nonvolatile BIOS memoryDynamic random access memory DRAM MOSFET MOS capacitor Camcorders embedded logic eDRAM graphics card hard disk drive HDD networks personal computers personal digital assistants printers 39 main computer memory desktop computers servers solid state drives video memory 40 framebuffer memory 42 43 Ferroelectric random access memory FRAM MOSFET Ferroelectric capacitor Non volatile memory radio frequency identification RF identification smart cards 39 40 Read only memory ROM MOSFET Character generators electronic musical instruments laser printer fonts video game ROM cartridges word processor dictionary data 39 40 Erasable programmable read only memory EPROM Floating gate MOSFET CD ROM drives embedded memory code storage modems 39 40 Electrically erasable programmable read only memory EEPROM Floating gate MOSFET Anti lock braking systems air bags car radios cell phones consumer electronics cordless telephones disk drives embedded memory flight controllers military technology modems pagers printers set top box smart cards 39 40 Flash memory Flash Floating gate MOSFET ATA controllers battery powered applications telecommunications code storage digital cameras MP3 players portable media players BIOS memory 39 USB flash drive 44 digital TV e books memory cards mobile devices set top box smartphones solid state drives tablet computers 40 Non volatile random access memory NVRAM Floating gate MOSFETs Medical equipment spacecraft 39 40 See also editList of best selling electronic devices Semiconductor industryReferences edit The MOS Memory Market PDF Integrated Circuit Engineering Corporation Smithsonian Institution 1997 Retrieved 16 October 2019 MOS Memory Market Trends PDF Integrated Circuit Engineering Corporation Smithsonian Institution 1998 Retrieved 16 October 2019 Veendrick Harry J M 2017 Nanometer CMOS ICs From Basics to ASICs Springer pp 314 5 ISBN 9783319475974 Lin Wen C 1990 CRC Handbook of Digital System Design Second Edition CRC Press p 225 ISBN 0849342724 Archived from the original on 27 October 2016 Retrieved 4 January 2016 a b c Dawoud Dawoud Shenouda R Peplow 2010 Digital System Design Use of Microcontroller River Publishers pp 255 258 ISBN 978 8792329400 Archived from the original on 2014 07 06 Annual Semiconductor Sales Increase 21 6 Percent Top 400 Billion for First Time Semiconductor Industry Association 5 February 2018 Retrieved 29 July 2019 a b Godse A P D A Godse 2008 Fundamentals of Computing and Programing India Technical Publications p 1 35 ISBN 978 8184315097 Archived from the original on 2014 07 06 a b Arora Ashok 2006 Foundations of Computer Science Laxmi Publications pp 39 41 ISBN 8170089719 Archived from the original on 2014 07 06 a b c d e 1966 Semiconductor RAMs Serve High speed Storage Needs Computer History Museum Retrieved 19 June 2019 a b Semiconductor Memory Timeline Notes PDF Computer History Museum November 8 2006 Retrieved 2 August 2019 Orton John W 2009 Semiconductors and the Information Revolution Magic Crystals that made IT Happen Academic Press p 104 ISBN 978 0 08 096390 7 a b c Transistors an overview ScienceDirect Retrieved 8 August 2019 1960 Metal Oxide Semiconductor MOS Transistor Demonstrated The Silicon Engine Computer History Museum a b c d 1970 MOS Dynamic RAM Competes with Magnetic Core Memory on Price Computer History Museum Retrieved 29 July 2019 Solid State Design Vol 6 Horizon House 1965 Wood J Ball R February 1965 The use of insulated gate field effect transistors in digital storage systems 1965 IEEE International Solid State Circuits Conference Digest of Technical Papers Vol VIII pp 82 83 doi 10 1109 ISSCC 1965 1157606 1968 Silicon Gate Technology Developed for ICs Computer History Museum Retrieved 10 August 2019 Critchlow D L 2007 Recollections on MOSFET Scaling IEEE Solid State Circuits Society Newsletter 12 1 19 22 doi 10 1109 N SSC 2007 4785536 a b DRAM IBM100 IBM 9 August 2017 Retrieved 20 September 2019 Spec Sheet for Toshiba TOSCAL BC 1411 Old Calculator Web Museum Archived from the original on 3 July 2017 Retrieved 8 May 2018 Toshiba Toscal BC 1411 Desktop Calculator Archived 2007 05 20 at the Wayback Machine 1966 Semiconductor RAMs Serve High speed Storage Needs Computer History Museum Robert Dennard Encyclopedia Britannica Retrieved 8 July 2019 Intel 35 Years of Innovation 1968 2003 PDF Intel 2003 Archived from the original PDF on 4 November 2021 Retrieved 26 June 2019 The DRAM memory of Robert Dennard history computer com Lojek Bo 2007 History of Semiconductor Engineering Springer Science amp Business Media pp 362 363 ISBN 9783540342588 The i1103 was manufactured on a 6 mask silicon gate P MOS process with 8 mm minimum features The resulting product had a 2 400 µm 2 memory cell size a die size just under 10 mm2 and sold for around 21 KM48SL2000 7 Datasheet Samsung August 1992 Retrieved 19 June 2019 Electronic Design Electronic Design Hayden Publishing Company 41 15 21 1993 The first commercial synchronous DRAM the Samsung 16 Mbit KM48SL2000 employs a single bank architecture that lets system designers easily transition from asynchronous to synchronous systems Han Way Huang 5 December 2008 Embedded System Design with C805 Cengage Learning p 22 ISBN 978 1 111 81079 5 Archived from the original on 27 April 2018 Marie Aude Aufaure Esteban Zimanyi 17 January 2013 Business Intelligence Second European Summer School eBISS 2012 Brussels Belgium July 15 21 2012 Tutorial Lectures Springer p 136 ISBN 978 3 642 36318 4 Archived from the original on 27 April 2018 1971 Reusable semiconductor ROM introduced Computer History Museum Retrieved 19 June 2019 Tarui Y Hayashi Y Nagai K 1972 Electrically reprogrammable nonvolatile semiconductor memory IEEE Journal of Solid State Circuits 7 5 369 375 Bibcode 1972IJSSC 7 369T doi 10 1109 JSSC 1972 1052895 ISSN 0018 9200 Fulford Benjamin 24 June 2002 Unsung hero Forbes Archived from the original on 3 March 2008 Retrieved 18 March 2008 US 4531203 Fujio Masuoka Toshiba Inventor of Flash Memory Toshiba Retrieved 20 June 2019 Masuoka F Momodomi M Iwata Y Shirota R 1987 New ultra high density EPROM and flash EEPROM with NAND structure cell Electron Devices Meeting 1987 International IEDM 1987 IEEE doi 10 1109 IEDM 1987 191485 1987 Toshiba Launches NAND Flash eWeek April 11 2012 Retrieved 20 June 2019 1971 Reusable semiconductor ROM introduced Computer History Museum Retrieved 19 June 2019 a b c d e f g h Veendrick Harry 2000 Deep Submicron CMOS ICs From Basics to ASICs PDF 2nd ed Kluwer Academic Publishers pp 267 8 ISBN 9044001116 Archived from the original PDF on 2020 12 06 Retrieved 2019 11 14 a b c d e f g h Veendrick Harry J M 2017 Nanometer CMOS ICs From Basics to ASICs 2nd ed Springer p 315 ISBN 9783319475974 Veendrick Harry J M 2017 Nanometer CMOS ICs From Basics to ASICs 2nd ed Springer p 264 ISBN 9783319475974 Richard Shoup 2001 SuperPaint An Early Frame Buffer Graphics System PDF Annals of the History of Computing IEEE Archived from the original PDF on 2004 06 12 Goldwasser S M June 1983 Computer Architecture For Interactive Display Of Segmented Imagery Computer Architectures for Spatially Distributed Data Springer Science amp Business Media pp 75 94 81 ISBN 9783642821509 Windbacher Thomas June 2010 Flash Memory TU Wien Retrieved 20 December 2019 Retrieved from https en wikipedia org w index php title Semiconductor memory amp oldid 1184654162, wikipedia, wiki, book, books, library,

article

, read, download, free, free download, mp3, video, mp4, 3gp, jpg, jpeg, gif, png, picture, music, song, movie, book, game, games.