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

Subversion Repositories nysa_sata

[/] [nysa_sata/] [trunk/] [README.md] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 cospan
nysa-sata-stack
2
===============
3
 
4
Sata stack written in Verilog
5
 
6 5 cospan
Staus: TLDR Version: Demonstrated reading and writing to a hard drive on a Spartan 6 LX45T board
7 2 cospan
 
8 5 cospan
For a reference implementation here is a wishbone slave core used to verify the functionality of the SATA Stack:
9
 
10
https://github.com/CospanDesign/nysa-verilog/tree/master/verilog/wishbone/slave/wb_sata
11
 
12
More documentation can be found on the [wiki](https://github.com/CospanDesign/nysa-sata/wiki)
13
 
14 2 cospan
Most of the license is MIT but some of the licenses are GPL
15
 
16
TODO: Fix Link layer... there is a small FIFO in there that is used to handle all starting and stopping
17
of the read, it's a work around and needs to be fixed
18
TODO: Fix Link layer so that it only instantiates one instance of the scrambler, not two
19
 
20
Code Organization:
21
 
22
    rtl/
23
      sata_stack.v (Top File that applications interface with)
24
      sata_defines.v (Set defines for the stack in here)
25
 
26
    generic/ (small modules used throughout the design)
27
      blk_mem.v (wraps around an infered block memory generator)
28
      cross_clock_enable.v (simple module that allows users to
29
                            send enables across a clock domain)
30
      debounce.v (debounce)
31
      ppfifo.v (ping pong FIFO, similar to a ping pong buffer
32
                except the user doesn't need to track the
33
                addresses)
34
 
35
    command/
36
      sata_command_layer.v (Sata Command Layer)
37
 
38
    transport/
39
      sata_transport_layer.v (Sata Transport Layer)
40
 
41
    link/
42
      sata_link_layer.v (Sata Link Layer)
43
      sata_link_layer_read.v (Sata link layer read side)
44
      sata_link_layer_write.v (Sata link layer write side)
45
      scrambler.v (scrambles/descrambles primitives)
46
      crc.v (Cyclical Redundancy Check/ creator)
47
      cont_controller.v (controls the scrambling of primitives)
48
 
49
    phy/
50
      sata_phy_layer.v (Sata phy layer)
51
      oob_controller.v (out of band controller)
52
 
53
    platform/
54
      sata_platform.v (This is a template file you can use to interface with the gigabit transceivers)
55
 
56
 
57
Soapbox:
58
 
59
Although I believe this code should be distributed for free and people should redistribute their software
60
I leave the ethics up to the user and have licensesed most of the code as MIT but I did use some GPL cores
61
and if the user desires to use this in their closed source project be warned about the GPL'ed modules in
62
this stack.
63 5 cospan
 

powered by: WebSVN 2.1.0

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