SlideShare a Scribd company logo
1 of 5
Download to read offline
IJSRD - International Journal for Scientific Research & Development| Vol. 1, Issue 3, 2013 | ISSN (online): 2321-0613
All rights reserved by www.ijsrd.com 604
Design of AMBA AHB interface around OpenRISC 1200 processor and
comparing the implementation with existing architecture
Bhaumik Vaidya1
Jaydeep Bhatt2
Ashwin Patel3
Anupam Devani4
1,2,3,4
Department of Electronics Engineering
1, 2, 3, 4
Gujarat Technological University, Gandhinagar, Gujarat, India.
Abstract— Open source Components are gaining popularity
because they not only reduce the cost significantly but also
provide power to the designer due to the availability of
source code. The OpenRISC 1200 processor is a widely
used processor in small and medium embedded and
networking application. It is open source and code of it is
written in Verilog Hardware description language. It used
Wishbone as an internal bus and also uses it to connect to
external peripherals. Due to this it has some limitation.
Today, most of the chips do not use wishbone bus but
instead use AMBA AHB. So in this paper AMBA AHB
interface has been added to the existing OpenRISC
Architecture and Comparison after adding the interface is
done with the implementation before.
Keywords: OpenRISC 1200, AMBA, AHB, System on chip,
AHB master, Wishbone
I. INTRODUCTION
Processor is a robust component of a control architecture
being developed for a complex SOC Design. It serves as a
central component that can communicate with several on
chip peripheral. So, design of a robust and configurable
processor is very important for any chip design. Typically
costs are important factor in the industry. Therefore, decided
to use open source OpenRISC architecture to implement this
Subsystem. Modern industry is also rapidly shifting towards
the cheap open source solutions.
This OpenRISC architecture provides comparable
performance with any 32 bit RISC architecture. OpenRISC
architecture is compatible with Wishbone interface. But
most of the IP‟s available in industry are compatible with
AMBA bus interface. So, decided to make OpenRISC
processor compatible with AHB system so it can be
interfaced with IP‟s available in industry for larger SOC
Design.
In this paper, first the existing OpenRISC
architecture is explained and then the modified architecture
is shown. After that comparison between both of them in
terms of simulation results is shown. Both these
architectures are synthesized to check for timing, area and
power performances. So comparison of Synthesis results is
explained.
II. EXISTING OPENRISC ARCHITECTURE
The existing architecture of OpenRISC 1200 processor is
shown in the figure. As shown it has instruction and data
caches, instruction and data memory management units
along with the five stages pipelined Central Processing Unit.
It also has other interfaces like debug Unit, Tick Timer and
Power management Unit. As shown in figure it used
wishbone master interface to connect to external Memories.
Instruction cache is connected to ROM via instruction
wishbone master interface and data cache is connected to
data memory via data master interface. Here, Wishbone is
using Register feedback mechanism so next address can be
issued only after receiving the acknowledgement for the
previous one. So that puts the limit on maximum throughput
of the processor.
Fig. 1: Existing OpenRISC Architecture
III. MODIFIED ARCHITECTURE
AMBA AHB is a pipelined protocol and widely used in
industry today. So most of the IP’s available today comes
with the AHB support. So to make OpenRISC compatible in
that environment AHB master interface has been added to it.
So that instruction cache can connect to external memory
via AHB master instruction interface and Data cache can be
connected to external data memory via Ahb master data
interface. The modified Architecture is shown in figure
below.
Fig. 2: Modified Architecture
Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture
(IJSRD/Vol. 1/Issue 3/2013/0052)
All rights reserved by www.ijsrd.com
605
IV. INSTRUCTION INTERFACE WITHOUT
ADDITION OF AHB MASTER
In this section, the waveforms and verification of OpenRISC
catch controller without the addition of AHB master
interface is shown. In this Wishbone Synchronous Read and
write cycles are used so every transaction takes two cycles
to complete. On the cache hit, there is no need for this
external interface and data from the cache is directly applied
to the CPU. On the cache miss, 4 word cache refilling takes
place with critical first word. So using Wishbone interface it
took eight cycles to fill the line for Cache on the miss. The
waveforms for this operation are shown below.
Fig. 3: Instruction interface before AHB
As you can see, address 0 is not present in the
cache so it will be a cache miss, so cache refilling takes
place with first transaction will be for address 00. Then
whole cache line is refilled in eight cycles as shown in
figure. Again, if address 04 is applied then it is present is
cache memory so it will be a hit and no need of external
interface.
V. INSTRUCTION INTERFACE AFTER ADDITION OF
AHB MASTER
Now, without modifying the functionality of cache
controller, AHB Master Interface is added around it.
Fig. 4: Instruction interface after AHB
This will affect the refilling operation of the cache
in case of a cache miss. Due to support for burst transfers
and pipelining of address and data, the cache refilling
operation will take five cycles instead of eight in Wishbone
interface. Here in both cases we are assuming that memory
only takes one cycle to respond to a read request. In case of
a cache hit it will work in the same way as it did before
addition of AHB master.
The waveforms after addition of AHB master is
shown in figure below. Address 08 is applied to cache which
is not present in it so it will be cache miss so cache refilling
will take place using AHB master. As indicated above due
to burst transfer and pipelining it takes less cycle then
before. In case of a cache hit it will have no effect on the
overall performance of the processor.
VI. DATA INTERFACE
In the OR1200 processor, data cache is operated in the write
through mode so data which is written into cache is also
written into the main memory. It eliminates checking for
dirty bits and writing back data for refilling when data is
dirty. The waveforms for loading the data when load
instruction is executed are shown in the figure below. The
data is fetched in critical word first manner then whole
cache line is filled. The waveform also indicates the
operation when address is hit in the data cache. It will return
the data and acknowledgement in next cycle. So load
instruction will take two cycles to execute when address is
found in cache. During store instruction, the data will be
given to the main memory because of the write through
operation. The waveform also indicates the store instruction
in 0C address after load operations.
Fig. 5: Data cache operation before AHB
After adding AHB master interface, due to support
for burst transfer and pipelining the cache refilling latency
during load instruction will be reduced to five cycles from
original eight cycles. If there is a hit in cache then it will
take two cycles to execute load instruction. For store
instruction also it will take two cycles to write to the
memory. The waveforms after addition of AHB master data
interface is shown in figure. The different scenarios are
checked for this operation.
Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture
(IJSRD/Vol. 1/Issue 3/2013/0052)
All rights reserved by www.ijsrd.com
606
Load miss then load hit:
Fig. 6: Data cache operation when load miss
First 08 addresses are applied to the data cache. It
is not present in the data cache so it will generate cache miss
signals. The cache refilling operation will take place in
critical word first manner. It will fetch the whole cache line
in five cycles as described above. Then again 0C address is
applied to the cache which is present in data cache so it will
be a cache hit and data will be given in the next clock cycle.
Store instruction and then again load instruction
Fig. 7: Store Operation in data cache
As shown in figure first data is stored in two
addresses 1E and 0C and then again load instruction with 0C
address is applied so new stored data is loaded from this
address.
VII. SYNTHESIS RESULTS BEFORE AHB INTERFACE
ADDITION
There are three clock domains in the processor so timing is
checked for all three clocks for setup and hold violation.
From the timing report, the thing to make out is that there
are no timing violations when clock period is 5ns so
processor can work at a frequency of 200MHz. The
snapshot of all timing reports is shown in figure below.
Fig. 8: Primary Synthesis Results before AHB
The figure also shows the total number of gates
used in the design along with the breakup of combinational
and sequential cell. The power report on the right hand side
indicates the power calculated using a specific operating
condition from the technology library. Here, TYPICAL is
used as operating condition. Total dynamic power is 620mw
which is the summation of cell internal power and net
switching power.
Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture
(IJSRD/Vol. 1/Issue 3/2013/0052)
All rights reserved by www.ijsrd.com
607
VIII. SYNTHESIS RESULTS AFTER AHB INTERFACE
After adding AHB master interface on top of data and
instruction interface and removing original wishbone
interface, the core is again synthesized to observe the
changes in the results. After addition of AHB the top
module will have three clock domains, internal clock of the
processor, AHB clock for data interface and AHB clock for
instruction interface. Agan timing analysis of three clocks
has been done to check for setup or hold violation and
decide the maximum operating frequency of the clock.
It shows that when clock period is 5ns, there are no
setup and hold violation in all three clock domains. So again
processor can work on 200MHz frequency.
Fig. 9: Timing report after AHB interface.
In the figure below, total number of cells used to
synthesize the design is shown along with the total dynamic
power calculated for TYPICAL operating condition.
Fig. 10: Power and Area report after AHB
IX. COMPARISON OF SYNTHESIS RESULTS BEFORE
AND AFTER ADDITION OF AHB
The timing report for the processors internal clock remains
more or less same before and after addition of AHB. The
length of critical part reduces from 4.89ns to 4.81ns. Also
the levels of logic (total number of gates in that critical path)
also reduce. Total number of gates used after addition of
AHB master reduces by almost 10k because of well defines
reusable interface. Total dynamic power also reduces from
621mW to 595mW due to less switching in the interface. So
there is improvement in power and area after addition of
AHB interface.
X. CONCLUSION
From this paper it can be concluded that there is a
significant improvement in performance after adding AHB
interface to the processor. There is a reduction in cache miss
Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture
(IJSRD/Vol. 1/Issue 3/2013/0052)
All rights reserved by www.ijsrd.com
608
latency that will help in improving throughput and synthesis
result show some improvement in area and power. Moreover
it can be easily reuse in AHB based system without
modification.
ACKNOWLEDGEMENT
This work was greatly supported by Gujarat Technological
University and Seer Akademi by providing state of the art
tools like VCS and Design Compiler from Synopsys.
REFERENCES
[1]. OpenRISC1000 website:
http://www.opencores.org/projects/or1k/Home
[2]. OpenRISC 1000 Architecture Manual:
[3]. http://www.opencores.org/tmp/cvsget_cache/or1k/docs/
openrisc_arch3.pdf
[4]. OpenRISC 1200 website:
[5]. http://www.opencores.org/projects/or1k/OpenRISC%20
1200
[6]. OpenRISC 1200 specification:
[7]. http://www.opencores.org/tmp/cvsget_cache/or1k/or12
00/doc/or1200_spec.pdf
[8]. AMBA specification, version 2.0
[9]. “AHB Example AMBA System”, Technical Reference
Manual, ARM Inc.

More Related Content

What's hot

What's hot (14)

Bus interface 8086
Bus interface 8086Bus interface 8086
Bus interface 8086
 
Arch 8086
Arch 8086Arch 8086
Arch 8086
 
Cs14 406 mod1
Cs14 406 mod1Cs14 406 mod1
Cs14 406 mod1
 
Design and Implementation of an Advanced DMA Controller on AMBA-Based SoC
Design and Implementation of an Advanced DMA Controller on AMBA-Based SoCDesign and Implementation of an Advanced DMA Controller on AMBA-Based SoC
Design and Implementation of an Advanced DMA Controller on AMBA-Based SoC
 
8086 archi notes final
8086 archi notes final8086 archi notes final
8086 archi notes final
 
Iaetsd asynchronous data transactions on so c using fifo
Iaetsd asynchronous data transactions on so c using fifoIaetsd asynchronous data transactions on so c using fifo
Iaetsd asynchronous data transactions on so c using fifo
 
Axi
AxiAxi
Axi
 
Axi
AxiAxi
Axi
 
Mpi chapter 2
Mpi chapter 2Mpi chapter 2
Mpi chapter 2
 
Amba ppt
Amba pptAmba ppt
Amba ppt
 
8086
80868086
8086
 
8086 microprocessor
8086 microprocessor8086 microprocessor
8086 microprocessor
 
Design and Implementation of Axi-Apb Bridge based on Amba 4.0
Design and Implementation of Axi-Apb Bridge based on Amba 4.0Design and Implementation of Axi-Apb Bridge based on Amba 4.0
Design and Implementation of Axi-Apb Bridge based on Amba 4.0
 
Design and Implementation of AMBA ASB APB Bridge
Design and Implementation of AMBA ASB APB BridgeDesign and Implementation of AMBA ASB APB Bridge
Design and Implementation of AMBA ASB APB Bridge
 

Viewers also liked

Viewers also liked (6)

Amba axi 29 3_2015
Amba axi 29 3_2015Amba axi 29 3_2015
Amba axi 29 3_2015
 
AMBA Ahb 2.0
AMBA Ahb 2.0AMBA Ahb 2.0
AMBA Ahb 2.0
 
APB protocol v1.0
APB protocol v1.0APB protocol v1.0
APB protocol v1.0
 
AMBA3.0 james_20110801
AMBA3.0 james_20110801AMBA3.0 james_20110801
AMBA3.0 james_20110801
 
axi protocol
axi protocolaxi protocol
axi protocol
 
Amba bus
Amba busAmba bus
Amba bus
 

Similar to Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture

IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
Design And Verification of AMBA APB Protocol
Design And Verification of AMBA APB ProtocolDesign And Verification of AMBA APB Protocol
Design And Verification of AMBA APB ProtocolIJERA Editor
 
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...IRJET Journal
 
Design and Analysis of Xilinx Verified AMBA Bridge for SoC Systems
Design and Analysis of Xilinx Verified AMBA Bridge for SoC SystemsDesign and Analysis of Xilinx Verified AMBA Bridge for SoC Systems
Design and Analysis of Xilinx Verified AMBA Bridge for SoC Systemsidescitation
 
16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)Susam Pal
 
8 bit Microprocessor with Single Vectored Interrupt
8 bit Microprocessor with Single Vectored Interrupt8 bit Microprocessor with Single Vectored Interrupt
8 bit Microprocessor with Single Vectored InterruptHardik Manocha
 
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...IRJET Journal
 
Z 80 processors (History-Products)
Z 80 processors (History-Products)Z 80 processors (History-Products)
Z 80 processors (History-Products)Mohammed Hilal
 
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGE
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGEVLSI DESIGN OF AMBA BASED AHB2APB BRIDGE
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGEVLSICS Design
 
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdfMukundThakur22
 
CSCI 2121- Computer Organization and Assembly Language Labor.docx
CSCI 2121- Computer Organization and Assembly Language Labor.docxCSCI 2121- Computer Organization and Assembly Language Labor.docx
CSCI 2121- Computer Organization and Assembly Language Labor.docxannettsparrow
 
Whitepaper: Exadata Consolidation Success Story
Whitepaper: Exadata Consolidation Success StoryWhitepaper: Exadata Consolidation Success Story
Whitepaper: Exadata Consolidation Success StoryKristofferson A
 
Ecet330 1 b - basic computer concepts
Ecet330   1 b - basic computer conceptsEcet330   1 b - basic computer concepts
Ecet330 1 b - basic computer conceptsRalph Ambuehl
 

Similar to Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture (20)

IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
Design And Verification of AMBA APB Protocol
Design And Verification of AMBA APB ProtocolDesign And Verification of AMBA APB Protocol
Design And Verification of AMBA APB Protocol
 
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...
IRJET - Design of AMBA based AHB2APB Protocol for Efficient Utilization of AH...
 
Mips 64
Mips 64Mips 64
Mips 64
 
arm-cortex-a8
arm-cortex-a8arm-cortex-a8
arm-cortex-a8
 
Different addressing mode and risc, cisc microprocessor
Different addressing mode and risc, cisc microprocessorDifferent addressing mode and risc, cisc microprocessor
Different addressing mode and risc, cisc microprocessor
 
Design and Analysis of Xilinx Verified AMBA Bridge for SoC Systems
Design and Analysis of Xilinx Verified AMBA Bridge for SoC SystemsDesign and Analysis of Xilinx Verified AMBA Bridge for SoC Systems
Design and Analysis of Xilinx Verified AMBA Bridge for SoC Systems
 
16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)16-bit Microprocessor Design (2005)
16-bit Microprocessor Design (2005)
 
8 bit Microprocessor with Single Vectored Interrupt
8 bit Microprocessor with Single Vectored Interrupt8 bit Microprocessor with Single Vectored Interrupt
8 bit Microprocessor with Single Vectored Interrupt
 
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...
FPGA Implementation of High Speed AMBA Bus Architecture for Image Transmissio...
 
Z 80 processors (History-Products)
Z 80 processors (History-Products)Z 80 processors (History-Products)
Z 80 processors (History-Products)
 
Bc0040
Bc0040Bc0040
Bc0040
 
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGE
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGEVLSI DESIGN OF AMBA BASED AHB2APB BRIDGE
VLSI DESIGN OF AMBA BASED AHB2APB BRIDGE
 
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf
[ACNA2022] Hadoop Vectored IO_ your data just got faster!.pdf
 
Highridge ISA
Highridge ISAHighridge ISA
Highridge ISA
 
3
33
3
 
CSCI 2121- Computer Organization and Assembly Language Labor.docx
CSCI 2121- Computer Organization and Assembly Language Labor.docxCSCI 2121- Computer Organization and Assembly Language Labor.docx
CSCI 2121- Computer Organization and Assembly Language Labor.docx
 
Whitepaper: Exadata Consolidation Success Story
Whitepaper: Exadata Consolidation Success StoryWhitepaper: Exadata Consolidation Success Story
Whitepaper: Exadata Consolidation Success Story
 
viva q&a for mp lab
viva q&a for mp labviva q&a for mp lab
viva q&a for mp lab
 
Ecet330 1 b - basic computer concepts
Ecet330   1 b - basic computer conceptsEcet330   1 b - basic computer concepts
Ecet330 1 b - basic computer concepts
 

More from ijsrd.com

IoT Enabled Smart Grid
IoT Enabled Smart GridIoT Enabled Smart Grid
IoT Enabled Smart Gridijsrd.com
 
A Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of ThingsA Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of Thingsijsrd.com
 
IoT for Everyday Life
IoT for Everyday LifeIoT for Everyday Life
IoT for Everyday Lifeijsrd.com
 
Study on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTStudy on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTijsrd.com
 
Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...ijsrd.com
 
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...ijsrd.com
 
A Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's LifeA Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's Lifeijsrd.com
 
Pedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language LearningPedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language Learningijsrd.com
 
Virtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation SystemVirtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation Systemijsrd.com
 
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...ijsrd.com
 
Understanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart RefrigeratorUnderstanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart Refrigeratorijsrd.com
 
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...ijsrd.com
 
A Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingA Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingijsrd.com
 
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web LogsWeb Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logsijsrd.com
 
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMAPPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMijsrd.com
 
Making model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point TrackingMaking model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point Trackingijsrd.com
 
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...ijsrd.com
 
Study and Review on Various Current Comparators
Study and Review on Various Current ComparatorsStudy and Review on Various Current Comparators
Study and Review on Various Current Comparatorsijsrd.com
 
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...ijsrd.com
 
Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.ijsrd.com
 

More from ijsrd.com (20)

IoT Enabled Smart Grid
IoT Enabled Smart GridIoT Enabled Smart Grid
IoT Enabled Smart Grid
 
A Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of ThingsA Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of Things
 
IoT for Everyday Life
IoT for Everyday LifeIoT for Everyday Life
IoT for Everyday Life
 
Study on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTStudy on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOT
 
Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...
 
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
 
A Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's LifeA Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's Life
 
Pedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language LearningPedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language Learning
 
Virtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation SystemVirtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation System
 
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
 
Understanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart RefrigeratorUnderstanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart Refrigerator
 
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
 
A Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingA Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processing
 
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web LogsWeb Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
 
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMAPPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
 
Making model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point TrackingMaking model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point Tracking
 
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
 
Study and Review on Various Current Comparators
Study and Review on Various Current ComparatorsStudy and Review on Various Current Comparators
Study and Review on Various Current Comparators
 
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
 
Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.
 

Recently uploaded

VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 

Recently uploaded (20)

VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 

Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture

  • 1. IJSRD - International Journal for Scientific Research & Development| Vol. 1, Issue 3, 2013 | ISSN (online): 2321-0613 All rights reserved by www.ijsrd.com 604 Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture Bhaumik Vaidya1 Jaydeep Bhatt2 Ashwin Patel3 Anupam Devani4 1,2,3,4 Department of Electronics Engineering 1, 2, 3, 4 Gujarat Technological University, Gandhinagar, Gujarat, India. Abstract— Open source Components are gaining popularity because they not only reduce the cost significantly but also provide power to the designer due to the availability of source code. The OpenRISC 1200 processor is a widely used processor in small and medium embedded and networking application. It is open source and code of it is written in Verilog Hardware description language. It used Wishbone as an internal bus and also uses it to connect to external peripherals. Due to this it has some limitation. Today, most of the chips do not use wishbone bus but instead use AMBA AHB. So in this paper AMBA AHB interface has been added to the existing OpenRISC Architecture and Comparison after adding the interface is done with the implementation before. Keywords: OpenRISC 1200, AMBA, AHB, System on chip, AHB master, Wishbone I. INTRODUCTION Processor is a robust component of a control architecture being developed for a complex SOC Design. It serves as a central component that can communicate with several on chip peripheral. So, design of a robust and configurable processor is very important for any chip design. Typically costs are important factor in the industry. Therefore, decided to use open source OpenRISC architecture to implement this Subsystem. Modern industry is also rapidly shifting towards the cheap open source solutions. This OpenRISC architecture provides comparable performance with any 32 bit RISC architecture. OpenRISC architecture is compatible with Wishbone interface. But most of the IP‟s available in industry are compatible with AMBA bus interface. So, decided to make OpenRISC processor compatible with AHB system so it can be interfaced with IP‟s available in industry for larger SOC Design. In this paper, first the existing OpenRISC architecture is explained and then the modified architecture is shown. After that comparison between both of them in terms of simulation results is shown. Both these architectures are synthesized to check for timing, area and power performances. So comparison of Synthesis results is explained. II. EXISTING OPENRISC ARCHITECTURE The existing architecture of OpenRISC 1200 processor is shown in the figure. As shown it has instruction and data caches, instruction and data memory management units along with the five stages pipelined Central Processing Unit. It also has other interfaces like debug Unit, Tick Timer and Power management Unit. As shown in figure it used wishbone master interface to connect to external Memories. Instruction cache is connected to ROM via instruction wishbone master interface and data cache is connected to data memory via data master interface. Here, Wishbone is using Register feedback mechanism so next address can be issued only after receiving the acknowledgement for the previous one. So that puts the limit on maximum throughput of the processor. Fig. 1: Existing OpenRISC Architecture III. MODIFIED ARCHITECTURE AMBA AHB is a pipelined protocol and widely used in industry today. So most of the IP’s available today comes with the AHB support. So to make OpenRISC compatible in that environment AHB master interface has been added to it. So that instruction cache can connect to external memory via AHB master instruction interface and Data cache can be connected to external data memory via Ahb master data interface. The modified Architecture is shown in figure below. Fig. 2: Modified Architecture
  • 2. Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture (IJSRD/Vol. 1/Issue 3/2013/0052) All rights reserved by www.ijsrd.com 605 IV. INSTRUCTION INTERFACE WITHOUT ADDITION OF AHB MASTER In this section, the waveforms and verification of OpenRISC catch controller without the addition of AHB master interface is shown. In this Wishbone Synchronous Read and write cycles are used so every transaction takes two cycles to complete. On the cache hit, there is no need for this external interface and data from the cache is directly applied to the CPU. On the cache miss, 4 word cache refilling takes place with critical first word. So using Wishbone interface it took eight cycles to fill the line for Cache on the miss. The waveforms for this operation are shown below. Fig. 3: Instruction interface before AHB As you can see, address 0 is not present in the cache so it will be a cache miss, so cache refilling takes place with first transaction will be for address 00. Then whole cache line is refilled in eight cycles as shown in figure. Again, if address 04 is applied then it is present is cache memory so it will be a hit and no need of external interface. V. INSTRUCTION INTERFACE AFTER ADDITION OF AHB MASTER Now, without modifying the functionality of cache controller, AHB Master Interface is added around it. Fig. 4: Instruction interface after AHB This will affect the refilling operation of the cache in case of a cache miss. Due to support for burst transfers and pipelining of address and data, the cache refilling operation will take five cycles instead of eight in Wishbone interface. Here in both cases we are assuming that memory only takes one cycle to respond to a read request. In case of a cache hit it will work in the same way as it did before addition of AHB master. The waveforms after addition of AHB master is shown in figure below. Address 08 is applied to cache which is not present in it so it will be cache miss so cache refilling will take place using AHB master. As indicated above due to burst transfer and pipelining it takes less cycle then before. In case of a cache hit it will have no effect on the overall performance of the processor. VI. DATA INTERFACE In the OR1200 processor, data cache is operated in the write through mode so data which is written into cache is also written into the main memory. It eliminates checking for dirty bits and writing back data for refilling when data is dirty. The waveforms for loading the data when load instruction is executed are shown in the figure below. The data is fetched in critical word first manner then whole cache line is filled. The waveform also indicates the operation when address is hit in the data cache. It will return the data and acknowledgement in next cycle. So load instruction will take two cycles to execute when address is found in cache. During store instruction, the data will be given to the main memory because of the write through operation. The waveform also indicates the store instruction in 0C address after load operations. Fig. 5: Data cache operation before AHB After adding AHB master interface, due to support for burst transfer and pipelining the cache refilling latency during load instruction will be reduced to five cycles from original eight cycles. If there is a hit in cache then it will take two cycles to execute load instruction. For store instruction also it will take two cycles to write to the memory. The waveforms after addition of AHB master data interface is shown in figure. The different scenarios are checked for this operation.
  • 3. Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture (IJSRD/Vol. 1/Issue 3/2013/0052) All rights reserved by www.ijsrd.com 606 Load miss then load hit: Fig. 6: Data cache operation when load miss First 08 addresses are applied to the data cache. It is not present in the data cache so it will generate cache miss signals. The cache refilling operation will take place in critical word first manner. It will fetch the whole cache line in five cycles as described above. Then again 0C address is applied to the cache which is present in data cache so it will be a cache hit and data will be given in the next clock cycle. Store instruction and then again load instruction Fig. 7: Store Operation in data cache As shown in figure first data is stored in two addresses 1E and 0C and then again load instruction with 0C address is applied so new stored data is loaded from this address. VII. SYNTHESIS RESULTS BEFORE AHB INTERFACE ADDITION There are three clock domains in the processor so timing is checked for all three clocks for setup and hold violation. From the timing report, the thing to make out is that there are no timing violations when clock period is 5ns so processor can work at a frequency of 200MHz. The snapshot of all timing reports is shown in figure below. Fig. 8: Primary Synthesis Results before AHB The figure also shows the total number of gates used in the design along with the breakup of combinational and sequential cell. The power report on the right hand side indicates the power calculated using a specific operating condition from the technology library. Here, TYPICAL is used as operating condition. Total dynamic power is 620mw which is the summation of cell internal power and net switching power.
  • 4. Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture (IJSRD/Vol. 1/Issue 3/2013/0052) All rights reserved by www.ijsrd.com 607 VIII. SYNTHESIS RESULTS AFTER AHB INTERFACE After adding AHB master interface on top of data and instruction interface and removing original wishbone interface, the core is again synthesized to observe the changes in the results. After addition of AHB the top module will have three clock domains, internal clock of the processor, AHB clock for data interface and AHB clock for instruction interface. Agan timing analysis of three clocks has been done to check for setup or hold violation and decide the maximum operating frequency of the clock. It shows that when clock period is 5ns, there are no setup and hold violation in all three clock domains. So again processor can work on 200MHz frequency. Fig. 9: Timing report after AHB interface. In the figure below, total number of cells used to synthesize the design is shown along with the total dynamic power calculated for TYPICAL operating condition. Fig. 10: Power and Area report after AHB IX. COMPARISON OF SYNTHESIS RESULTS BEFORE AND AFTER ADDITION OF AHB The timing report for the processors internal clock remains more or less same before and after addition of AHB. The length of critical part reduces from 4.89ns to 4.81ns. Also the levels of logic (total number of gates in that critical path) also reduce. Total number of gates used after addition of AHB master reduces by almost 10k because of well defines reusable interface. Total dynamic power also reduces from 621mW to 595mW due to less switching in the interface. So there is improvement in power and area after addition of AHB interface. X. CONCLUSION From this paper it can be concluded that there is a significant improvement in performance after adding AHB interface to the processor. There is a reduction in cache miss
  • 5. Design of AMBA AHB interface around OpenRISC 1200 processor and comparing the implementation with existing architecture (IJSRD/Vol. 1/Issue 3/2013/0052) All rights reserved by www.ijsrd.com 608 latency that will help in improving throughput and synthesis result show some improvement in area and power. Moreover it can be easily reuse in AHB based system without modification. ACKNOWLEDGEMENT This work was greatly supported by Gujarat Technological University and Seer Akademi by providing state of the art tools like VCS and Design Compiler from Synopsys. REFERENCES [1]. OpenRISC1000 website: http://www.opencores.org/projects/or1k/Home [2]. OpenRISC 1000 Architecture Manual: [3]. http://www.opencores.org/tmp/cvsget_cache/or1k/docs/ openrisc_arch3.pdf [4]. OpenRISC 1200 website: [5]. http://www.opencores.org/projects/or1k/OpenRISC%20 1200 [6]. OpenRISC 1200 specification: [7]. http://www.opencores.org/tmp/cvsget_cache/or1k/or12 00/doc/or1200_spec.pdf [8]. AMBA specification, version 2.0 [9]. “AHB Example AMBA System”, Technical Reference Manual, ARM Inc.