From 47b5ff5e33580082f3f3a8abcdeb8f02c5c89929 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 3 Nov 2014 17:38:12 +0100 Subject: [PATCH] move code and create a directory for each layer --- lib/sata/command/.keep_me | 0 lib/sata/link/.keep_me | 0 lib/sata/{ => phy}/k7sataphy/__init__.py | 0 lib/sata/{ => phy}/k7sataphy/crg.py | 0 lib/sata/{ => phy}/k7sataphy/ctrl.py | 0 lib/sata/{ => phy}/k7sataphy/datapath.py | 0 lib/sata/{ => phy}/k7sataphy/gtx.py | 0 lib/sata/{ => phy}/k7sataphy/std.py | 0 lib/sata/transport/.keep_me | 0 targets/test.py | 4 ++-- 10 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 lib/sata/command/.keep_me create mode 100644 lib/sata/link/.keep_me rename lib/sata/{ => phy}/k7sataphy/__init__.py (100%) rename lib/sata/{ => phy}/k7sataphy/crg.py (100%) rename lib/sata/{ => phy}/k7sataphy/ctrl.py (100%) rename lib/sata/{ => phy}/k7sataphy/datapath.py (100%) rename lib/sata/{ => phy}/k7sataphy/gtx.py (100%) rename lib/sata/{ => phy}/k7sataphy/std.py (100%) create mode 100644 lib/sata/transport/.keep_me diff --git a/lib/sata/command/.keep_me b/lib/sata/command/.keep_me new file mode 100644 index 00000000..e69de29b diff --git a/lib/sata/link/.keep_me b/lib/sata/link/.keep_me new file mode 100644 index 00000000..e69de29b diff --git a/lib/sata/k7sataphy/__init__.py b/lib/sata/phy/k7sataphy/__init__.py similarity index 100% rename from lib/sata/k7sataphy/__init__.py rename to lib/sata/phy/k7sataphy/__init__.py diff --git a/lib/sata/k7sataphy/crg.py b/lib/sata/phy/k7sataphy/crg.py similarity index 100% rename from lib/sata/k7sataphy/crg.py rename to lib/sata/phy/k7sataphy/crg.py diff --git a/lib/sata/k7sataphy/ctrl.py b/lib/sata/phy/k7sataphy/ctrl.py similarity index 100% rename from lib/sata/k7sataphy/ctrl.py rename to lib/sata/phy/k7sataphy/ctrl.py diff --git a/lib/sata/k7sataphy/datapath.py b/lib/sata/phy/k7sataphy/datapath.py similarity index 100% rename from lib/sata/k7sataphy/datapath.py rename to lib/sata/phy/k7sataphy/datapath.py diff --git a/lib/sata/k7sataphy/gtx.py b/lib/sata/phy/k7sataphy/gtx.py similarity index 100% rename from lib/sata/k7sataphy/gtx.py rename to lib/sata/phy/k7sataphy/gtx.py diff --git a/lib/sata/k7sataphy/std.py b/lib/sata/phy/k7sataphy/std.py similarity index 100% rename from lib/sata/k7sataphy/std.py rename to lib/sata/phy/k7sataphy/std.py diff --git a/lib/sata/transport/.keep_me b/lib/sata/transport/.keep_me new file mode 100644 index 00000000..e69de29b diff --git a/targets/test.py b/targets/test.py index cd51ca2b..1cb99610 100644 --- a/targets/test.py +++ b/targets/test.py @@ -8,8 +8,8 @@ from migen.bank.description import * from miscope.uart2wishbone import UART2Wishbone from misoclib import identifier -from lib.sata.k7sataphy.std import * -from lib.sata.k7sataphy import K7SATAPHY +from lib.sata.phy.k7sataphy.std import * +from lib.sata.phy.k7sataphy import K7SATAPHY from migen.genlib.cdc import * -- 2.30.2