Central Processing Units for PLC Implementation in Virtex-4 FPGA

Total Page:16

File Type:pdf, Size:1020Kb

Central Processing Units for PLC Implementation in Virtex-4 FPGA Preprints of the 18th IFAC World Congress Milano (Italy) August 28 - September 2, 2011 Central Processing Units for PLC implementation in Virtex-4 FPGA M. Chmiel*, J. Mocha**, E. Hrynkiewicz***, A. Milik**** Institute of Electronics, Silesian University of Technology, Gliwice * (e-mail: [email protected]), ** (e-mail:[email protected]) *** (e-mail:[email protected]), **** (e-mail:[email protected]) Abstract: The paper presents an approach to the design and construction of central processing units for programmable logic controllers implemented in a FPGA development platform. Presented units are optimised for minimum response- and throughput time. The CPU structure is based on bit-word architecture and two types of control data exchange methods: with handshaking – control data are passed through the two flip-flop units with acknowledgement; without handshaking – control data are passed through the dual port RAM. Third unit – simple one processor – built to compare with the above two. The paper presents specific timers/counters hardware construction solution. Additionally it presents implementation results which show how many FPGA circuit resources are used to implement presented units. Keywords: Programmable Logic Controller (PLC), Central Processing Unit, Throughput Time, Concurrent Programs, Field Programmable Logic Array (FPGA). independent tasks are often determined by their analogue or 1. INTRODUCTION binary nature, as well as process set of signals and control One of the main parameters (features) of Programmable conditions. This observation leads to the conclusion: bit-word Logic Controller (PLC) is scan time – execution time of one structure of PLC CPU well matches typical processed data. thousand control commands. Due to this fact designing and The CPU structure is oftentimes optimised for very fast logic construction of the CPU should have an architecture that operations and for execution of complicated arithmetic enables fast control program execution. It is a very important operation (including floating point). To benefit from task. The most of developed CPUs of PLCs delivered by described architecture both processors must work in parallel well-known manufacturers are constructed as multiprocessor as independent as possible. To make it possible, two units. Particular processor in such units executes the processors must be equipped with specific hardware and commissioned for it tasks. In this way one can obtain a unit, software solutions. which make possible concurrent operation of a few The most effective and natural approach to the problem of processors. For such CPU the main problem to solve is the task assignment is partitioning along the operation type (bit way of task assignment to particular processors and finding or word). The tasks operating on discrete input/outputs are a structure of CPU be able to execute of such task assigned in executed by a bit-processor (Getko, 1983). Nowadays such practice as it was shown by (Michel, 1990). The other processors may be implemented in programmable structures important problem inseparable from hardware are like CPLDs or FPGAs. It brings the positive effects in user programmatic tools. Those tools should enable easy and program execution time (the controller speed-up). On the efficient creation of control algorithm. The programming other hand a word-processor is built on the base of a standard toolbox should take benefits from all aspects of microprocessor or embedded microcontroller. It is used for multiprocessor unit. word data processing in control of analogue objects, numeric Apart from instruction execution time, the access time to data processing and operating system maintenance of the internal (markers, counters, timers), and external (inputs and PLC (networking, diagnostics, control loop) (Donandt, 1989; outputs) resources is a very important parameter. Another Aramaki et al., 1997). parameter which characterises PLC is throughput time. It is As it was mentioned above an efficient and most promising defined as the response time to the change of object signals. platform for control unit implementation is a platform based From the point of view of the object, this parameter is most on programmable logic devices. This platform may be based important, which describes the quality of control that is on Field Programmable Logic (FPL), especially Field directly derived from the central processing unit and Programmable Gate Arrays (FPGAs). System architects are programmatic toolbox (Chmiel, 2008). offered powerful tools which ensure acceptable financial and PLCs control mainly process of a binary nature. In some time outlays in comparison to effects. The FPL enables easy cases they are used for mixed control containing analogue prototyping, testing and evaluating different solutions. signals (Koo et al., 1998). There are a lot of objects where control can form independent tasks. The boundaries of Copyright by the 7860 International Federation of Automatic Control (IFAC) Preprints of the 18th IFAC World Congress Milano (Italy) August 28 - September 2, 2011 2. FPGA PLATFORM - HARWADRE AND SOFTWARE Programmer writes a program in form of instructions SOLUTION sequence. Compiler checks the syntax and splits the sequence of instructions into two streams. Those streams are later Large density FPGA devices offer a platform that enables compiled separately for each processor and written to the using different approaches to construct a PLC CPU. The CPU program memories of the particular processor. can be constructed from off the shelf CPU IP-Cores. It can be F F cores that are compatible with standard microprocessors or Bit b bB Byte Fb Procesor WRFbB RDFbB Procesor microcontrollers. An alternative is to design your own CPU Program Instruction FbB Instruction Program EMPTYF READYF TRF bB bB READ_FbB from the scratch. This can be designed to satisfy requirements Memory bB Memory of the application. Those requirements reflect on the Byte Procesor F F instruction set and interface operation. This approach is much bB B FB Standard RDFBb WRFBb Program more laborious but results seem to be more optimal. Instruction FBb Instruction READYF EMPTYF Memory TFBb Bb Bb WRITE_FBb The authors have decided to use a development board with Bit Bit Byte Byte Procesor Procesor a Xilinx Virtex-4 (Xilinx, 2006) to perform experiments. Data Processor Processor Data Virtex-4 logic resources are sufficient to implement and Memory Memory evaluate dedicated PLC CPU (processors and required Bit Byte peripherals) implemented in FPGA structures. It must be In/Out In/Out mentioned that implemented central processing units work in Modules Modules classical manner. The central processing unit executes instructions in serial-cyclic manner, in opposite to parallel Fig. 1. CPU with exchange flip-flop register block (Chmiel specific hardware processing of ladder diagram which is and Hrynkiewicz, 2008). possible in reconfigurable logic devices (Ichikawa et Bit Processor Exchange Memory Byte Processor al., 2006). RAM 1' RAM 1 In prior research works the comparison of basic structures were carried out (Chmiel et al., 2010). Three different Upadate memory Update memory state - UPDB structures were designed. VHDL hardware description state - UPD language was used for the design (Skahill, 2004). RAM 2 RAM 2' There following structures were evaluated: dual processor where one processor waits for the results Fig. 2. CPU with exchange memory (BlockRAM) (Chmiel et from the other; al., 2010). dual processor with fully asynchronous operation From the point of view of experiments, possibility of execution (no synchronisation between processors – no introducing new commands is very important. The process of waiting for each other); developing new commands influences the processor single processor executes bit and word instructions. hardware. This is because each new command means that new functionality must be modelled in a hardware description Ideas presented in (Chmiel and Hrynkiewicz, 2005; Chmiel et language. Finally the new structure has to be synthese and al., 2005) were used to build bit-word structure of CPU. implemented in the target architecture. Different ideas of concurrent execution of instructions, as well as the processor’s synchronisation mechanism based on The assembler program is able to process macros. Macros common data dependencies are presented in cited papers. The enable creating sequences of instructions that perform units with fully concurrent operating processors were used in specific operation (e.g. configuring I/O units or timer/counter experiments. Information between processors was exchanged units). Using macros simplified writing the programs and in two alternative ways: increase the level of abstraction. by means of flags written to the flip-flops equipped with 3. PROCESSORS STRUCTURES a handshake mechanism; one flag is written by each processor and made available for opposite one for reading For experimental and evaluation purposes, three structures of (Fig. 1); central processing unit have been designed, described in by means of exchange memory, which was implemented VHDL and finally implemented. Two dedicated processors in dual port RAM (Fig. 2). One side has full access to the have been designed: for bit operations and for word memory while opposite one is granted only reading. operations. The third processor has been developed as a general processor equipped with word and bit operations. It In order to exploit specific features of designed units, has not been equipped
Recommended publications
  • Configurable RISC-V Softcore Processor for FPGA Implementation
    1 Configurable RISC-V softcore processor for FPGA implementation Joao˜ Filipe Monteiro Rodrigues, Instituto Superior Tecnico,´ Universidade de Lisboa Abstract—Over the past years, the processor market has and development of several programming tools. The RISC-V been dominated by proprietary architectures that implement Foundation controls the RISC-V evolution, and its members instruction sets that require licensing and the payment of fees to are responsible for promoting the adoption of RISC-V and receive permission so they can be used. ARM is an example of one of those companies that sell its microarchitectures to participating in the development of the new ISA. In the list of the manufactures so they can implement them into their own members are big companies like Google, NVIDIA, Western products, and it does not allow the use of its instruction set Digital, Samsung, or Qualcomm. (ISA) in other implementations without licensing. The RISC-V The main goal of this work is the development of a RISC- instruction set appeared proposing the hardware and software V softcore processor to be implemented in an FPGA, using development without costs, through the creation of an open- source ISA. This way, it is possible that any project that im- a non-RISC-V core as the base of this architecture. The plements the RISC-V ISA can be made available open-source or proposed solution is focused on solving the problems and even implemented in commercial products. However, the RISC- limitations identified in the other RISC-V cores that were V solutions that have been developed do not present the needed analyzed in this thesis, especially in terms of the adaptability requirements so they can be included in projects, especially the and flexibility, allowing future modifications according to the research projects, because they offer poor documentation, and their performances are not suitable.
    [Show full text]
  • FPGA Architecture: Survey and Challenges Full Text Available At
    Full text available at: http://dx.doi.org/10.1561/1000000005 FPGA Architecture: Survey and Challenges Full text available at: http://dx.doi.org/10.1561/1000000005 FPGA Architecture: Survey and Challenges Ian Kuon University of Toronto Toronto, ON Canada [email protected] Russell Tessier University of Massachusetts Amherst, MA USA [email protected] Jonathan Rose University of Toronto Toronto, ON Canada [email protected] Boston – Delft Full text available at: http://dx.doi.org/10.1561/1000000005 Foundations and Trends R in Electronic Design Automation Published, sold and distributed by: now Publishers Inc. PO Box 1024 Hanover, MA 02339 USA Tel. +1-781-985-4510 www.nowpublishers.com [email protected] Outside North America: now Publishers Inc. PO Box 179 2600 AD Delft The Netherlands Tel. +31-6-51115274 The preferred citation for this publication is I. Kuon, R. Tessier and J. Rose, FPGA Architecture: Survey and Challenges, Foundations and Trends R in Elec- tronic Design Automation, vol 2, no 2, pp 135–253, 2007 ISBN: 978-1-60198-126-4 c 2008 I. Kuon, R. Tessier and J. Rose All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, mechanical, photocopying, recording or otherwise, without prior written permission of the publishers. Photocopying. In the USA: This journal is registered at the Copyright Clearance Cen- ter, Inc., 222 Rosewood Drive, Danvers, MA 01923. Authorization to photocopy items for internal or personal use, or the internal or personal use of specific clients, is granted by now Publishers Inc for users registered with the Copyright Clearance Center (CCC).
    [Show full text]
  • Xilinx Vivado – „EDK” Embedded Development) 4
    EFOP-3.4.3-16-2016-00009 A fels őfokú oktatás min őségének és hozzáférhet őségének együttes javítása a Pannon Egyetemen EMBEDDED SYSTEM DEVELOPMENT (MISAM154R) Created by Zsolt Voroshazi, PhD [email protected] Updated: 02 March. 2020. 2. FPGAS & PLATFORMS Embedded Systems Topics covered 1. Introduction – Embedded Systems 2. FPGAs, Digilent ZyBo development platform 3. Embedded System - Firmware development environment (Xilinx Vivado – „EDK” Embedded Development) 4. Embedded System - Software development environment (Xilinx VITIS – „SDK”) 5. Embedded Base System Build (and Board Bring-Up) 6. Adding Peripherals (from IP database) to BSB 7. Adding Custom (=own) Peripherals to BSB 8. Design and Development of Complex IP cores and applications (e.g. camera/video/ audio controllers) 3 Further references • XILINX official website: http://www.xilinx.com • EE Journal – Electronic Engineering: http://www.eejournal.com/design/embedded • EE Times - News: http://www.eetimes.com/design/embedded 4 PLD & FPGA CIRCUITS General description PAST … • Before ’80s, designing logic networks for digital circuits, modern development tools were not yet available as today. • The design of high complexity (multi I/O) logical combination and sequential networks was therefore slow and cumbersome, often coupled with paper- based design, multiple manual checks, and calculations. • We could not talk about advanced design and simulation tools (CAD) either, so there was a high probability of error in a prototype design. 6 … AND PRESENT • Today, all of these are available in an automated way (EDA - Electronic Design Automation), which, in addition to the use of Programmable Logic Devices (PLD), is relatively fast for both Printed Circuit Boards (PCB) and Application-specific Integrated Circuits and Processors (ASIC / ASSP).
    [Show full text]
  • Stratix II Vs. Virtex-4 Power Comparison & Estimation Accuracy
    White Paper Stratix II vs. Virtex-4 Power Comparison & Estimation Accuracy Introduction This document compares power consumption and power estimation accuracy for Altera® Stratix® II FPGAs and Xilinx Virtex-4 FPGAs. The comparison addresses all components of power: core dynamic power, core static power, and I/O power. This document uses bench-measured results to compare actual dynamic power consumption. To compare power estimation accuracy, the analysis uses the vendor-recommended power estimation software tools. The summary of these comparisons are: Altera’s Quartus® II PowerPlay power analyzer tool is accurate (to within 20%), while Xilinx’s tools are significantly less accurate. Stratix II devices exhibit lower dynamic power than Virtex-4 devices, resulting in total device power that is equal. Having an accurate FPGA power estimate is important to avoid surprises late in the design and prototyping phase. Inaccurate estimates can be costly and cause design issues, including: board re-layout, changes to power-management circuitry, changes cooling solution, unreliable FPGA operation, undue heating of other components, and changes to the FPGA design. Furthermore, without accurate power estimates, it is impossible for the designer and FPGA CAD software to optimize design power. This white paper contains the following sections: Components of total device power Power estimation and measurement methodology Core dynamic power comparison – power tool accuracy and bench measurements Core Static power comparison I/O power comparison Total device power summary For competitive comparisons on performance and density between Stratix II and Virtex-4 devices, refer to the following white papers from the Altera web site: Stratix II vs.
    [Show full text]
  • Tolerant Fpgas for Space Applications
    JPL D-31228 NASA Electronic Parts and Packaging Program A Comparison of Radiation-Hard and Radiation- Tolerant FPGAs for Space Applications Ramin Roosta December 30, 2004 JPL D-31228 NASA Electronic Parts and Packaging Program A Comparison of Radiation-Hard and Radiation- Tolerant FPGAs for Space Applications Ramin Roosta December 30, 2004 This research was carried out at the Jet Propulsion Laboratory, California Institute of Technology, under a contract with the National Aeronautics and Space Administration. Reference herein to any specific commercial product, process, or service by trade name, trademark, manufacturer, or otherwise, does not constitute or imply its endorsement by the United States Government or the Jet Propulsion Laboratory, California Institute of Technology. Table of Contents 1. Introduction ......................................................................................................................... 1 2. FPGA Radiation Considerations ......................................................................................... 3 3. TID Performance................................................................................................................. 4 4. SEU Performance..............................................................................................................45 5. SEU Mitigation Techniques................................................................................................ 5 5a. User Logic SEU Mitigation Techniques ......................................................................
    [Show full text]
  • Zynq Ultrascale+ Mpsoc Data Sheet: Overview (DS891)
    Zynq UltraScale+ MPSoC Data Sheet: Overview DS891 (v1.9) May 26, 2021 Product Specification General Description The Zynq® UltraScale+™ MPSoC family is based on the Xilinx® UltraScale™ MPSoC architecture. This family of products integrates a feature-rich 64-bit quad-core or dual-core Arm® Cortex®-A53 and dual-core Arm Cortex-R5F based processing system (PS) and Xilinx programmable logic (PL) UltraScale architecture in a single device. Also included are on-chip memory, multiport external memory interfaces, and a rich set of peripheral connectivity interfaces. Processing System (PS) Arm Cortex-A53 Based Application Dual-core Arm Cortex-R5F Based Processing Unit (APU) Real-Time Processing Unit (RPU) Quad-core or dual-core CPU frequency: Up to 600MHz CPU frequency: Up to 1.5GHz Armv7-R Architecture Extendable cache coherency o A32/T32 instruction set Armv8-A Architecture Single/double precision Floating Point Unit (FPU) o 64-bit or 32-bit operating modes CoreSight™ and Embedded Trace Macrocell o TrustZone security (ETM) o A64 instruction set in 64-bit mode, Lock-step or independent operation A32/T32 instruction set in 32-bit mode Timer and Interrupts: NEON Advanced SIMD media-processing engine o One watchdog timer Single/double precision Floating Point Unit (FPU) o Two triple-timer counters CoreSight™ and Embedded Trace Macrocell (ETM) Caches and Tightly Coupled Memories (TCMs) Accelerator Coherency Port (ACP) o 32KB Level 1, 4-way set-associative AXI Coherency Extension (ACE) instruction and data cache with ECC Power island
    [Show full text]
  • Fpgas for Space - an Overview
    FPGAs for Space - an overview Fredrik Sturesson ESA/ESTEC QCA presentation day 23 January 2007 Outline ¾ FPGAs available today ¾ Comparing radiation performance ¾ Upcoming ¾ What do we miss & Some rare effects ¾ Conclusion This is a comprehensive summary. Presented data is taken from presentations, papers and other sources.The data can only be used for orientation purpose. FPGAs for Space - an overview, F.Sturesson QCA Presentation day - 23/1/2007 Page 2 Main FPGA Vendors for Space ¾European ¾US One time programmable Aeroflex/UTMC Actel SRAM based Atmel Xilinx Honeywell (RHrFPGA, Not for sell?) Flash based Actel in development FPGAs for Space - an overview, F.Sturesson QCA Presentation day - 23/1/2007 Page 3 FPGA devices for Space Red cursive not available yet (planned 2007) Vendor Family Parts Packages Max IOs RAM FF Logics Others Atmel AT40K AT40KEL040 MQFPF160, MQFGF256 233 18 k 3 k 2,3 k 5V tolerant I/O AT40KFL040 0.35 µm ATF280E ATF280E MQFGF256 308+ 115 k 14 k 28 k Cold soare MCGA472 0.35 µm Aeroflex/UTMC Eclipse UT6325 CQ208, CQ288 310 55 k 3,1 k 1,5 k CLGA484 0.25 µm Actel Act 3 RT14100 CQ256 228 None 0,7 k 1,4 k 5V I/O 0.8 µm RTSX-SU RTSX32-SU CQ208, CQ256 224 None 1,1 k 1,8 k 3,3V & 5V I/O RTSX72-SU CCGA624 353 2 k 4,0 k 0.25 µm CCLG256 RTAX-S RTAX250S CQ84,CQ208, CQ256, CQ352 248 54 k 1,4 k 2,8 k RTAX1000S CCGA624, 516 162 k 6,0 k 12,1 k 0.15 µm RTAX2000S CCGA1152,CCGA1272 684 288 k 10,8 k 21,5 k RTAX4000S 840 553 k 20,2 k 40,3 k Xilinx Virtex-2 XQR2V1000 FG458, BG575, BG728 328 720 k 10.2 k 11.5 k 8-12 DCM XQR2V3000 CG717,
    [Show full text]
  • EDK 9.2 Microblaze Tutorial in Virtex-4
    EDK 9.2 MicroBlaze Tutorial in Virtex-4 Objectives This tutorial will demonstrate process of creating and testing a MicroBlaze system design using the Embedded Development Kit (EDK). The tutorial contains these sections: • System Requirements • MicroBlaze System Description • Tutorial Steps The following steps are described in this tutorial: • Starting XPS • Using the Base System Builder Wizard • Create or Import IP Peripheral • Design Modification using Platform Studio • Implementing the Design • Defining the Software Design • Downloading the Design • Debugging the Design • Performing Behavioral Simulation of the Embedded System System Requirements You must have the following software installed on your PC to complete this tutorial: • Windows 2000 SP2/Windows XP Note: This tutorial can be completed on Linux or Solaris, but the screenshots and directories illustrated in this tutorial are based on the Windows Platform. • EDK 9.2i or later • ISE 9.2i sp1 or later • Familiarity with steps in the Xilinx ISE 9 In-Depth Tutorial http://www.xilinx.com/support/techsup/tutorials/tutorials9.htm In order to download the completed processor system, you must have the following hardware: Xilinx ML403 Evaluation Platform (XC4FX12 FF668) MicroBlaze Tutorial www.xilinx.com 1 WT001 (v4.0) October, 2007 1-800-255-7778 EDK 9.2 MicroBlaze Tutorial in Virtex-4 • Xilinx Parallel -4 Cable used to program and debug the device • Serial Cable Note: It should be noted that other hardware could be used with this tutorial. However, the completed design has only been
    [Show full text]
  • Implementing and Benchmarking Seven Round 2 Lattice-Based Key Encapsulation Mechanisms Using a Software/Hardware Codesign Approach
    Implementing and Benchmarking Seven Round 2 Lattice-Based Key Encapsulation Mechanisms Using a Software/Hardware Codesign Approach Farnoud Farahmand, Viet B. Dang, Michał Andrzejczak, Kris Gaj George Mason University Co-Authors GMU PhD Students Visiting Scholar Farnoud Viet Michał Farahmand Ba Dang Andrzejczak Military University of Technology in Warsaw, Poland 2 Hardware Benchmarking 3 Round 2 Candidates in Hardware #Round 2 Implemented Percentage candidates in hardware AES 5 5 100% SHA-3 14 14 100% CAESAR 29 28 97% PQC 26 ? ? 4 Software/Hardware Codesign 5 Software/Hardware Codesign Software Hardware Most time-critical operation 6 SW/HW Codesign: Motivational Example 1 Software Software/Hardware Other Other Major 9% 9% ~1% Major Time saved 91% 90% speed-up ≥ 100 91% major operation(s) ~1% major operation(s) in HW 9% other operations 9% other operations in SW Total Speed-Up ≥ 10 7 SW/HW Codesign: Motivational Example 2 Software Software/Hardware Other Major Other 1% ~1% 1% Major Time saved 99% 98% speed-up ≥ 100 99% major operation(s) ~1% major operation(s) in HW 1% other operations 1% other operations in SW Total Speed-Up ≥ 50 8 SW/HW Codesign: Advantages ❖ Focus on a few major operations, known to be easily parallelizable ▪ much shorter development time (at least by a factor of 10) ▪ guaranteed substantial speed-up ▪ high-flexibility to changes in other operations (such as candidate tweaks) ❖ Insight regarding performance of future instruction set extensions of modern microprocessors ❖ Possibility of implementing multiple candidates by the same research group, eliminating the influence of different ▪ design skills ▪ operation subset (e.g., including or excluding key generation) ▪ interface & protocol ▪ optimization target ▪ platform 9 SW/HW Codesign: Potential Pitfalls ❖ Performance & ranking may strongly depend on A.
    [Show full text]
  • Logic Efficiency in Stratix, Virtex-II & Virtex-II Pro Devices.Pdf
    White Paper An Analytical Review of FPGA Logic Efficiency in Stratix, Virtex-II & Virtex-II Pro Devices Introduction This white paper will demonstrate through concrete benchmark data and architectural comparisons that Altera’s Stratix™ FPGA products have a 9% logic resource utilization advantage over Xilinx Virtex-II Pro FPGA products. Since the Virtex-II Pro and Virtex-II families have similar FPGA architectures, the Stratix family’s logic efficiency advantage over Virtex-II Pro can also be applied to Virtex-II. Therefore, the benchmark data and analysis for Virtex-II are not provided here. Comparison Methodology Each FPGA architecture has unique features that differentiate it from other FPGAs. Furthermore, FPGA vendors use different terminologies in their literature and CAD tools to describe the logic capacity of their products. These differences have made comparing logic efficiency between FPGAs a difficult task. Nevertheless, each of the advanced FPGA architectures is constructed from a sea of basic logic units, where each unit consists of a four-input look-up table (LUT), programmable register, and any associated specialized circuits, such as a carry chain, cascade logic, primitive logic gates and mutiplexers. Even when a FPGA contains additional dedicated circuits such as multipliers, the bulk of a typical design’s logic functions are still implemented by these basic units. Therefore, this generic basic unit can be used to fairly measure the size of a design across different FPGA architectures. Altera uses the “Logic Element” (LE) methodology to measure the logic capacity of a FPGA. Each LE consists of a four-input LUT, a programmable register and associated specialized circuits, and it satisfies the definition of the aforementioned basic logic unit.
    [Show full text]
  • Microblaze RISC 32-Bit Soft Processor
    0 R MicroBlaze™ RISC 32-Bit Soft Processor August 21, 2002 00Product Brief Features LogiCORE™ Facts • Supports Virtex, Virtex-E, Virtex-II Pro, Spartan-II, and Core Specifics Spartan-IIE devices • Performance: 102 Dhrystone MIPS (D-MIPS) on Special Features Up to102 D-MIPS at 150 MHz Virtex-II Pro device at 150 MHz Provided With Core • Minimum logic requirements: 900 logic cells Embedded Software Tools Handbook Documentation • 32-bit pipelined RISC architecture and Embedded Processor IP Handbook Simulation Model Generator and Xilinx Generic • 32 x 32-bit general purpose registers Design Files Netlist Format (ngo netlist) • Implementation in Virtex-II and later devices support hardware multiply Design Tool Support • Supports Local Memory Bus (LMB) for fast access of Xilinx Xilinx ISE 5.1 on-chip BRAMs Implementation Tools • Supports IBM CoreConnect On-chip Peripheral Bus MicroBlaze GNU Debugger and (OPB) for accessing peripherals Verification Tools Xilinx Microprocessor Debug (XMD) Tools • Processor peripherals compatible with PowerPC on Virtex-II Pro Support • Complete hardware and software development tool Please contact the Xilinx Hotline for technical support. and debug solution Xilinx provides technical support for this LogiCORE Product when used as described in Product Documentation. Xilinx cannot guarantee timing, functionality, or support of product if implemented in devices not listed Performance above, or if customized beyond that allowed in the product The MicroBlaze processor is one part of an expanding array documentation, or if any changes are made in sections of design marked of processor functions that work together seamlessly to cre- as “DO NOT MODIFY”. ate the highest possible performance on a single FPGA.
    [Show full text]
  • A BIST Architecture for Testing Luts in a Virtex-4 FPGA Priyanka Gadde
    A Thesis entitled A BIST Architecture for Testing LUTs in a Virtex-4 FPGA by Priyanka Gadde Submitted to the Graduate Faculty as partial fulfillment of the requirements for the Master of Science Degree in Electrical Engineering _______________________________________ Dr. Mohammad Niamat, Committee Chair _______________________________________ Dr. Mansoor Alam, Committee Member _______________________________________ Dr. Weiqing Sun, Committee Member _______________________________________ Dr. Patricia R. Komuniecki, Dean College of Graduate Studies The University of Toledo December 2013 Copyright 2013, Priyanka Gadde This document is copyrighted material. Under copyright law, no parts of this document may be reproduced without the expressed permission of the author. An Abstract of A BIST Architecture for Testing LUTs in a Virtex-4 FPGA by Priyanka Gadde Submitted to the Graduate Faculty as partial fulfillment of the requirements for the Master of Science Degree in Electrical Engineering The University of Toledo December 2013 Field Programmable Gate Arrays (FPGAs) are programmable logic devices that can be used to implement a given digital design. Built-In Self-Test (BIST) is a testing technique that enables the device to test itself without the need for any external test equipment. The re-programmability feature of the FPGAs makes BIST a favorable approach for testing FPGAs because it eliminates any area or performance degradation associated with BIST. In order to ensure proper operation of Look up Tables in Xilinx Virtex-4 Field- Programmable Gate Arrays (FPGAs), a dependable and resource efficient test technique is needed so that the functional operation of the memory can be tested. Traditional BIST techniques for FPGAs suffer from a large number of logic resource requirements and long test times in the implementation and testing of the circuit.
    [Show full text]