1 / 146

ASICS

ASICS.

taite
Download Presentation

ASICS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ASICS • An ASIC (application-specific integrated circuit) is a microchip designed for a special application, such as a particular kind of transmission protocol or a hand-held computer. You might contrast it with general integrated circuits, such as the microprocessor and the random access memory chips in your PC. ASICs are used in a wide-range of applications, including auto emission control, environmental monitoring, and personal digital assistants (PDAs). Sunil Kumar Sahu,Lecturer RCET

  2. An application-specific integrated circuit, is an integrated circuit(IC) customized for a particular use, rather than intended for general-purpose use. • An ASIC can be pre-manufactured for a special application or it can be custom manufacture for a particular customer application. • For example, a chip designed to run in a digital voice recorder is an ASIC. • Application-specific standard products (ASSPs) are intermediate between ASICs and industry standard integrated circuits like the 7400 or the 4000 series. Sunil Kumar Sahu,Lecturer RCET

  3. an ASIC has grown from 5,000 gates to over 100 million. Modern ASICs often include entire microprocessors, memory blocks including ROM, RAM, EEPROM, Flash and other large building blocks. Such an ASIC is often termed a SoC (system-on-chip) •  Designers of digital ASICs use a hardware description language(HDL), such as Verilog or VHDL, to describe the functionality of ASICs. Sunil Kumar Sahu,Lecturer RCET

  4. HISTORY OF ASICS • The initial ASICs used gate array technology. •  Ferranti produced perhaps the first gate-array, the ULA (Uncommitted Logic Array), around 1980. • An early successful commercial application was the ULA circuitry found in the 8-bit ZX81 and ZX Spectrum low-end personal computers, introduced in 1981 and 1982. These were used by Sinclairv Research (UK) Sunil Kumar Sahu,Lecturer RCET

  5. Due to Customization occurred by varying the metal interconnect mask. ULAs had complexities of up to a few thousand gates. • Gate Array Design: • Gate-array design is a manufacturing method in which the diffused layers, i.e. transistors and other active devices, are predefined and wafers containing such devices are held in stock prior to metallizationin other words, unconnected. Sunil Kumar Sahu,Lecturer RCET

  6. Gate-array ASICs are always a compromise as mapping a given design onto what a manufacturer held as a stock wafer never gives 100% utilization. • Often difficulties in routing the interconnect require migration onto a larger array device with consequent increase in the piece part price. • These difficulties are often a result of the layout software used to develop the interconnect. Sunil Kumar Sahu,Lecturer RCET

  7. ASICS SUPPLIERS • There are two different types of ASIC suppliers, IDM and fabless. IDM ASIC suppliers • Allegro • AMS • Avago Technologies • Elmos Semiconductor • Cavium Networks • Fujitsu • Freescale Semiconductor • HITACHI • Global Foundries • IBM • Infineon Technologies • GigOptix (ChipX Structured ASIC) Sunil Kumar Sahu,Lecturer RCET

  8. LSI Corporation • Maxim Integrated Products • NEC • NXP Semiconductors • ON Semiconductor • Renesas • Samsung • STMicroelectronics • Texas Instruments • Toshiba • TSMC • Bosch Sunil Kumar Sahu,Lecturer RCET

  9. FablessASIC suppliers • Alchip • Aeroflex Colorado Springs • AnSem (Analog, RF and mixed-signal ASICs) • Brite Semiconductor • Broadcom Corporation • Custom Silicon Solutions, Inc. • GigOptix (ChipX Structured ASIC) • DA-Integrated • DELTA Microelectronics • eASIC • eSilicon • Faraday Technology Sunil Kumar Sahu,Lecturer RCET

  10. Hong Kong Science and Technology Parks Corporation • ICsense (ASIC Design and Supply) • Marvell Semiconductor • MOSIS • Nvidia • Open-Silicon • PMC Sierra • Qualcomm • SWINDON Silicon Systems • Socle Technology Corporation • Triad Semiconductor (Configurable Analog and Mixed-Signal) • Xilinx • Cactus Semiconductor Sunil Kumar Sahu,Lecturer RCET

  11. COMPUTER Computer is an electronic device that perform some arithmatic and logic operation to achive specific task. Computer works mostly on data and information. Data is a collection of raw facts.Data may be valuable or non-valuable. Information is the processed data. Sunil Kumar Sahu,Lecturer RCET

  12. Major Components Of A Digital Computer CPU Input Device Output Device Memory Sunil Kumar Sahu,Lecturer RCET

  13. CPU • The CPU is the brain of the computer • Its primary function is to execute programs. • It also control the operation of all other components such as memory, input & output devices. ALU Accumulator General & Special Purpose Register Control Unit Sunil Kumar Sahu,Lecturer RCET

  14. CONTROL UNIT • It control the entire operation of the computer by passing control signals. • It gives order to ALU what operation is to be performed . • It controls the data flow between the CPU & Peripherals. Sunil Kumar Sahu,Lecturer RCET

  15. Characteristics Of Computer • Speed • Accuracy • Reliability • Storage Capability • Automation • Versatility Sunil Kumar Sahu,Lecturer RCET

  16. Characteristics Of Computer • Computers are built to carry out a small variety of instruction. • Instruction are extremely simple e.g. add,subtract,read or write chracter,compare a no. etc. • Most instruction are carried out in less than a millionth of a second. • Instructions are carried out obediently with no question asked. • Instructions are carried out without any mistakes. Sunil Kumar Sahu,Lecturer RCET

  17. Disadvantages of computer • Computer does no work by itself. It works on the basis of the list of instruction given to it. • Computer doesnot have any I.Q it works on the basis of what has been instructed. • Computer does not take decision of its own. • Computer does not learn by experience. Sunil Kumar Sahu,Lecturer RCET

  18. ALGORITHM • It is a step by step description of how to arrive at the solution of the given problem. • An algorithm may be defined as a finite sequence of instruction to solve a problem. Sunil Kumar Sahu,Lecturer RCET

  19. Characteristics of algorithm • An algorithm begins with instruction to accept input. • The proceesing rules specified in the algorithm must be precise and unambiguous. • Each instruction must be carried out by a person with paper and pencil. • The total time to carry out all the steps in the algorithm must be finite. • An algorithm must produce one or more outputs. Sunil Kumar Sahu,Lecturer RCET

  20. Example of algorithm • an algorithm to find the avg no. of vowels in a passage. Step 1: Let no. of character=0 Step2: Let no. of vowels=0 Step3: Repeat 4,5,6 and 7 until end of passage is reached. Step4: read one character from passage. Step5: add 1 to no. of character. Step6:if the character is any one of the letters A,E,I,O,U,a,e,I,o,u add 1 to no. of vowels. Sunil Kumar Sahu,Lecturer RCET

  21. Step7:move to next character. Step8: avg no. of vowels = no.of vowels/no. of character Step9: Write avgno.of vowels. Step10: stop. Sunil Kumar Sahu,Lecturer RCET

  22. Flow Chart • It is a pictorial representation of an algorithm. Processing Start/Stop INPUT/OUTPUT Decision Box C Sunil Kumar Sahu,Lecturer RCET

  23. Input Devices • These are those devices, which facilitate a user to give input. Information is entered in to a computer through input devices. • An input device converts input information in to suitable binary format, which can be accepted by the computer system. • The computer system has to process details of each command, therefore the command will have to be converted in to machine readable format and this work can be done through input unit. Sunil Kumar Sahu,Lecturer RCET

  24. Keyboard • Keyboard is one of the most widely used peripheral devices. • Data is entered in to the computer system through keyboard. • Keyboards are designed for the input of text and characters and also to control the operation of a computer. Most of the keyboard have a common number of features like: • Standard type writer keys • Function keys • Special purpose keys • Cursor Movement Keys • Numeric keys Sunil Kumar Sahu,Lecturer RCET

  25. MOUSE • Mouse is a device which is used to move the cursor on the screen and to select options. • When the mouse is moved on the surface the cursor is also moved in the same direction on the monitor. • By moving the mouse the user can point to menu on the screen i..e. Mouse is also known as pointing device. • Pressing the button of a mouse is known as clicking. Technicians often describe mouse speed in DPI(dots per inch). • One DPI is intended to be the number of pixels the mouse cursor will move when the mouse is moved one inch. Some common types of mouse are • Mechanical Mouse • Optical Mouse Sunil Kumar Sahu,Lecturer RCET

  26. LIGHT PEN • A light pen is a pointing device.It is an input device in the form of a light-sensitive wand used in conjunction with the computer's CRT monitor. • It allows the user to to select a displayed menu option on the CRT. • A light pen can work with any CRT-based monitor, but not with LCD screens, projectors or other display devices. • It is capable of sensing a position on the screen when its tip touches it ,its photocell sensing element detects the light coming on the screen and sends the corresponding signal to the processor. Sunil Kumar Sahu,Lecturer RCET

  27. TOUCH SCREENS • It is a type of display screen in which one can use finger to point the command displayed on the screen. In this user touches the icon that represent their choices and the computer display information about their choices. There are some types of touch screen technology: • A resistive touch screen panel is coated with a thin metallic electrically conductive and resistive layer that causes a change in the electrical current which is registered as a touch event and sent to the controller for processing. • Surface wave technology uses ultrasonic waves that pass over the touch screen panel. When the panel is touched, a portion of the wave is absorbed. This change in the ultrasonic waves registers the position of the touch event and sends this information to the controller for processing. Sunil Kumar Sahu,Lecturer RCET

  28. JOYSTICK • A joystick is also a pointing device. • It is used to move cursor on the CRT screen. • A joystick is a stick that has spherical ball at it’s upper as well as its lower end. • The lower spherical ball moves in a socket. • The electronic circuitry inside the joystick detects and measures the displacement from its central position, the information is sent to the processor. Sunil Kumar Sahu,Lecturer RCET

  29. MICR • Magnetic Ink Character Recognition, or MICR, is a special kind of character recognition technology that was adopted mainly by the banking industry to facilitate the processing of cheques. • A special ink called magnetic ink is used to write the character of the cheques and deposit forms which are to be processed by an MICR. • The magnetic ink is magnetized during the input process. • The MICR reads these pattern and compared with the special pattern stored in the memory Sunil Kumar Sahu,Lecturer RCET

  30. OCR(Optical Character Reader) • It is an abbreviated form of Optical Character Reader. It detects the alphanumeric character printed on paper. • It works on the basis of light scanning techniques in which each character is illuminated by the light source and the reflected images of the character is received by the photocells which provides binary data corresponding to the lighted and dark areas. • OCR is quite costly because the memory requirement is very high. Sunil Kumar Sahu,Lecturer RCET

  31. BAR CODE READER • Bar code is a machine readable numerical code, printed as a set of varying width vertical bars. • Abarcode reader is a computer peripheral for reading barcodes printed on various surfaces. • As you know bar codes are present on most of the grocery item, it consist of a number of thick lines with a varying distance between them. • A barcode reader scans the bar code, and converts it into a number that the computer can then process and display on the screen. • Bar code reader, generally consists of a light source, a lens and a photo conductor translating optical impulses into electrical ones. Therefore, it read such bars and convert thm in to electrical pulses which is processed by the computer. Sunil Kumar Sahu,Lecturer RCET

  32. OMR • Special marks such as square or bubble are prepared on examination answer sheets. • The user fill in theses squares or bubbles with soft pencil or ink to indicate there choices. These squares are detected by an OMR and the corresponding signals are sent to the processor. • If a mark is present, it reduces the amount of reflected light . If a mark is not present the amount of light reflected is not reduced. Sunil Kumar Sahu,Lecturer RCET

  33. OUTPUT DEVICES The output devices receive information from the computer and provide them to user in a readable format. The computer sends information to the output devices in binary coded forms. Then, output devices convert them in to a form, which can be used by user. Some output devices are • Printer • Monitor • Plotter • Speaker Sunil Kumar Sahu,Lecturer RCET

  34. PRINTER • It is a device that produces a hard copy which is permanent human-readable text of documents stored in electronic form, usually on physical print media such as paper or transparencies. • The data received by a printer may be: a string of characters a bitmapped image a vector image • Printers which are used with computer can be classified in two ways. Line Printer Character Printer Sunil Kumar Sahu,Lecturer RCET

  35. Line printer is categorised into: Drum Printer Chain Printer Comb Printer Drum Printer In drum printers, a drum carries the entire character set of the printer repeated in each column that is to be printed. The printer receives all characters to be printed in one line of the text from the processor. The hammer hit the paper and ribbon against the desired character on the drum when it comes in the printing position. Sunil Kumar Sahu,Lecturer RCET

  36. A AAAAAAAAAAA BBBBBBBBBBBBB ------------------------------------------------------------------------------------------------------------ • In chain printers which is also known as train printers, the character set is arranged multiple times around a chain that travels horizontally past the print line. In either case, to print a line, precisely timed hammers strike against the back of the paper at the exact moment that the correct character to be printed is passing in front of the paper. The paper presses forward against a ribbon which then presses against the character form and the impression of the character form is printed onto the paper. Sunil Kumar Sahu,Lecturer RCET

  37. In comb printers, a comb of hammers printed a portion of a row of pixels at one time. By shifting the comb back and forth slightly, the entire pixel row could be printed. • Another way of classifying the printer is on the basis of manufacture: • Impact Printer • Non Impact Printer • Impact printer use electromechanical mechanism that causes hammer or pin to strike against a ribbon and a paper to print the text. • Non Impact Printer, A printer that creates an image without striking a ribbon against the paper.It does not use electromechanical printing head to strike against ribbon and paper.These type of printer use thermal, chemical, electrostatic, laser beam or inkjet technology for printing the text. Sunil Kumar Sahu,Lecturer RCET

  38. DOT MATRIX PRINTERS • It use a matrix of small pins to create precise dots. • In this character is printed by printing the selected no of dots from a matrix of dot. The formation of a character has been shown 5 dot rows and 7 dot columns. This pattern is called 5*7 dot matrix. In this character is printed by printing the selected no of dots from a matrix of dot. The formation of a character has been shown 5 dot rows and 7 dot columns. This pattern is called 5*7 dot matrix. • Such printers would have either 9 or 24 pins on the print head. Print head is that part of the printer that creates the printed image. Sunil Kumar Sahu,Lecturer RCET

  39. INKJET PRINTER • It is a type of non impact printer. It is a printer that creates an image by spraying tiny droplets of ink from the printhead. • In ink-jet printer, whenever we want to print the image the nozzel spread the ink, so there is a permanent remark on the paper. Suppose there is a 5 pin then it spread the ink up to 5 pixels. But it can approximately print up to 16 to 32 pixel at a time. • In inkjet printer the ink is stored in a cartridge.Acolour inkjet printer cosist of four cartridge one each for blue, green, cyan, magenta and black. Sunil Kumar Sahu,Lecturer RCET

  40. LASER PRINTER • Laser printer are page printer. They make use of laser beam to produce an image of the page containing text /graphics on a photo sensitive drum. • A laser printer uses a rotating disc to reflect laser beam onto a photosensitive drum, where the image of the page is converted in to an electrostatic charge. Sunil Kumar Sahu,Lecturer RCET

  41. PLOTTER • Plotter used to produce good quality drawings and graphs. • Drum plotter: It contain along cylinder and a pen carriage. The paper is placed over the drum. The drum rotates back and forth. The pen moves horizontally along the surfacei.e either left to right or right to left. • Flat-Bed Plotter: It uses horizontal flat surface on which paper is fixed and the pen moves along both the axes i.e. x axis and y axis. • Inkjet Plotter: These plotter uses inkjet in place of ink pens. Sunil Kumar Sahu,Lecturer RCET

  42. VDU(VIDEO TERMINAL) • A computer display is a device that can display signals generated by a computer as images on a screen. Quality factors used in monitor are: • Pixels: It is the smallest unit of monitor which is displayed without disturbing the other point .While designning the pixels, some distance between the pixels must be there in the horizontal as well as in vertical directin also. • Aspect Ratio: It is the ratio of the pixels in the horizontal as well as in vertical direction also. • Resolution: No of pixels in a per unit area. • Refreshing Rate: The rate by which the pixels glow again Refreshing Rate = 1/Refreshing Time Sunil Kumar Sahu,Lecturer RCET

  43. VDU IS CATEGORIZED INTO • CRT • Non CRT CRT Display Sunil Kumar Sahu,Lecturer RCET

  44. Non CRT Display • LCD • LED Sunil Kumar Sahu,Lecturer RCET

  45. SPEAKER • Speaker is one of the output devices which is mainly used for entertainment, video conferencing etc.Computer speakers, or multimedia speakers, are external speakers and are usually equipped with a male-end stereo jack plug. • The sound capability of the computer system does not work unless and unti there is a sound card. Speaker recieves the data from the sound card in the form of electric signal and then convert it in to the sound format Sunil Kumar Sahu,Lecturer RCET

  46. Technical Evolution Of Computer First Generation 1946-1955 Second Generation 1956-1964 Third Generation 1964-1971 Fourth Generation 1971-Present Fifth Generation Present-Future Sunil Kumar Sahu,Lecturer RCET

  47. First Generation Computers • The era of the first generation computers began in 1946 because that was the year when people consciously set out to build stored program computers. In 1946 there was no 'best' way of storing instructions and data in a computer memory. There were four competing technologies for providing computer memory: • Electrostatic storage tubes, • Acoustic delay lines (mercury or nickel), • Magnetic drums (and disks), • Magnetic core storage. Sunil Kumar Sahu,Lecturer RCET

  48. Some computers of these generations are given below: • ENIAC • EDVAC • EDSAC • UNIVAC Sunil Kumar Sahu,Lecturer RCET

  49. Characteristics of First Generation Computers • Used vaccum tubes • Not reliable • Big and clumsy computers • Electric consumption is very high • This type of computers generate too much heat, therefore air conditioners are required. • Batch processing • Slow Input/Output operations. Sunil Kumar Sahu,Lecturer RCET

  50. Second Generation Computers • Transistor takes place of vaccum tubes. • Faster than first generation. • Assembly language is used instead of machine language. • Generate less heat • Smaller in size • Magnetic tapes and disks are used. Sunil Kumar Sahu,Lecturer RCET

More Related