liteeth: move mac to core

This commit is contained in:
Florent Kermarrec 2015-05-02 12:55:51 +02:00
parent a4617014f4
commit 63b8797978
18 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
from misoclib.com.liteeth.core.arp import LiteEthARP
from misoclib.com.liteeth.core.ip import LiteEthIP
from misoclib.com.liteeth.core.udp import LiteEthUDP

View File

@ -1,7 +1,7 @@
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac.common import *
from misoclib.com.liteeth.mac.core import LiteEthMACCore
from misoclib.com.liteeth.mac.frontend.wishbone import LiteEthMACWishboneInterface
from misoclib.com.liteeth.core.mac.common import *
from misoclib.com.liteeth.core.mac.core import LiteEthMACCore
from misoclib.com.liteeth.core.mac.frontend.wishbone import LiteEthMACWishboneInterface
class LiteEthMAC(Module, AutoCSR):

View File

@ -1,5 +1,5 @@
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac.core import gap, preamble, crc, padding, last_be
from misoclib.com.liteeth.core.mac.core import gap, preamble, crc, padding, last_be
from misoclib.com.liteeth.phy.sim import LiteEthPHYSim

View File

@ -1,5 +1,5 @@
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac.frontend import sram
from misoclib.com.liteeth.core.mac.frontend import sram
from migen.bus import wishbone
from migen.fhdl.simplify import FullMemoryWE

View File

@ -4,7 +4,7 @@ from migen.bus.transactions import *
from migen.sim.generic import run_simulation
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
from misoclib.com.liteeth.core.arp import LiteEthARP
from misoclib.com.liteeth.test.common import *

View File

@ -4,7 +4,7 @@ from migen.bus.transactions import *
from migen.sim.generic import run_simulation
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac.core import LiteEthMACCore
from misoclib.com.liteeth.core.mac.core import LiteEthMACCore
from misoclib.com.liteeth.test.common import *
from misoclib.com.liteeth.test.model import phy, mac

View File

@ -4,7 +4,7 @@ from migen.bus.transactions import *
from migen.sim.generic import run_simulation
from misoclib.com.liteeth.common import *
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
from misoclib.com.liteeth.test.common import *
from misoclib.com.liteeth.test.model import phy, mac

View File

@ -9,7 +9,7 @@ from misoclib.soc import mem_decoder
from misoclib.soc.sdram import SDRAMSoC
from misoclib.com.liteeth.phy import LiteEthPHY
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
class _CRG(Module):

View File

@ -15,7 +15,7 @@ from misoclib.soc import mem_decoder
from misoclib.soc.sdram import SDRAMSoC
from misoclib.com import gpio
from misoclib.com.liteeth.phy import LiteEthPHY
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
class _MXClockPads:

View File

@ -4,7 +4,7 @@ from migen.genlib.io import CRG
from misoclib.soc import SoC, mem_decoder
from misoclib.com.liteeth.phy import LiteEthPHY
from misoclib.com.liteeth.mac import LiteEthMAC
from misoclib.com.liteeth.core.mac import LiteEthMAC
class BaseSoC(SoC):