PROKNET:%20An%20IP/ATM%20processor - PowerPoint PPT Presentation

About This Presentation
Title:

PROKNET:%20An%20IP/ATM%20processor

Description:

Capable of receiving incoming variable-sized Internet Protocol (IP) packets, and ... Proknet was implemented using the Verilog hardware description language ... – PowerPoint PPT presentation

Number of Views:48
Avg rating:3.0/5.0
Slides: 30
Provided by: siteUo
Category:

less

Transcript and Presenter's Notes

Title: PROKNET:%20An%20IP/ATM%20processor


1
PROKNET An IP/ATM processor
  • University of Ottawa
  • Rami Abielmona
  • Samer Abielmona
  • Mohamed Abou-Gabal
  • Wael Hermas
  • Dr. Voicu Groza
  • Dr. Emil Petriu
  • School of Information Technology Engineering

2
Presentation Outline (1)
  • Introduction
  • Objectives
  • Self-imposed QAs
  • IP
  • ATM
  • IP over ATM
  • System breakdown
  • System operation

3
Presentation Outline (2)
  • Module architecture/functionality
  • TLL module
  • ALU module
  • Trailer module
  • CRC module
  • SAR module
  • CU module
  • Achievements
  • Limitations / Future work
  • Summary

4
Project introduction
  • Proknet processor network
  • Capable of receiving incoming variable-sized
    Internet Protocol (IP) packets, and outputting
    fixed-sized ATM cells
  • Design is outlined, architecture is overviewed
    and final results are presented

5
Project objectives
  • Main goal To provide an IP over ATM
    segmentation entity
  • Design goals
  • Forum compliance
  • Efficient implementation
  • Digital design adherence
  • Speed of execution and
  • Network processor functionality

6
What is IP?
  • A communication protocol that
  • Utilizes connectionless-based datagrams that are
    routed using hop-by-hop routing algorithms to
    transfer them
  • Total length of packet is variable, ranging from
    20 bytes to 64k bytes
  • Each packet is treated independently
  • No error control or reliability mechanisms
  • Routing of every single packet is required which
    consumes greater processing power

7
What is ATM?
  • A communication protocol that
  • Utilizes connection-based cells that are guided
    using a pre-planned path between nodes
  • Total length of cell is fixed at 53 bytes
  • Each cell traverses the dedicated route for the
    entire length of the data transmission
  • Error control and reliability mechanisms are
    provided on a connection basis rather than on a
    cell basis, which reduces the required processing
    power

8
What is IP/ATM?
  • Combination allows for networks around the world
    to present a service that is as reliable and
    dedicated as ATM, while utilizing IPs greater
    transmission capability and reduced overheads
  • IP over ATM requires one to be able to segment
    the variable IP-packets into 48-byte cells at the
    transmitter (our focus)

9
System Breakdown (1)
  • Proknet is made up of the following
  • Total Length Logic (TLL) module
  • Arithmetic Logic Unit (ALU) module
  • Trailer module
  • Cyclic Redundancy Check (CRC) module
  • Segmentation and Reassembly (SAR) module
  • Control Unit (CU) module

10
System Breakdown (2)
Figure 1
11
System Operation
Figure 2
12
Proknet
Memory
A complete Padded IP Packet with valid CRC
48 byte cells
1st IP Packet
Adding Padding bits
TRAILER
TLL
CRC
SAR
2nd IP Packet
A complete Padded IP Packet with valid CRC
48 byte cells
UU
CPI
Total Length
CRC
Sequence 1
13
TLL(Total Length Logic)
Incoming Packets
TRAILER Module
Counter
1
1
Extractor
Pad Algorithm
Sequence 2
14
TLL Module Functionality
  • Extract the total length field from the IP packet
  • Perform preliminary setups for the downstream
    modules in the pipeline
  • Calculate the number of padding bits needed and
    store that value in a register

15
ALU Module
  • 16-bit adder-subtractor unit
  • Aids in the instruction execution, by residing on
    the datapath of the main processor and feeds the
    accumulator
  • Designed using combinatorial ALU design techniques

16
Trailer Module Architecture
Figure 3
17
Trailer Module Functionality
1
0
Sequence 3
18
Trailer Module
  1. When a byte of a packet is received from the TLL
    module, the control unit wries into the 8-byte
    FIFO memory
  2. On the next clock cycle, the byte that was
    written in step 1, gets read and at the same time
    another byte is written into the FIFO
  3. Steps 1 and 2 are repeated until the CU_EOP (End
    of Packet) signal is asserted by the CU, which
    indicates to start sending the trailer
  4. When the counter is done, a Done_Trailer signal
    is sent to CU

19
CRC Module Architecture
Figure 4
20
CRC Module Functionality
UU
CPI
TL
CRC32 Algorithm
1
1st Packet
2nd Packet
0
Sequence 4
21
CRC Module
  1. The Trailer module sends the first byte of
    packet, thus the CU writes it to the 4-byte FIFO
  2. On the next clock cycle, a second packet comes
    in, the CU will write it in to the FIFO, and at
    the same time it will read the first byte
  3. Steps 1 and 2 are repeated until CU_Done_Trailer
    is asserted, which indicates to start sending the
    CRC
  4. Once all 4 bytes are placed on the pipeline,
    Done_Crc is sent to the CU

22
Initial IP Packet Structure
Figure 5
Post-trailer Packet Structure
Figure 6
In-memory Packet Structure
Figure 7
23
SAR Module Functionality
SEGMENTATION
Sequence 5
24
Control Unit Module
  • Microprocessor chosen was an 8-bit one
  • All instruction opcodes were limited to 8 bits,
    while memory was addressed with a 12-bit address
    bus
  • The clock period was defined to be 40 ns, thus
    the clock frequency was 25 MHz
  • The memory is a ternary-port memory, needed to
    perform three distinct operations upon the
    memory, all in one cycle. The operations are
  • Fetching an instruction for execution
  • Write-out to memory of a byte from CRC module
  • Read-out from memory a byte to SAR module

25
Memory Interface
Figure 8
26
Achievements
  • Proknet was implemented using the Verilog
    hardware description language
  • The project has successfully gone through
  • Functional simulation
  • Synthesis
  • Timing simulation
  • Space and time restrictions do not allow us to
    present simulation results, but can be provided
    upon request

27
Limitations / Future Work
  • Proknet cannot handle more than 2 packets on the
    pipeline
  • The CRC calculation was done on the packet and
    the trailer, excluding the padding bytes
  • Reassembly side will complete SAR functionality
  • Proknet could benefit from a parallel
    architecture, where multiple pipelines could be
    executing on various packets
  • Queuing and scheduling will aid in the management
    of the multiple queues

28
Summary
  • Network processor design was completed
    successfully
  • Work can be smoothly extended to other
    technologies merging together in order to perform
    the same functionalities, such as ARM over frame
    relay
  • Contact information
  • rabielmo_at_site.uottawa.ca
  • groza_at_site.uottawa.ca
  • petriu_at_site.uottawa.ca

29
Questions / Comments ?
Write a Comment
User Comments (0)
About PowerShow.com