OpenCores
URL https://opencores.org/ocsvn/srdydrdy_lib/srdydrdy_lib/trunk

Subversion Repositories srdydrdy_lib

[/] [srdydrdy_lib/] [trunk/] [examples/] [bridge/] [doc/] [bridge_example.txt] - Blame information for rev 22

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 22 ghutchis
----------------------------------
2
  Example Bridge / Switching Hub
3
----------------------------------
4
 
5
The bridge directory contains an example bridge built using
6
srdy-drdy components.  It could more accurately be called
7
a switching hub, since it does not implement spanning tree
8
or QoS.
9
 
10
The bridge is designed for simplicity rather than efficiency,
11
as the purpose is not to make a functioning product but to
12
demonstrate use of the library.
13
 
14
The bridge design pushes the bulk of the logic into each
15
individual port, called a port_macro.  The only global logic
16
is the FIB (Forwarding Information Block) that contains the
17
address lookup and learning logic, and a centralized ring
18
arbiter.
19
 
20
The port_macros are connected to each other via a ring interface.
21
Only one packet can be transmitted on the ring at a time.
22
The system is designed so that it has more ring bandwidth than
23
the maximum amount of incoming traffic, so that the ring should
24
not be the bottleneck for system performance.
25
 
26
The bridge is designed to be output-queued, so that all packets
27
are forwarded to their output port and the output port will
28
drop packets if there is insufficient transmit bandwidth.
29
 
30
The bridge handles all transmission errors on the input port,
31
using the rx_fifo to drop packets which arrive with bad CRC.
32
The parser waits until the end of packet is received to determine
33
if the packet is good, and only sends the packet to the FIB
34
if CRC is OK.  Otherwise the parser errors the packet so it
35
will be dropped in RX FIFO.
36
 
37
Packets are transmitted and received using an 8-bit GMII interface.
38
In order to create a higher-bandwidth internal interface, data
39
is aggregated into 64-bit words to get 8x bandwidth.  This gives
40
the internal ring roughly 2x the bandwidth of all receiving ports
41
combined.
42
 
43
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.