SlideShare a Scribd company logo
1 of 4
Download to read offline
International Journal of Electrical and Computing Engineering (IJECE)
Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218
1
Arshiya Hesarur1
1
M.Tech (Final Year)
VLSI Design and Testing
Dept. of Electronics and
Communication Engineering
BVB College of Engineering
and Technology
Hubli, Karnataka India
1
arshiyahesarur7@gmail.com
Deeksha Dev2
2
B.Tech (Final Year)
Dept. of Electronics and
Communication Engineering
DAV Institute of Engineering
and Technology, Jalandhar,
Punjab, India
2
deekshadev11@gmail.com
T.Nagasundaram3
ASIC Design Verification
Engineer
CVC Pvt. Ltd
Bangalore, Karnataka, India
3
naga@cvcblr.com
Uma Mudenagudi4
4
Head of Electronics and
Communication Department
BVB College of Engineering
and Technology
Hubli, Karnataka, India
4
uma@bvb.edu
Abstract— Today’s all the computing technologies originated
from the foundation laid by Moore’s Law according to which
number of transistors on a single integrated chip doubles every
year and this has ledto increase in design complexity. Keeping in
mind the demand of high manufacturing yield and reduced time
to market window, the SoC design and verification engineers
have come up with strategies likeDesign Re-use and Automation
of Verification. Automation of IP integration and verification
process requires a standard vendor-neutral and language
independent mechanism for representing meta-data of system-
on-chip (SoC) design which resulted in introduction of IP-XACT
standard. This paper is about an automation tool developed to
generate Register Abstraction Layer (RAL) by using register
description of IP cores in IP-XACT schema format. This
generator is designed with no prior knowledge of System
Verilog/UVM. The RAL generated is then integrated in UVM
verification environment to verify variety of DUTs.
Keywords— UVM (Universal Verification Methodology), XML
(Extensible Markup Language), IP-XACT, RAL(Register
Abstraction Layer), XML Schema, EDA (Electronic Design
Automation), DRC (Design Rule Check), DUT (Device Under Test)
I. INTRODUCTION
The colossal scale of transistor on hardware chips has
reached to a point where it is extremely difficult to design a
complex system from scratch. SoC challenges and how to
counter them is described in detail in [2]. Looking at the
Design Cycle of an IC the most time consuming phase is the
Verification phase. Verification of an IC consumes around 70
– 80% of the design cycle time and effort. Due to this fact
industries have come up with solutions like reusing
intellectual properties (IPs). Every DUT has registers and
memory as their subcomponents as shown in figure 1 which
are foremost to be controlled, covered and checked during
verification. SoC verification has various approaches to verify
DUTs one of which is Universal Verification Methodology
(UVM).
This paper provides an overview of UVM, XML, IP-
XACT Schema and the description of the designed RAL
generator.
A. Moving to the Accelera Standard Verification
Methodology – UVM:
UVM is a standard verification methodology which was
created to automate verification of IC designs. It is an open
source standard developed and maintained by Accellera which
is adopted by multiple EDA Industries such as Cadence
Design Systems, Mentor Graphics, NXP Semiconductors,
STMicroelectronics, Texas Instruments, Freescale
Semiconductors, Synopsys etc. By creating this standard,
components become portable fromone project to another, thus
serves reusability concept by which one can target large
designs, IP’s and SoCs. It is a combination of verification
guidelines and Application Programming Interface which
ultimately serve to reach the automation goal in verification
field.
UVM provides mapping of register content of DUT and a
layer for accessing register and memory locations within DUT
which is called as Register Abstraction layer (RAL). UVM
requires RAL to generate register models and register
transactions which are then integrated in UVM verification
environment. It can be amended as many times as one wants
in one’s project without intervening the existing verification
environment or test. Figure 2 shows the register model [4]. R1,
R2…Rn are the registers containing their respective fields in a
DUT which is to be verified [4].
A. Performance:
It is easy to write register classes manually for smaller
designs. But writing register classes for large complexdesigns
manually is hard, time consuming and error prone. This
designed generator will automatically generate the register
classes for bigger and complex designs. This automates the
verification phase to some extent and much of the time and
effort is saved.
II. FIRST STEP TO AUTOMATION – IP_XACT
Initially verification engineers were facing problems due to
dependency of design flow on different tools. Also writing a
code of more than thousands line is a tedious job. Thus a
Design of an IP-XACT to UVM RAL Generator
1
Arshiya Hesarur, 2
Deeksha Dev, 3
T.Nagasundaram, 4
Uma Mudenagudi
1
M.Tech (Final year), VLSI Design and Testing, ECE, BVB College of Engineering and Technology, Hubli, INDIA
2
B.Tech (Final year), ECE, DAV Institute of Engineering and Technology, Jalandhar, INDIA
3
ASIC Design Verification Engineer, CVC Pvt. Ltd, Bangalore, INDIA
4
Head of Department, ECE, BVB College of Engineering and Technology, Hubli, INDIA
International Journal of Electrical and Computing Engineering (IJECE)
Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218
2
standard was required which resulted in formation of IP-
XACT XML Schema.
Fig. 1, DUT containing sub-components
Fig. 2, Register Model view
A. XML- eXtensible Markup Language
XML is a language which is capable of encoding the
documents in both human readable and machine readable
format. Hence it is a language which is both software and
hardware independent. It is an open standard developed by
W3C. XML simply carries information and gives full
flexibility to users to create their own XML tags. Therefore
XML is nothing but information wrapped in tags. An XML
tag is the building block of XML document. It identifies data
and is used to store data in an organized manner. One of the
most important feature of XML is that it is “Extensible” which
means XML allows us to create our own tags (self-descriptive)
or languages (Ex: IP-XACT) that suits our description.
B. XML Schema:
An XML Schema is type of XML Document with certain
rules and regulations imposed on the elements of an XML
document. The XML document is considered as a schema
only when it meets the rules and regulations defined by that
schema. Thus XML Schema provides a definite structure to
the XML document. XML Schema is also a recommendation
of World Wide Web Consortium (W3C) [5].
C. IP-XACT:
IP-XACT is IEEE-1685-2009 standard which sets rules for
representing electronic components and their designs to
provide direct access to data regardless of the design language
or tools. It was first released by SPIRIT Consortium which
helped industry to resolve the problem of integration of IPs
from multiple vendors in design flows. Mentor graphics was
the first contributor to IP-XACT; other contributors are ARM,
Cadence, NXP, LSI, ST, Synopsys Texas Instruments and
nine others [6]. An IP-XACT view of an IP is documented
using standard meta-data. The meta-data includes components
and details of components such as address maps, registers and
description of fields. Meta-data documents the characteristics
of Intellectual Property (IP) which are required for the
automation of configuration and integration of IP blocks. IP-
XACT also defines an Application Programming Interface
(API) to make this meta-data directly accessible to automation
tools. Thus the main purpose of this standard is to provide a
definite structure for Packaging, Integrating and Re-using IP
within tool flows. In order to get access to the elements and
text in an IP-XACT file, XML Parser is needed. An XML
Parser converts any XML document to an XML DOM object.
Detailed description IP-XACT standard is given in [1].
D. XML DOM Object:
XML DOM (Document Object Model) is a standard for
accessing and manipulating XML documents. It views each of
the XML document as a tree structure with root element,
parent elements, child elements and siblings. XML DOM
considers the elements, text information and attributes in an
XML document as nodes. Using XML Parser one can access
the nodes of an XML document. Figure 3 illustrates an
example of XML document and its DOM object.
International Journal of Electrical and Computing Engineering (IJECE)
Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218
3
Fig. 3, DOM tree structure of an IP-XACT document
III. GENERATION OF A UVM RAL:
An automation tool that generates RAL from IP-XACT is
designed. There are two files, one is the input file which
is IP-XACT, containing register description of an IP core
and the other one is RAL obtained as an output of
generator. The source code for generator is in C language
which reads XML Schema as input, parses it and then
develops a new file called as “RAL.sv” as its output.
Figure 4 is the block diagram of IP-XACT to RAL
generator. Sequential steps followed to generate a RAL
are given below:
1. IP-XACT view of an IP Core is generated (with the
help of IP-specification to IPXACT tool). Additional
fields access type, randomization and volatile are
added to the IP-XACT document. This makes the RAL
to be generated more accurate.
2. The IP-XACT file is then parsed by XML Parser
defined in the generator code. Thus each node in the
IP-XACT is accessed and manipulated using XML
parser file.
3. After the generator code runs successfully, a UVM
RAL is generated in a file named “RAL.sv”. Figure 5
illustrates the IP-XACT file and UVM RAL of an SPI
(Serial Peripheral Interface) core [3].
Fig. 4, Block Diagram of Automation Flow
In the output RAL, initially basic libraries were declared
and then class for each register is defined. Register class
contains description of configurations of each field a register
has in it. After defining all the register classes one main
register block is defined, this contains instances of each
register class with its configuration description in it.
Following is the sample showing IP-XACT to RAL
generation, having register class named as
“SPI_DIVIDER_reg” containing description of its field named
as “RSV_DD”.
International Journal of Electrical and Computing Engineering (IJECE)
Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218
4
Fig. 5, Sample of an IP-XACT file and generated RAL of SPI core
IV. CONCLUSION
Standardization is quite essential in order to increase
quality of SoC designs and produce SoC systems in large
quantity in small Time To Market window. In UVM, RAL is
meant to describe register model of IP’s which are to be
verified. The key is to generate RAL automatically to deliver
best timing and quality results. Thus this paper describes an
automation tool which generates RAL by taking input as IP-
XACT, which is a standard known for its reusability property
plus vendor and language neutrality.
V. ACKNOWLEDGMENT
The authors (author1
and author2
) would like to thank CVC
Pvt. Ltd for giving an opportunity to work as an Intern in the
company and providing with the necessary tools to develop
this project. The authors would also like to thank the
management and team of CVC for their guidance and support.
REFERENCES
[1] IEEE Standard for IP-XACT, Standard Structure for Packaging,
Integrating, and Reusing IP within Tool Flows," IEEE Standard
1685-2009, vol., no., pp.1, 374, Feb. 18 2010.
[2] Anil Deshpande, “Verification of IP Core Based SoC's,”
Conexant Systems Inc. Hyderabad, India.
[3] Jain, A.; Gupta, R., "Scaling the UVM_REG Model towards
Automation and Simplicity of Use," VLSI Design (VLSID), 2015
28th International Conference on, vol., no., pp.164, 169, 3-7 Jan.
2015.
[4] Mark Litterick, Marcus Harnisch, “Advanced UVM Register
Modeling There’s More Than One Way to Skin A Reg,” Verilab
GmbH, Munich, Germany.
[5] Zisman, A., "An overview of XML," Computing & Control
Engineering Journal, vol.11, no.4, pp.165, 16, Aug. 2000.
[6] By Marc van Hintum, NXP Semiconductors, The Netherlands
and Paul Williams, “The Value of High Quality IP-XACT
XML,” Mentor Graphics Consulting, Europe.

More Related Content

What's hot

DDS vs DDS4CCM
DDS vs DDS4CCMDDS vs DDS4CCM
DDS vs DDS4CCMRemedy IT
 
Tcp performance Final Report
Tcp performance Final Report Tcp performance Final Report
Tcp performance Final Report ambitlick
 
Distributed Application Development (Introduction)
Distributed Application Development (Introduction)Distributed Application Development (Introduction)
Distributed Application Development (Introduction)Dudy Ali
 
Research Method to Optimize Logger for a Telecom Application Running on Embed...
Research Method to Optimize Logger for a Telecom Application Running on Embed...Research Method to Optimize Logger for a Telecom Application Running on Embed...
Research Method to Optimize Logger for a Telecom Application Running on Embed...IJERD Editor
 
[2015/2016] AADL (Architecture Analysis and Design Language)
[2015/2016] AADL (Architecture Analysis and Design Language)[2015/2016] AADL (Architecture Analysis and Design Language)
[2015/2016] AADL (Architecture Analysis and Design Language)Ivano Malavolta
 
Rhapsody Software
Rhapsody SoftwareRhapsody Software
Rhapsody SoftwareBill Duncan
 
Cis 175 Enthusiastic Study / snaptutorial.com
Cis 175 Enthusiastic Study / snaptutorial.comCis 175 Enthusiastic Study / snaptutorial.com
Cis 175 Enthusiastic Study / snaptutorial.comGeorgeDixon96
 
Bird binary interpretation using runtime disassembly
Bird binary interpretation using runtime disassemblyBird binary interpretation using runtime disassembly
Bird binary interpretation using runtime disassemblyUltraUploader
 
Object and component based middleware for distributed system development
Object and component based middleware for distributed system developmentObject and component based middleware for distributed system development
Object and component based middleware for distributed system developmentektabhalwara
 
A generic log analyzer for auto recovery of container orchestration system
A generic log analyzer for auto recovery of container orchestration systemA generic log analyzer for auto recovery of container orchestration system
A generic log analyzer for auto recovery of container orchestration systemConference Papers
 

What's hot (19)

Prasad_CTP
Prasad_CTPPrasad_CTP
Prasad_CTP
 
Altera up1
Altera up1Altera up1
Altera up1
 
Hb3412981311
Hb3412981311Hb3412981311
Hb3412981311
 
DDS vs DDS4CCM
DDS vs DDS4CCMDDS vs DDS4CCM
DDS vs DDS4CCM
 
Tcp performance Final Report
Tcp performance Final Report Tcp performance Final Report
Tcp performance Final Report
 
Distributed Application Development (Introduction)
Distributed Application Development (Introduction)Distributed Application Development (Introduction)
Distributed Application Development (Introduction)
 
JITHIN CHANDRAN
JITHIN CHANDRANJITHIN CHANDRAN
JITHIN CHANDRAN
 
Research Method to Optimize Logger for a Telecom Application Running on Embed...
Research Method to Optimize Logger for a Telecom Application Running on Embed...Research Method to Optimize Logger for a Telecom Application Running on Embed...
Research Method to Optimize Logger for a Telecom Application Running on Embed...
 
Parimal Resume
Parimal ResumeParimal Resume
Parimal Resume
 
Prakash sahoo
Prakash sahooPrakash sahoo
Prakash sahoo
 
[2015/2016] AADL (Architecture Analysis and Design Language)
[2015/2016] AADL (Architecture Analysis and Design Language)[2015/2016] AADL (Architecture Analysis and Design Language)
[2015/2016] AADL (Architecture Analysis and Design Language)
 
DhevendranResume
DhevendranResumeDhevendranResume
DhevendranResume
 
Rhapsody Software
Rhapsody SoftwareRhapsody Software
Rhapsody Software
 
Cis 175 Enthusiastic Study / snaptutorial.com
Cis 175 Enthusiastic Study / snaptutorial.comCis 175 Enthusiastic Study / snaptutorial.com
Cis 175 Enthusiastic Study / snaptutorial.com
 
Bird binary interpretation using runtime disassembly
Bird binary interpretation using runtime disassemblyBird binary interpretation using runtime disassembly
Bird binary interpretation using runtime disassembly
 
Muruganandam_7years
Muruganandam_7yearsMuruganandam_7years
Muruganandam_7years
 
Object and component based middleware for distributed system development
Object and component based middleware for distributed system developmentObject and component based middleware for distributed system development
Object and component based middleware for distributed system development
 
A generic log analyzer for auto recovery of container orchestration system
A generic log analyzer for auto recovery of container orchestration systemA generic log analyzer for auto recovery of container orchestration system
A generic log analyzer for auto recovery of container orchestration system
 
J044084349
J044084349J044084349
J044084349
 

Viewers also liked

10 Celebrities With Caribbean Roots
10 Celebrities With Caribbean Roots10 Celebrities With Caribbean Roots
10 Celebrities With Caribbean RootsCarib Social WIRE
 
foreveryoungasia
foreveryoungasiaforeveryoungasia
foreveryoungasiaRatha Eagle
 
Iisrt sibi kumar (mech)
Iisrt sibi kumar (mech)Iisrt sibi kumar (mech)
Iisrt sibi kumar (mech)IISRT
 
Esercizio 3 impress presentazione biolchi lucrezia
Esercizio 3 impress presentazione biolchi lucreziaEsercizio 3 impress presentazione biolchi lucrezia
Esercizio 3 impress presentazione biolchi lucreziaLucreziaBiolchi
 
Iisrt seedha devi (networks)
Iisrt seedha devi (networks)Iisrt seedha devi (networks)
Iisrt seedha devi (networks)IISRT
 
Cara Bermain Forex | Cara Menggunakan Bollinger Bands
Cara Bermain Forex | Cara Menggunakan Bollinger BandsCara Bermain Forex | Cara Menggunakan Bollinger Bands
Cara Bermain Forex | Cara Menggunakan Bollinger BandsCara Bermain Forex
 
Finalized readings (mcfl rig).
Finalized readings (mcfl rig).Finalized readings (mcfl rig).
Finalized readings (mcfl rig).Dharmaraj Daddikar
 
Features of a wireless network
Features of a wireless networkFeatures of a wireless network
Features of a wireless networkbhuvi2208
 
неделя правовых знаний в ГБОУ Школа 1368
неделя правовых знаний в ГБОУ Школа 1368неделя правовых знаний в ГБОУ Школа 1368
неделя правовых знаний в ГБОУ Школа 1368Yana Mazurova
 
Indian sarees
Indian sareesIndian sarees
Indian sareessaree123
 
лекция № 2 мышцы гол шеи
лекция № 2 мышцы гол шеилекция № 2 мышцы гол шеи
лекция № 2 мышцы гол шеиlali100226
 
Kids collection In Chennai
Kids collection In ChennaiKids collection In Chennai
Kids collection In Chennaisaree123
 
Communication sur les avantages et inconvénients rencontrés dans les démarche...
Communication sur les avantages et inconvénients rencontrés dans les démarche...Communication sur les avantages et inconvénients rencontrés dans les démarche...
Communication sur les avantages et inconvénients rencontrés dans les démarche...Global Water Initiative - West Africa
 
Fdcl draft day 2014
Fdcl draft day 2014Fdcl draft day 2014
Fdcl draft day 2014bkloster
 
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...Yana Mazurova
 

Viewers also liked (18)

10 Celebrities With Caribbean Roots
10 Celebrities With Caribbean Roots10 Celebrities With Caribbean Roots
10 Celebrities With Caribbean Roots
 
foreveryoungasia
foreveryoungasiaforeveryoungasia
foreveryoungasia
 
Iisrt sibi kumar (mech)
Iisrt sibi kumar (mech)Iisrt sibi kumar (mech)
Iisrt sibi kumar (mech)
 
Esercizio 3 impress presentazione biolchi lucrezia
Esercizio 3 impress presentazione biolchi lucreziaEsercizio 3 impress presentazione biolchi lucrezia
Esercizio 3 impress presentazione biolchi lucrezia
 
Iisrt seedha devi (networks)
Iisrt seedha devi (networks)Iisrt seedha devi (networks)
Iisrt seedha devi (networks)
 
Cara Bermain Forex | Cara Menggunakan Bollinger Bands
Cara Bermain Forex | Cara Menggunakan Bollinger BandsCara Bermain Forex | Cara Menggunakan Bollinger Bands
Cara Bermain Forex | Cara Menggunakan Bollinger Bands
 
Alıştırma
AlıştırmaAlıştırma
Alıştırma
 
Finalized readings (mcfl rig).
Finalized readings (mcfl rig).Finalized readings (mcfl rig).
Finalized readings (mcfl rig).
 
Features of a wireless network
Features of a wireless networkFeatures of a wireless network
Features of a wireless network
 
неделя правовых знаний в ГБОУ Школа 1368
неделя правовых знаний в ГБОУ Школа 1368неделя правовых знаний в ГБОУ Школа 1368
неделя правовых знаний в ГБОУ Школа 1368
 
Indian sarees
Indian sareesIndian sarees
Indian sarees
 
лекция № 2 мышцы гол шеи
лекция № 2 мышцы гол шеилекция № 2 мышцы гол шеи
лекция № 2 мышцы гол шеи
 
Kids collection In Chennai
Kids collection In ChennaiKids collection In Chennai
Kids collection In Chennai
 
Communication sur les avantages et inconvénients rencontrés dans les démarche...
Communication sur les avantages et inconvénients rencontrés dans les démarche...Communication sur les avantages et inconvénients rencontrés dans les démarche...
Communication sur les avantages et inconvénients rencontrés dans les démarche...
 
Industrial Box Shelving
Industrial Box ShelvingIndustrial Box Shelving
Industrial Box Shelving
 
Fdcl draft day 2014
Fdcl draft day 2014Fdcl draft day 2014
Fdcl draft day 2014
 
La sécurisation foncière dans la zone office du Niger
La sécurisation foncière dans la zone office du NigerLa sécurisation foncière dans la zone office du Niger
La sécurisation foncière dans la zone office du Niger
 
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...
Неделя по профилактике употребления алкоголя среди обучающихся в ГБОУ Школа №...
 

Similar to Iisrt arshiya hesarur

RTI-CODES+ISSS-2012-Submission-1
RTI-CODES+ISSS-2012-Submission-1RTI-CODES+ISSS-2012-Submission-1
RTI-CODES+ISSS-2012-Submission-1Serge Amougou
 
Netlist Optimization for CMOS Place and Route in MICROWIND
Netlist Optimization for CMOS Place and Route in MICROWINDNetlist Optimization for CMOS Place and Route in MICROWIND
Netlist Optimization for CMOS Place and Route in MICROWINDIRJET Journal
 
Network Analyzer and Report Generation Tool for NS-2 using TCL Script
Network Analyzer and Report Generation Tool for NS-2 using TCL ScriptNetwork Analyzer and Report Generation Tool for NS-2 using TCL Script
Network Analyzer and Report Generation Tool for NS-2 using TCL ScriptIRJET Journal
 
System on Chip Design and Modelling Dr. David J Greaves
System on Chip Design and Modelling   Dr. David J GreavesSystem on Chip Design and Modelling   Dr. David J Greaves
System on Chip Design and Modelling Dr. David J GreavesSatya Harish
 
Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Editor IJARCET
 
Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Editor IJARCET
 
Qiang Yu Resume
Qiang Yu Resume Qiang Yu Resume
Qiang Yu Resume Qiang Yu
 
Verification Automation Using IPXACT
Verification Automation Using IPXACTVerification Automation Using IPXACT
Verification Automation Using IPXACTDVClub
 
Resume_Appaji
Resume_AppajiResume_Appaji
Resume_AppajiAppaji K
 
Anand_Honeywell_11yrs
Anand_Honeywell_11yrsAnand_Honeywell_11yrs
Anand_Honeywell_11yrsAnand Patil
 
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdf
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdfA NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdf
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdfSaiReddy794166
 
Banking and ATM networking reports
Banking and ATM networking reportsBanking and ATM networking reports
Banking and ATM networking reportsShakib Ansaar
 
IRJET- ALPYNE - A Grid Computing Framework
IRJET- ALPYNE - A Grid Computing FrameworkIRJET- ALPYNE - A Grid Computing Framework
IRJET- ALPYNE - A Grid Computing FrameworkIRJET Journal
 
Performance of State-of-the-Art Cryptography on ARM-based Microprocessors
Performance of State-of-the-Art Cryptography on ARM-based MicroprocessorsPerformance of State-of-the-Art Cryptography on ARM-based Microprocessors
Performance of State-of-the-Art Cryptography on ARM-based MicroprocessorsHannes Tschofenig
 

Similar to Iisrt arshiya hesarur (20)

RTI-CODES+ISSS-2012-Submission-1
RTI-CODES+ISSS-2012-Submission-1RTI-CODES+ISSS-2012-Submission-1
RTI-CODES+ISSS-2012-Submission-1
 
Aw4201337340
Aw4201337340Aw4201337340
Aw4201337340
 
Cisco project ideas
Cisco   project ideasCisco   project ideas
Cisco project ideas
 
Netlist Optimization for CMOS Place and Route in MICROWIND
Netlist Optimization for CMOS Place and Route in MICROWINDNetlist Optimization for CMOS Place and Route in MICROWIND
Netlist Optimization for CMOS Place and Route in MICROWIND
 
Network Analyzer and Report Generation Tool for NS-2 using TCL Script
Network Analyzer and Report Generation Tool for NS-2 using TCL ScriptNetwork Analyzer and Report Generation Tool for NS-2 using TCL Script
Network Analyzer and Report Generation Tool for NS-2 using TCL Script
 
System on Chip Design and Modelling Dr. David J Greaves
System on Chip Design and Modelling   Dr. David J GreavesSystem on Chip Design and Modelling   Dr. David J Greaves
System on Chip Design and Modelling Dr. David J Greaves
 
VLSI
VLSIVLSI
VLSI
 
Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072
 
Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072Volume 2-issue-6-2068-2072
Volume 2-issue-6-2068-2072
 
Qiang Yu Resume
Qiang Yu Resume Qiang Yu Resume
Qiang Yu Resume
 
VLSI
VLSIVLSI
VLSI
 
Verification Automation Using IPXACT
Verification Automation Using IPXACTVerification Automation Using IPXACT
Verification Automation Using IPXACT
 
Ankit sarin
Ankit sarinAnkit sarin
Ankit sarin
 
Resume_Appaji
Resume_AppajiResume_Appaji
Resume_Appaji
 
Anand_Honeywell_11yrs
Anand_Honeywell_11yrsAnand_Honeywell_11yrs
Anand_Honeywell_11yrs
 
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdf
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdfA NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdf
A NETWORK-BASED DAC OPTIMIZATION PROTOTYPE SOFTWARE 2 (1).pdf
 
Banking and ATM networking reports
Banking and ATM networking reportsBanking and ATM networking reports
Banking and ATM networking reports
 
Documentation
DocumentationDocumentation
Documentation
 
IRJET- ALPYNE - A Grid Computing Framework
IRJET- ALPYNE - A Grid Computing FrameworkIRJET- ALPYNE - A Grid Computing Framework
IRJET- ALPYNE - A Grid Computing Framework
 
Performance of State-of-the-Art Cryptography on ARM-based Microprocessors
Performance of State-of-the-Art Cryptography on ARM-based MicroprocessorsPerformance of State-of-the-Art Cryptography on ARM-based Microprocessors
Performance of State-of-the-Art Cryptography on ARM-based Microprocessors
 

More from IISRT

Iisrt z mahantaesh tr
Iisrt z mahantaesh trIisrt z mahantaesh tr
Iisrt z mahantaesh trIISRT
 
Iisrt z abhijit devaraj
Iisrt z abhijit devarajIisrt z abhijit devaraj
Iisrt z abhijit devarajIISRT
 
Iisrt sohan sontakke
Iisrt sohan sontakkeIisrt sohan sontakke
Iisrt sohan sontakkeIISRT
 
Iisrt saravana kumar
Iisrt saravana kumarIisrt saravana kumar
Iisrt saravana kumarIISRT
 
Iisrt karthik subramanian
Iisrt karthik subramanianIisrt karthik subramanian
Iisrt karthik subramanianIISRT
 
Iisrt akshata ht
Iisrt akshata htIisrt akshata ht
Iisrt akshata htIISRT
 
Iisrt komathi krishna (networks)
Iisrt komathi krishna (networks)Iisrt komathi krishna (networks)
Iisrt komathi krishna (networks)IISRT
 
Iisrt divya nagaraj (networks)
Iisrt divya nagaraj (networks)Iisrt divya nagaraj (networks)
Iisrt divya nagaraj (networks)IISRT
 
Iisrt arunkumar b (networks)
Iisrt arunkumar b (networks)Iisrt arunkumar b (networks)
Iisrt arunkumar b (networks)IISRT
 
Iisrt aarthi ravindran (networks)
Iisrt aarthi ravindran (networks)Iisrt aarthi ravindran (networks)
Iisrt aarthi ravindran (networks)IISRT
 
Iisrt vincent raj (mech)
Iisrt vincent raj (mech)Iisrt vincent raj (mech)
Iisrt vincent raj (mech)IISRT
 
Iisrt settu ravichandran (civil)
Iisrt settu ravichandran (civil)Iisrt settu ravichandran (civil)
Iisrt settu ravichandran (civil)IISRT
 
Iisrt prithvi elango (civil)
Iisrt prithvi elango (civil)Iisrt prithvi elango (civil)
Iisrt prithvi elango (civil)IISRT
 
Iisrt khalid ahmed gour (civil)
Iisrt khalid ahmed gour (civil)Iisrt khalid ahmed gour (civil)
Iisrt khalid ahmed gour (civil)IISRT
 
Iisrt siddharth prabhu (electrical)
Iisrt siddharth prabhu (electrical)Iisrt siddharth prabhu (electrical)
Iisrt siddharth prabhu (electrical)IISRT
 
Iisrt shiny navya (electrical)
Iisrt shiny navya (electrical)Iisrt shiny navya (electrical)
Iisrt shiny navya (electrical)IISRT
 
eIisrt arutselvi (electrical)
eIisrt arutselvi (electrical)eIisrt arutselvi (electrical)
eIisrt arutselvi (electrical)IISRT
 
Iisrt anjana francis (ec)
Iisrt anjana francis (ec)Iisrt anjana francis (ec)
Iisrt anjana francis (ec)IISRT
 
Iisrt zzz satyabrata khatua
Iisrt zzz satyabrata khatuaIisrt zzz satyabrata khatua
Iisrt zzz satyabrata khatuaIISRT
 
Iisrt zz srikiran rao
Iisrt zz srikiran raoIisrt zz srikiran rao
Iisrt zz srikiran raoIISRT
 

More from IISRT (20)

Iisrt z mahantaesh tr
Iisrt z mahantaesh trIisrt z mahantaesh tr
Iisrt z mahantaesh tr
 
Iisrt z abhijit devaraj
Iisrt z abhijit devarajIisrt z abhijit devaraj
Iisrt z abhijit devaraj
 
Iisrt sohan sontakke
Iisrt sohan sontakkeIisrt sohan sontakke
Iisrt sohan sontakke
 
Iisrt saravana kumar
Iisrt saravana kumarIisrt saravana kumar
Iisrt saravana kumar
 
Iisrt karthik subramanian
Iisrt karthik subramanianIisrt karthik subramanian
Iisrt karthik subramanian
 
Iisrt akshata ht
Iisrt akshata htIisrt akshata ht
Iisrt akshata ht
 
Iisrt komathi krishna (networks)
Iisrt komathi krishna (networks)Iisrt komathi krishna (networks)
Iisrt komathi krishna (networks)
 
Iisrt divya nagaraj (networks)
Iisrt divya nagaraj (networks)Iisrt divya nagaraj (networks)
Iisrt divya nagaraj (networks)
 
Iisrt arunkumar b (networks)
Iisrt arunkumar b (networks)Iisrt arunkumar b (networks)
Iisrt arunkumar b (networks)
 
Iisrt aarthi ravindran (networks)
Iisrt aarthi ravindran (networks)Iisrt aarthi ravindran (networks)
Iisrt aarthi ravindran (networks)
 
Iisrt vincent raj (mech)
Iisrt vincent raj (mech)Iisrt vincent raj (mech)
Iisrt vincent raj (mech)
 
Iisrt settu ravichandran (civil)
Iisrt settu ravichandran (civil)Iisrt settu ravichandran (civil)
Iisrt settu ravichandran (civil)
 
Iisrt prithvi elango (civil)
Iisrt prithvi elango (civil)Iisrt prithvi elango (civil)
Iisrt prithvi elango (civil)
 
Iisrt khalid ahmed gour (civil)
Iisrt khalid ahmed gour (civil)Iisrt khalid ahmed gour (civil)
Iisrt khalid ahmed gour (civil)
 
Iisrt siddharth prabhu (electrical)
Iisrt siddharth prabhu (electrical)Iisrt siddharth prabhu (electrical)
Iisrt siddharth prabhu (electrical)
 
Iisrt shiny navya (electrical)
Iisrt shiny navya (electrical)Iisrt shiny navya (electrical)
Iisrt shiny navya (electrical)
 
eIisrt arutselvi (electrical)
eIisrt arutselvi (electrical)eIisrt arutselvi (electrical)
eIisrt arutselvi (electrical)
 
Iisrt anjana francis (ec)
Iisrt anjana francis (ec)Iisrt anjana francis (ec)
Iisrt anjana francis (ec)
 
Iisrt zzz satyabrata khatua
Iisrt zzz satyabrata khatuaIisrt zzz satyabrata khatua
Iisrt zzz satyabrata khatua
 
Iisrt zz srikiran rao
Iisrt zz srikiran raoIisrt zz srikiran rao
Iisrt zz srikiran rao
 

Iisrt arshiya hesarur

  • 1. International Journal of Electrical and Computing Engineering (IJECE) Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218 1 Arshiya Hesarur1 1 M.Tech (Final Year) VLSI Design and Testing Dept. of Electronics and Communication Engineering BVB College of Engineering and Technology Hubli, Karnataka India 1 arshiyahesarur7@gmail.com Deeksha Dev2 2 B.Tech (Final Year) Dept. of Electronics and Communication Engineering DAV Institute of Engineering and Technology, Jalandhar, Punjab, India 2 deekshadev11@gmail.com T.Nagasundaram3 ASIC Design Verification Engineer CVC Pvt. Ltd Bangalore, Karnataka, India 3 naga@cvcblr.com Uma Mudenagudi4 4 Head of Electronics and Communication Department BVB College of Engineering and Technology Hubli, Karnataka, India 4 uma@bvb.edu Abstract— Today’s all the computing technologies originated from the foundation laid by Moore’s Law according to which number of transistors on a single integrated chip doubles every year and this has ledto increase in design complexity. Keeping in mind the demand of high manufacturing yield and reduced time to market window, the SoC design and verification engineers have come up with strategies likeDesign Re-use and Automation of Verification. Automation of IP integration and verification process requires a standard vendor-neutral and language independent mechanism for representing meta-data of system- on-chip (SoC) design which resulted in introduction of IP-XACT standard. This paper is about an automation tool developed to generate Register Abstraction Layer (RAL) by using register description of IP cores in IP-XACT schema format. This generator is designed with no prior knowledge of System Verilog/UVM. The RAL generated is then integrated in UVM verification environment to verify variety of DUTs. Keywords— UVM (Universal Verification Methodology), XML (Extensible Markup Language), IP-XACT, RAL(Register Abstraction Layer), XML Schema, EDA (Electronic Design Automation), DRC (Design Rule Check), DUT (Device Under Test) I. INTRODUCTION The colossal scale of transistor on hardware chips has reached to a point where it is extremely difficult to design a complex system from scratch. SoC challenges and how to counter them is described in detail in [2]. Looking at the Design Cycle of an IC the most time consuming phase is the Verification phase. Verification of an IC consumes around 70 – 80% of the design cycle time and effort. Due to this fact industries have come up with solutions like reusing intellectual properties (IPs). Every DUT has registers and memory as their subcomponents as shown in figure 1 which are foremost to be controlled, covered and checked during verification. SoC verification has various approaches to verify DUTs one of which is Universal Verification Methodology (UVM). This paper provides an overview of UVM, XML, IP- XACT Schema and the description of the designed RAL generator. A. Moving to the Accelera Standard Verification Methodology – UVM: UVM is a standard verification methodology which was created to automate verification of IC designs. It is an open source standard developed and maintained by Accellera which is adopted by multiple EDA Industries such as Cadence Design Systems, Mentor Graphics, NXP Semiconductors, STMicroelectronics, Texas Instruments, Freescale Semiconductors, Synopsys etc. By creating this standard, components become portable fromone project to another, thus serves reusability concept by which one can target large designs, IP’s and SoCs. It is a combination of verification guidelines and Application Programming Interface which ultimately serve to reach the automation goal in verification field. UVM provides mapping of register content of DUT and a layer for accessing register and memory locations within DUT which is called as Register Abstraction layer (RAL). UVM requires RAL to generate register models and register transactions which are then integrated in UVM verification environment. It can be amended as many times as one wants in one’s project without intervening the existing verification environment or test. Figure 2 shows the register model [4]. R1, R2…Rn are the registers containing their respective fields in a DUT which is to be verified [4]. A. Performance: It is easy to write register classes manually for smaller designs. But writing register classes for large complexdesigns manually is hard, time consuming and error prone. This designed generator will automatically generate the register classes for bigger and complex designs. This automates the verification phase to some extent and much of the time and effort is saved. II. FIRST STEP TO AUTOMATION – IP_XACT Initially verification engineers were facing problems due to dependency of design flow on different tools. Also writing a code of more than thousands line is a tedious job. Thus a Design of an IP-XACT to UVM RAL Generator 1 Arshiya Hesarur, 2 Deeksha Dev, 3 T.Nagasundaram, 4 Uma Mudenagudi 1 M.Tech (Final year), VLSI Design and Testing, ECE, BVB College of Engineering and Technology, Hubli, INDIA 2 B.Tech (Final year), ECE, DAV Institute of Engineering and Technology, Jalandhar, INDIA 3 ASIC Design Verification Engineer, CVC Pvt. Ltd, Bangalore, INDIA 4 Head of Department, ECE, BVB College of Engineering and Technology, Hubli, INDIA
  • 2. International Journal of Electrical and Computing Engineering (IJECE) Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218 2 standard was required which resulted in formation of IP- XACT XML Schema. Fig. 1, DUT containing sub-components Fig. 2, Register Model view A. XML- eXtensible Markup Language XML is a language which is capable of encoding the documents in both human readable and machine readable format. Hence it is a language which is both software and hardware independent. It is an open standard developed by W3C. XML simply carries information and gives full flexibility to users to create their own XML tags. Therefore XML is nothing but information wrapped in tags. An XML tag is the building block of XML document. It identifies data and is used to store data in an organized manner. One of the most important feature of XML is that it is “Extensible” which means XML allows us to create our own tags (self-descriptive) or languages (Ex: IP-XACT) that suits our description. B. XML Schema: An XML Schema is type of XML Document with certain rules and regulations imposed on the elements of an XML document. The XML document is considered as a schema only when it meets the rules and regulations defined by that schema. Thus XML Schema provides a definite structure to the XML document. XML Schema is also a recommendation of World Wide Web Consortium (W3C) [5]. C. IP-XACT: IP-XACT is IEEE-1685-2009 standard which sets rules for representing electronic components and their designs to provide direct access to data regardless of the design language or tools. It was first released by SPIRIT Consortium which helped industry to resolve the problem of integration of IPs from multiple vendors in design flows. Mentor graphics was the first contributor to IP-XACT; other contributors are ARM, Cadence, NXP, LSI, ST, Synopsys Texas Instruments and nine others [6]. An IP-XACT view of an IP is documented using standard meta-data. The meta-data includes components and details of components such as address maps, registers and description of fields. Meta-data documents the characteristics of Intellectual Property (IP) which are required for the automation of configuration and integration of IP blocks. IP- XACT also defines an Application Programming Interface (API) to make this meta-data directly accessible to automation tools. Thus the main purpose of this standard is to provide a definite structure for Packaging, Integrating and Re-using IP within tool flows. In order to get access to the elements and text in an IP-XACT file, XML Parser is needed. An XML Parser converts any XML document to an XML DOM object. Detailed description IP-XACT standard is given in [1]. D. XML DOM Object: XML DOM (Document Object Model) is a standard for accessing and manipulating XML documents. It views each of the XML document as a tree structure with root element, parent elements, child elements and siblings. XML DOM considers the elements, text information and attributes in an XML document as nodes. Using XML Parser one can access the nodes of an XML document. Figure 3 illustrates an example of XML document and its DOM object.
  • 3. International Journal of Electrical and Computing Engineering (IJECE) Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218 3 Fig. 3, DOM tree structure of an IP-XACT document III. GENERATION OF A UVM RAL: An automation tool that generates RAL from IP-XACT is designed. There are two files, one is the input file which is IP-XACT, containing register description of an IP core and the other one is RAL obtained as an output of generator. The source code for generator is in C language which reads XML Schema as input, parses it and then develops a new file called as “RAL.sv” as its output. Figure 4 is the block diagram of IP-XACT to RAL generator. Sequential steps followed to generate a RAL are given below: 1. IP-XACT view of an IP Core is generated (with the help of IP-specification to IPXACT tool). Additional fields access type, randomization and volatile are added to the IP-XACT document. This makes the RAL to be generated more accurate. 2. The IP-XACT file is then parsed by XML Parser defined in the generator code. Thus each node in the IP-XACT is accessed and manipulated using XML parser file. 3. After the generator code runs successfully, a UVM RAL is generated in a file named “RAL.sv”. Figure 5 illustrates the IP-XACT file and UVM RAL of an SPI (Serial Peripheral Interface) core [3]. Fig. 4, Block Diagram of Automation Flow In the output RAL, initially basic libraries were declared and then class for each register is defined. Register class contains description of configurations of each field a register has in it. After defining all the register classes one main register block is defined, this contains instances of each register class with its configuration description in it. Following is the sample showing IP-XACT to RAL generation, having register class named as “SPI_DIVIDER_reg” containing description of its field named as “RSV_DD”.
  • 4. International Journal of Electrical and Computing Engineering (IJECE) Vol. 1, Issue. 4, June 2015 ISSN (Online): 2349-8218 4 Fig. 5, Sample of an IP-XACT file and generated RAL of SPI core IV. CONCLUSION Standardization is quite essential in order to increase quality of SoC designs and produce SoC systems in large quantity in small Time To Market window. In UVM, RAL is meant to describe register model of IP’s which are to be verified. The key is to generate RAL automatically to deliver best timing and quality results. Thus this paper describes an automation tool which generates RAL by taking input as IP- XACT, which is a standard known for its reusability property plus vendor and language neutrality. V. ACKNOWLEDGMENT The authors (author1 and author2 ) would like to thank CVC Pvt. Ltd for giving an opportunity to work as an Intern in the company and providing with the necessary tools to develop this project. The authors would also like to thank the management and team of CVC for their guidance and support. REFERENCES [1] IEEE Standard for IP-XACT, Standard Structure for Packaging, Integrating, and Reusing IP within Tool Flows," IEEE Standard 1685-2009, vol., no., pp.1, 374, Feb. 18 2010. [2] Anil Deshpande, “Verification of IP Core Based SoC's,” Conexant Systems Inc. Hyderabad, India. [3] Jain, A.; Gupta, R., "Scaling the UVM_REG Model towards Automation and Simplicity of Use," VLSI Design (VLSID), 2015 28th International Conference on, vol., no., pp.164, 169, 3-7 Jan. 2015. [4] Mark Litterick, Marcus Harnisch, “Advanced UVM Register Modeling There’s More Than One Way to Skin A Reg,” Verilab GmbH, Munich, Germany. [5] Zisman, A., "An overview of XML," Computing & Control Engineering Journal, vol.11, no.4, pp.165, 16, Aug. 2000. [6] By Marc van Hintum, NXP Semiconductors, The Netherlands and Paul Williams, “The Value of High Quality IP-XACT XML,” Mentor Graphics Consulting, Europe.