SlideShare a Scribd company logo
Scientific Journal Impact Factor (SJIF): 1.7
International Journal of Modern Trends in Engineering and
Research
www.ijmter.com
@IJMTER-2014, All rights Reserved 170
e-ISSN: 2349-9745
p-ISSN: 2393-8161
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON
CHIP
Kadgonda A Kupade1
1
SIT college of Engineering Yadrav-Ichalkaranji, Maharashtra, India (ETC Dept)
Abstract - The focus of this Paper is the actual implementation of Network Router and verifies the
functionality of the four port router for network on chip using the latest verification methodologies,
Hardware Verification Languages and EDA tools and qualify the IP for synthesis and implementation.
This Router design contains three output ports and one input port, it is packet based Protocol. This Design
consists Registers and FIFO. For larger networks, where a direct-mapped approach is not feasible due to
FPGA resource limitations, a virtualized time multiplexed approach was used. Compared to the provided
software reference implementation, our direct-mapped approach achieves three orders of magnitude
speedup, while our virtualized time multiplexed approach achieves one to two orders of magnitude
speedup, depending on the network and router configuration.
I. INTRODUCTION
90% of ASIC repines are due to functional bugs. As the functional verification decides the quality
of the silicon, we spend 60% of the design cycle time only for the verification/simulation. In order to avoid
the delay and meet the TTM, we use the latest verification methodologies and technologies and accelerate
the verification process.
This project helps one to understand the complete functional verification process of complex ASICs
an SoC’s and it gives opportunity to try the latest verification methodologies, programming concepts like
Object Oriented Programming of Hardware Verification Languages and sophisticated EDA tools, for the
high quality verification.
Why Would I Need a Router?
For most home users, they may want to set-up a LAN (local Area Network) or WLAN (wireless LAN)
and connect all computers to the Internet without having to pay a full broadband subscription service to
their ISP for each computer on the network.
In many instances, an ISP will allow you to use a router and connect multiple computers to a single
Internet connection and pay a nominal fee for each additional computer sharing the connection. This is
when home users will want to look at smaller routers, often called broadband routers that enable two or
more computers to share an Internet connection. Within a business or organization, you may need to
connect multiple computers to the Internet, but also want to connect multiple private networks Not all
routers are created equal since their job will differ slightly from network to network. Additionally, you
may look at a piece of hardware and not even realize it is a router.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 171
What defines a router is not its shape, color, size or manufacturer, but its job function of routing data
packets between computers. A cable modem which routes data between your PC and your ISP can be
considered a router. In its most basic form, a
router could simply be one of two computers running the Windows 98 (or higher) operating system
connected together using ICS (Internet Connection Sharing). In this scenario, the computer that is
connected to the Internet is acting as the router for the second computer to obtain its Internet connection.
Going a step up from ICS, we have a category of hardware routers that are used to perform the same basic
task as ICS, albeit with more features and functions. Often called broadband or Internet connection sharing
routers, these routers allow you to share one Internet connection ple computers.
Broadband or ICS routers will look a bit different depending on the manufacturer or brand, but wired
routers are generally a small box-shaped hardware device with ports on the front or back into which you
plug each computer, along with a port to plug in your broadband modem. These connection ports allow
the router to do its job of routing the data packets between each of the computers and the data going to
and from the Internet. Depending on the type of modem and Internet connection you have, you could also
choose a router with phone or fax machine ports.
A wired Ethernet broadband router will typically have a built-in Ethernet switch to allow for
expansion. These routers also support NAT (network address translation), which allows all of your
computers to share a single IP address on the Internet. Internet
connection sharing routers will also provide users with much needed features such as an SPI firewall or
serve as a DHCP Server.
II. ROUTER DESIGN PRINCIPLES
Given the strict contest deadline and the short implementation window we adopted a set of design
principles to spend the available time as efficiently as possible.
This document provides pacifications for the Router is a packet based protocol. Router drives the
incoming packet which comes from the input port to output ports based on the address contained in the
packet.
The router is a” Network Router” has a one input port from which the packet enters. It has three
output ports where the packet is driven out. Packet contains 3 parts. They are Header, data and frame
check sequence. Packet width is 8 bits and the length of the packet can be between 1 bytes to 63 bytes.
Packet header contains three fields DA and length. Destination address (DA) of the packet is of 8 bits.
The switch drives the packet to respective ports based on this destination address of the packets. Each
output port has 8-bit unique port address. If the destination address of the packet matches the port address,
then switch drives the packet to the output port, Length of the data is of 8 bits and from 0 to 63. Length is
measured in terms of bytes.
Data should be in terms of bytes and can take anything. Frame check sequence contains the security check
of the packet. It is calculated over the header and data. The communication on network on chip is carried
out by means of router, so for implementing better NOC , the router should
be efficiently design. This router supports four parallel connections at the same time. It uses store and
forward type of flow control and FSM Controller deterministic routing which improves the performance
of router. The switching mechanism used here is packet switching which is generally used on network on
chip. In packet switching the data the data transfers in the form of packets between cooperating routers
and independent routing decision is taken. The store and forward flow mechanism is best because it does
not reserve channels and thus does not lead to idle physical channels. The arbiter is of rotating priority
scheme so that every channel once get chance to transfer its data. In this router both input and output
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 172
buffering is used so that congestion can be avoided at both sides. Figure 1- Block Diagram Of Four Port
Router
III. FEATURES
Full duplex synchronous serial data transfer
Variable length of transfer word up to 64 bytes.
HEADER is the first data transfer.
Rx and Tx on both rising or falling edge of serial clock independently
3 receivers select lines
Fully static synchronous design with one clock domain
Technology independent
Fully synthesizable
ROUTER is a Synchronous protocol.
The clock signal is provided by the master to provide synchronization. The clock signal controls when
data can change and when it is valid for reading. Since ROUTER is synchronous, it has a clock pulse
along with the data. RS-232 and other asynchronous protocols do not use a clock pulse, but the data must
be timed very accurately. Since ROUTER has a clock signal, the clock can vary without disrupting the
data. The data rate will simply change along with the changes in the clock rate. As compared with its
counterpart I2C, ROUTER is more suited for data stream applications. Communication between IP’s,
OPERATION:
The Four Router Design is done by using of the three blocks .the blocks are 8-Bit Register, Router
controller and output block. The router controller is design by using FSM design and the output block
consists of three fifo’s combined together the fifo’s are store packet of data and when you want to data
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 173
that time the data read from the FIFO’s. In this router design has three outputs that is 8-Bit size and one
8_bit data port it using to drive the data into router we are using the global clock and reset signals, and the
err signal and suspended data signals are output’s of the router .the FSM controller gives the err and
suspended_data_in signals .this functions are discussed clearly in below FSM description. The ROUTER
can operate with a single master device and with one or more
slave devices. If a single slave device is used, the RE pin may be fixed to logic low if the slave permits it.
Some slaves require the falling edge (high→low transition) of the slave select to initiate an action such as
the mobile operators, which starts conversion on said transition. With multiple slave devices, an
independent RE signal is required from the master for each slave device.
Fig 2: Simulation of Router;
IV. APPLICATIONS
When multiple routers are used in interconnected networks, the routers exchange information about
destination addresses, using a dynamic routing protocol. Each router builds up a table listing the preferred
routes between any two systems on the interconnected networks. A router has interfaces for different
physical types of network connections, (such as copper cables, fiber optic, or wireless transmission). It
also contains firmware for different networking protocol standards. Each network interface uses this
specialized computer software to enable data packets to be forwarded from one protocol transmission
system to another. Routers may also be used to connect two or more logical groups of computer devices
known as subnets, each with a different sub-network address. The subnets addresses recorded in the router
do not necessarily map directly to the physical interface connections.
V. TOOLS AND METHODOLOGIES
HDL LANGUAGE : VHDL
SIMULATION TOOL : XILINX ISE
SIMULATOR
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 174
SYNTHESIS TOOL : XILINX 9.1i FPGA : SPARTAN 3E
Verification Methodology : Constrained
Random Coverage Driven verification
Assertion Based Verification.
EDA Tools : Questa - A verification Platform from Mentor Graphics.
VI. CONCLUSIONS
In this ROUTER project I verified thefunctionality of ROUTER with the latest Verification methodology
i.e., VHDL and observed the code coverage and functional coverage of ROUTER by using cover points,
cross and different test cases(like constrained, weighted and directed test cases). By using these test cases
I improved the functional coverage of ROUTER. In this I used one master and eight slaves to monitor the
ROUTER. Thus the functional coverage of ROUTER was improved.
REFERENCES
[1] VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP Michael K. Papamichael
Computer Science Department Carnegie Mellon University Pittsburgh, PA, USA
[2] A VERIOG-HDL IMPLEMENTATION OF VIRTUAL CHANNELS IN A NETWORK-ON-CHIP ROUTER A
Thesis by SUNGHO PARK Submitted to the Office of Graduate Studies of
Texas A&M University in partial fulfillment of the requirements for the degree of
MASTER OF SCIENCE August 2008
[3] OpenRouter An OpenCOM-based Component Framework for Structuring Software Routers
Author: Kevin Lee BSc (Hons) Supervisor: Dr Geoff Coulson Date: 13th
Sept, 2002
[4]“D. Chiou, “MEMOCODE 2011 Hardware/Software CoDesign Contest”,
https://ramp.ece.utexas.edu/redmine/ attachments/ DesignContest.pdf
[5] Bluespec Inc, http://www.bluespec.com
[6] Xilinx, “ML605 Hardware User Guide”, http://www.xilinx.com/support/documentation/boards and
kits/ug534.pdf
[7] Xilinx, “LogiCORE IP Processor Local Bus (PLB) v4.6”,
http://www.xilinx.com/support/documentation/ip documentation/plb v46.pdf
[8] D.S. Alexander et al. Active Network Encapsulation Protocol (ANEP). Internet draft, IETF, July
1997. Work in progress.
International Journal of Modern Trends in Engineering and Research (IJMTER)
Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161
@IJMTER-2014, All rights Reserved 175
[9] D.S. Alexander, K.G. Anagnostakis, W.A. Arbaugh, A.D. Keromytis, and J.M. Smith. The Price of
Safety in an Active Network. In Proceedings of ACM SIGCOMM, 1999.
[10] D. Alexander, W. Arbaugh, M. Hicks, P. Kakkar, A. Keromytis, J. Moore, C. Gunder, S. Nettles, and
J.M. Smith. The switchware active network architecture. In Proceedings of IEEE Network, May/June
1998.
[11] Baker F., “Requirements for IP Version 4 Routers: RFC 1812”, Internet Request for Comments,
June 1995.
[12] Campbell A T., Chou S T., Kounavis M E., Vassilis D S., Vicente J., NetBind: A Binding Tool for
Constructing Data Paths in Network Processor-Based Routers, COMET group, Columbia University and
Intel Corporation
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP
VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP

More Related Content

What's hot (19)

PDF
Serial interface module for ethernet based applications
eSAT Journals
 
PDF
Internal Architecture of Junction Based Router
Editor IJCATR
 
PPTX
Routing Protocols
KhushbirSinghSandhu
 
PPTX
Routing Protocols
Dr.Ashvini Chaudhari Bhongade
 
PPT
Routing
Saima Azam
 
PPT
Dynamic Routing
tmavroidis
 
PPTX
Design and Implementation of Dynamic Routing in Wireless Networks
Satish Reddy
 
PPT
Dynamic Routing All Algorithms, Working And Basics
Harsh Mehta
 
PDF
IP Routing Tutorial
ShortestPathFirst
 
PDF
Hybrid Communication Protocol- UART & SPI
Hardik Manocha
 
PDF
Ccna day4-140715152437-phpapp01
Sachin Morya
 
PPT
Ccna day4
Sabiulla Barkathullah
 
PPT
Ccna day5
danishrafiq
 
PPT
Ccna day3
danishrafiq
 
PDF
Ccna day5-140715152501-phpapp01
Sachin Morya
 
PDF
Ccna day3-140715152337-phpapp01
Sachin Morya
 
PPT
ConfigureTwo networks principle
DrAlneami
 
PDF
profibus theory solution
Md. Mashiur Rahman
 
PPTX
Ccna(routing &and switching)
Shweta Kumari
 
Serial interface module for ethernet based applications
eSAT Journals
 
Internal Architecture of Junction Based Router
Editor IJCATR
 
Routing Protocols
KhushbirSinghSandhu
 
Routing
Saima Azam
 
Dynamic Routing
tmavroidis
 
Design and Implementation of Dynamic Routing in Wireless Networks
Satish Reddy
 
Dynamic Routing All Algorithms, Working And Basics
Harsh Mehta
 
IP Routing Tutorial
ShortestPathFirst
 
Hybrid Communication Protocol- UART & SPI
Hardik Manocha
 
Ccna day4-140715152437-phpapp01
Sachin Morya
 
Ccna day5
danishrafiq
 
Ccna day3
danishrafiq
 
Ccna day5-140715152501-phpapp01
Sachin Morya
 
Ccna day3-140715152337-phpapp01
Sachin Morya
 
ConfigureTwo networks principle
DrAlneami
 
profibus theory solution
Md. Mashiur Rahman
 
Ccna(routing &and switching)
Shweta Kumari
 

Similar to VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP (20)

PDF
A NOVEL ROBUST ROUTER ARCHITECTURE
IJERA Editor
 
PDF
A high-Speed Communication System is based on the Design of a Bi-NoC Router, ...
DharmaBanothu
 
PDF
42 46
Editor IJARCET
 
PDF
42 46
Editor IJARCET
 
PDF
Exp2
Fatima Hassan
 
PPTX
Introduction to router
Farhan Galib
 
PDF
Router (computing) : Notes
Subhajit Sahu
 
PDF
cisco router tear down (1).pdf
RodDeluhery
 
PDF
Network devices
arpbak
 
DOCX
Cisco router configuration
vin424
 
PPT
Chapter 02 - Wan Router
phanleson
 
PDF
Report on routing interface configuration
DebjyotiSaha9
 
PDF
Clase 4. Routing IP.pdf
FERNANDOBONILLA43
 
PPTX
Presentation CCNA
wisdom PK
 
PPTX
Routers and Routing Configuration
yasir1122
 
PDF
presentation-140514125659-phpapp01.pdf
gebreyesusweldegebri2
 
PDF
Networking Hardware
isma ishak
 
PDF
SURVEY OF ENERGY EFFICIENT HIGH PERFORMANCE LOW POWER ROUTER FOR NETWORK ON CHIP
IJESM JOURNAL
 
PPT
Networking hardware-objectives-identify-major-hardware4986
sherifmeetme
 
PPTX
BASIC OF ROUTERS,ROUTER IOS AND ROUTING PROTOCOLS
amiteshg
 
A NOVEL ROBUST ROUTER ARCHITECTURE
IJERA Editor
 
A high-Speed Communication System is based on the Design of a Bi-NoC Router, ...
DharmaBanothu
 
Introduction to router
Farhan Galib
 
Router (computing) : Notes
Subhajit Sahu
 
cisco router tear down (1).pdf
RodDeluhery
 
Network devices
arpbak
 
Cisco router configuration
vin424
 
Chapter 02 - Wan Router
phanleson
 
Report on routing interface configuration
DebjyotiSaha9
 
Clase 4. Routing IP.pdf
FERNANDOBONILLA43
 
Presentation CCNA
wisdom PK
 
Routers and Routing Configuration
yasir1122
 
presentation-140514125659-phpapp01.pdf
gebreyesusweldegebri2
 
Networking Hardware
isma ishak
 
SURVEY OF ENERGY EFFICIENT HIGH PERFORMANCE LOW POWER ROUTER FOR NETWORK ON CHIP
IJESM JOURNAL
 
Networking hardware-objectives-identify-major-hardware4986
sherifmeetme
 
BASIC OF ROUTERS,ROUTER IOS AND ROUTING PROTOCOLS
amiteshg
 
Ad

More from Editor IJMTER (20)

PDF
A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
Editor IJMTER
 
PDF
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
Editor IJMTER
 
PDF
Analysis of VoIP Traffic in WiMAX Environment
Editor IJMTER
 
PDF
A Hybrid Cloud Approach for Secure Authorized De-Duplication
Editor IJMTER
 
PDF
Aging protocols that could incapacitate the Internet
Editor IJMTER
 
PDF
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
Editor IJMTER
 
PDF
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
Editor IJMTER
 
PDF
Sustainable Construction With Foam Concrete As A Green Green Building Material
Editor IJMTER
 
PDF
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
Editor IJMTER
 
PDF
Textual Data Partitioning with Relationship and Discriminative Analysis
Editor IJMTER
 
PDF
Testing of Matrices Multiplication Methods on Different Processors
Editor IJMTER
 
PDF
Survey on Malware Detection Techniques
Editor IJMTER
 
PDF
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
Editor IJMTER
 
PDF
SURVEY OF GLAUCOMA DETECTION METHODS
Editor IJMTER
 
PDF
Survey: Multipath routing for Wireless Sensor Network
Editor IJMTER
 
PDF
Step up DC-DC Impedance source network based PMDC Motor Drive
Editor IJMTER
 
PDF
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
Editor IJMTER
 
PDF
Software Quality Analysis Using Mutation Testing Scheme
Editor IJMTER
 
PDF
Software Defect Prediction Using Local and Global Analysis
Editor IJMTER
 
PDF
Software Cost Estimation Using Clustering and Ranking Scheme
Editor IJMTER
 
A NEW DATA ENCODER AND DECODER SCHEME FOR NETWORK ON CHIP
Editor IJMTER
 
A RESEARCH - DEVELOP AN EFFICIENT ALGORITHM TO RECOGNIZE, SEPARATE AND COUNT ...
Editor IJMTER
 
Analysis of VoIP Traffic in WiMAX Environment
Editor IJMTER
 
A Hybrid Cloud Approach for Secure Authorized De-Duplication
Editor IJMTER
 
Aging protocols that could incapacitate the Internet
Editor IJMTER
 
A Cloud Computing design with Wireless Sensor Networks For Agricultural Appli...
Editor IJMTER
 
A CAR POOLING MODEL WITH CMGV AND CMGNV STOCHASTIC VEHICLE TRAVEL TIMES
Editor IJMTER
 
Sustainable Construction With Foam Concrete As A Green Green Building Material
Editor IJMTER
 
USE OF ICT IN EDUCATION ONLINE COMPUTER BASED TEST
Editor IJMTER
 
Textual Data Partitioning with Relationship and Discriminative Analysis
Editor IJMTER
 
Testing of Matrices Multiplication Methods on Different Processors
Editor IJMTER
 
Survey on Malware Detection Techniques
Editor IJMTER
 
SURVEY OF TRUST BASED BLUETOOTH AUTHENTICATION FOR MOBILE DEVICE
Editor IJMTER
 
SURVEY OF GLAUCOMA DETECTION METHODS
Editor IJMTER
 
Survey: Multipath routing for Wireless Sensor Network
Editor IJMTER
 
Step up DC-DC Impedance source network based PMDC Motor Drive
Editor IJMTER
 
SPIRITUAL PERSPECTIVE OF AUROBINDO GHOSH’S PHILOSOPHY IN TODAY’S EDUCATION
Editor IJMTER
 
Software Quality Analysis Using Mutation Testing Scheme
Editor IJMTER
 
Software Defect Prediction Using Local and Global Analysis
Editor IJMTER
 
Software Cost Estimation Using Clustering and Ranking Scheme
Editor IJMTER
 
Ad

Recently uploaded (20)

PDF
Design Thinking basics for Engineers.pdf
CMR University
 
PPTX
Thermal runway and thermal stability.pptx
godow93766
 
PPTX
Day2 B2 Best.pptx
helenjenefa1
 
DOCX
CS-802 (A) BDH Lab manual IPS Academy Indore
thegodhimself05
 
PPTX
Element 7. CHEMICAL AND BIOLOGICAL AGENT.pptx
merrandomohandas
 
PPTX
Arduino Based Gas Leakage Detector Project
CircuitDigest
 
PPTX
Hashing Introduction , hash functions and techniques
sailajam21
 
PPTX
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
PDF
MAD Unit - 1 Introduction of Android IT Department
JappanMavani
 
PDF
MAD Unit - 2 Activity and Fragment Management in Android (Diploma IT)
JappanMavani
 
PDF
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
PDF
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
PDF
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
PPTX
UNIT DAA PPT cover all topics 2021 regulation
archu26
 
PPTX
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
PDF
Reasons for the succes of MENARD PRESSUREMETER.pdf
majdiamz
 
PPTX
Introduction to Neural Networks and Perceptron Learning Algorithm.pptx
Kayalvizhi A
 
PPTX
Element 11. ELECTRICITY safety and hazards
merrandomohandas
 
PDF
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
PDF
Zilliz Cloud Demo for performance and scale
Zilliz
 
Design Thinking basics for Engineers.pdf
CMR University
 
Thermal runway and thermal stability.pptx
godow93766
 
Day2 B2 Best.pptx
helenjenefa1
 
CS-802 (A) BDH Lab manual IPS Academy Indore
thegodhimself05
 
Element 7. CHEMICAL AND BIOLOGICAL AGENT.pptx
merrandomohandas
 
Arduino Based Gas Leakage Detector Project
CircuitDigest
 
Hashing Introduction , hash functions and techniques
sailajam21
 
Lecture 1 Shell and Tube Heat exchanger-1.pptx
mailforillegalwork
 
MAD Unit - 1 Introduction of Android IT Department
JappanMavani
 
MAD Unit - 2 Activity and Fragment Management in Android (Diploma IT)
JappanMavani
 
Pressure Measurement training for engineers and Technicians
AIESOLUTIONS
 
Ethics and Trustworthy AI in Healthcare – Governing Sensitive Data, Profiling...
AlqualsaDIResearchGr
 
Introduction to Productivity and Quality
মোঃ ফুরকান উদ্দিন জুয়েল
 
UNIT DAA PPT cover all topics 2021 regulation
archu26
 
265587293-NFPA 101 Life safety code-PPT-1.pptx
chandermwason
 
Reasons for the succes of MENARD PRESSUREMETER.pdf
majdiamz
 
Introduction to Neural Networks and Perceptron Learning Algorithm.pptx
Kayalvizhi A
 
Element 11. ELECTRICITY safety and hazards
merrandomohandas
 
PORTFOLIO Golam Kibria Khan — architect with a passion for thoughtful design...
MasumKhan59
 
Zilliz Cloud Demo for performance and scale
Zilliz
 

VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP

  • 1. Scientific Journal Impact Factor (SJIF): 1.7 International Journal of Modern Trends in Engineering and Research www.ijmter.com @IJMTER-2014, All rights Reserved 170 e-ISSN: 2349-9745 p-ISSN: 2393-8161 VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP Kadgonda A Kupade1 1 SIT college of Engineering Yadrav-Ichalkaranji, Maharashtra, India (ETC Dept) Abstract - The focus of this Paper is the actual implementation of Network Router and verifies the functionality of the four port router for network on chip using the latest verification methodologies, Hardware Verification Languages and EDA tools and qualify the IP for synthesis and implementation. This Router design contains three output ports and one input port, it is packet based Protocol. This Design consists Registers and FIFO. For larger networks, where a direct-mapped approach is not feasible due to FPGA resource limitations, a virtualized time multiplexed approach was used. Compared to the provided software reference implementation, our direct-mapped approach achieves three orders of magnitude speedup, while our virtualized time multiplexed approach achieves one to two orders of magnitude speedup, depending on the network and router configuration. I. INTRODUCTION 90% of ASIC repines are due to functional bugs. As the functional verification decides the quality of the silicon, we spend 60% of the design cycle time only for the verification/simulation. In order to avoid the delay and meet the TTM, we use the latest verification methodologies and technologies and accelerate the verification process. This project helps one to understand the complete functional verification process of complex ASICs an SoC’s and it gives opportunity to try the latest verification methodologies, programming concepts like Object Oriented Programming of Hardware Verification Languages and sophisticated EDA tools, for the high quality verification. Why Would I Need a Router? For most home users, they may want to set-up a LAN (local Area Network) or WLAN (wireless LAN) and connect all computers to the Internet without having to pay a full broadband subscription service to their ISP for each computer on the network. In many instances, an ISP will allow you to use a router and connect multiple computers to a single Internet connection and pay a nominal fee for each additional computer sharing the connection. This is when home users will want to look at smaller routers, often called broadband routers that enable two or more computers to share an Internet connection. Within a business or organization, you may need to connect multiple computers to the Internet, but also want to connect multiple private networks Not all routers are created equal since their job will differ slightly from network to network. Additionally, you may look at a piece of hardware and not even realize it is a router.
  • 2. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 171 What defines a router is not its shape, color, size or manufacturer, but its job function of routing data packets between computers. A cable modem which routes data between your PC and your ISP can be considered a router. In its most basic form, a router could simply be one of two computers running the Windows 98 (or higher) operating system connected together using ICS (Internet Connection Sharing). In this scenario, the computer that is connected to the Internet is acting as the router for the second computer to obtain its Internet connection. Going a step up from ICS, we have a category of hardware routers that are used to perform the same basic task as ICS, albeit with more features and functions. Often called broadband or Internet connection sharing routers, these routers allow you to share one Internet connection ple computers. Broadband or ICS routers will look a bit different depending on the manufacturer or brand, but wired routers are generally a small box-shaped hardware device with ports on the front or back into which you plug each computer, along with a port to plug in your broadband modem. These connection ports allow the router to do its job of routing the data packets between each of the computers and the data going to and from the Internet. Depending on the type of modem and Internet connection you have, you could also choose a router with phone or fax machine ports. A wired Ethernet broadband router will typically have a built-in Ethernet switch to allow for expansion. These routers also support NAT (network address translation), which allows all of your computers to share a single IP address on the Internet. Internet connection sharing routers will also provide users with much needed features such as an SPI firewall or serve as a DHCP Server. II. ROUTER DESIGN PRINCIPLES Given the strict contest deadline and the short implementation window we adopted a set of design principles to spend the available time as efficiently as possible. This document provides pacifications for the Router is a packet based protocol. Router drives the incoming packet which comes from the input port to output ports based on the address contained in the packet. The router is a” Network Router” has a one input port from which the packet enters. It has three output ports where the packet is driven out. Packet contains 3 parts. They are Header, data and frame check sequence. Packet width is 8 bits and the length of the packet can be between 1 bytes to 63 bytes. Packet header contains three fields DA and length. Destination address (DA) of the packet is of 8 bits. The switch drives the packet to respective ports based on this destination address of the packets. Each output port has 8-bit unique port address. If the destination address of the packet matches the port address, then switch drives the packet to the output port, Length of the data is of 8 bits and from 0 to 63. Length is measured in terms of bytes. Data should be in terms of bytes and can take anything. Frame check sequence contains the security check of the packet. It is calculated over the header and data. The communication on network on chip is carried out by means of router, so for implementing better NOC , the router should be efficiently design. This router supports four parallel connections at the same time. It uses store and forward type of flow control and FSM Controller deterministic routing which improves the performance of router. The switching mechanism used here is packet switching which is generally used on network on chip. In packet switching the data the data transfers in the form of packets between cooperating routers and independent routing decision is taken. The store and forward flow mechanism is best because it does not reserve channels and thus does not lead to idle physical channels. The arbiter is of rotating priority scheme so that every channel once get chance to transfer its data. In this router both input and output
  • 3. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 172 buffering is used so that congestion can be avoided at both sides. Figure 1- Block Diagram Of Four Port Router III. FEATURES Full duplex synchronous serial data transfer Variable length of transfer word up to 64 bytes. HEADER is the first data transfer. Rx and Tx on both rising or falling edge of serial clock independently 3 receivers select lines Fully static synchronous design with one clock domain Technology independent Fully synthesizable ROUTER is a Synchronous protocol. The clock signal is provided by the master to provide synchronization. The clock signal controls when data can change and when it is valid for reading. Since ROUTER is synchronous, it has a clock pulse along with the data. RS-232 and other asynchronous protocols do not use a clock pulse, but the data must be timed very accurately. Since ROUTER has a clock signal, the clock can vary without disrupting the data. The data rate will simply change along with the changes in the clock rate. As compared with its counterpart I2C, ROUTER is more suited for data stream applications. Communication between IP’s, OPERATION: The Four Router Design is done by using of the three blocks .the blocks are 8-Bit Register, Router controller and output block. The router controller is design by using FSM design and the output block consists of three fifo’s combined together the fifo’s are store packet of data and when you want to data
  • 4. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 173 that time the data read from the FIFO’s. In this router design has three outputs that is 8-Bit size and one 8_bit data port it using to drive the data into router we are using the global clock and reset signals, and the err signal and suspended data signals are output’s of the router .the FSM controller gives the err and suspended_data_in signals .this functions are discussed clearly in below FSM description. The ROUTER can operate with a single master device and with one or more slave devices. If a single slave device is used, the RE pin may be fixed to logic low if the slave permits it. Some slaves require the falling edge (high→low transition) of the slave select to initiate an action such as the mobile operators, which starts conversion on said transition. With multiple slave devices, an independent RE signal is required from the master for each slave device. Fig 2: Simulation of Router; IV. APPLICATIONS When multiple routers are used in interconnected networks, the routers exchange information about destination addresses, using a dynamic routing protocol. Each router builds up a table listing the preferred routes between any two systems on the interconnected networks. A router has interfaces for different physical types of network connections, (such as copper cables, fiber optic, or wireless transmission). It also contains firmware for different networking protocol standards. Each network interface uses this specialized computer software to enable data packets to be forwarded from one protocol transmission system to another. Routers may also be used to connect two or more logical groups of computer devices known as subnets, each with a different sub-network address. The subnets addresses recorded in the router do not necessarily map directly to the physical interface connections. V. TOOLS AND METHODOLOGIES HDL LANGUAGE : VHDL SIMULATION TOOL : XILINX ISE SIMULATOR
  • 5. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 174 SYNTHESIS TOOL : XILINX 9.1i FPGA : SPARTAN 3E Verification Methodology : Constrained Random Coverage Driven verification Assertion Based Verification. EDA Tools : Questa - A verification Platform from Mentor Graphics. VI. CONCLUSIONS In this ROUTER project I verified thefunctionality of ROUTER with the latest Verification methodology i.e., VHDL and observed the code coverage and functional coverage of ROUTER by using cover points, cross and different test cases(like constrained, weighted and directed test cases). By using these test cases I improved the functional coverage of ROUTER. In this I used one master and eight slaves to monitor the ROUTER. Thus the functional coverage of ROUTER was improved. REFERENCES [1] VERIFICATION OF FOUR PORT ROUTER FOR NETWORK ON CHIP Michael K. Papamichael Computer Science Department Carnegie Mellon University Pittsburgh, PA, USA [2] A VERIOG-HDL IMPLEMENTATION OF VIRTUAL CHANNELS IN A NETWORK-ON-CHIP ROUTER A Thesis by SUNGHO PARK Submitted to the Office of Graduate Studies of Texas A&M University in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE August 2008 [3] OpenRouter An OpenCOM-based Component Framework for Structuring Software Routers Author: Kevin Lee BSc (Hons) Supervisor: Dr Geoff Coulson Date: 13th Sept, 2002 [4]“D. Chiou, “MEMOCODE 2011 Hardware/Software CoDesign Contest”, https://ramp.ece.utexas.edu/redmine/ attachments/ DesignContest.pdf [5] Bluespec Inc, http://www.bluespec.com [6] Xilinx, “ML605 Hardware User Guide”, http://www.xilinx.com/support/documentation/boards and kits/ug534.pdf [7] Xilinx, “LogiCORE IP Processor Local Bus (PLB) v4.6”, http://www.xilinx.com/support/documentation/ip documentation/plb v46.pdf [8] D.S. Alexander et al. Active Network Encapsulation Protocol (ANEP). Internet draft, IETF, July 1997. Work in progress.
  • 6. International Journal of Modern Trends in Engineering and Research (IJMTER) Volume 01, Issue 06, [December - 2014] e-ISSN: 2349-9745, p-ISSN: 2393-8161 @IJMTER-2014, All rights Reserved 175 [9] D.S. Alexander, K.G. Anagnostakis, W.A. Arbaugh, A.D. Keromytis, and J.M. Smith. The Price of Safety in an Active Network. In Proceedings of ACM SIGCOMM, 1999. [10] D. Alexander, W. Arbaugh, M. Hicks, P. Kakkar, A. Keromytis, J. Moore, C. Gunder, S. Nettles, and J.M. Smith. The switchware active network architecture. In Proceedings of IEEE Network, May/June 1998. [11] Baker F., “Requirements for IP Version 4 Routers: RFC 1812”, Internet Request for Comments, June 1995. [12] Campbell A T., Chou S T., Kounavis M E., Vassilis D S., Vicente J., NetBind: A Binding Tool for Constructing Data Paths in Network Processor-Based Routers, COMET group, Columbia University and Intel Corporation