-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
# A lightweight Ethernet MAC Controller | ||
# A lightweight Ethernet MAC Controller | ||
|
||
## Features | ||
* Modular design, separate entities for the MII interfaces and the RX, TX and PHY management controllers | ||
* Simple OCP bus interface for host control | ||
* Offers easy FIFO frame buffer control that is automatically managed. | ||
|
||
### Example Usage | ||
When the _SFD_ is detected by the MII interface, the RX controller starts to write the frame in the selected frame buffer. When the _EOF_ is detected it increments the _wrRamSelId_ pointer and it selects the next frame buffer to write. If the FIFO is not empty the CPU can start reading a frame, after it has completed reading the selected Ethernet frame it writes a register that increments the _rdRamSelId_ pointer to the next available frame buffer. The CPU can immediately start reading the next received frame without by offloading any buffer management to the hardware controller. |