├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── litehyperbus ├── __init__.py ├── core │ ├── __init__.py │ ├── hyperbus.py │ └── hyperram_ddrx2.py ├── frontend │ └── __init__.py └── phy │ ├── __init__.py │ └── ecp5phy_ddrx2.py ├── setup.py └── test ├── __init__.py └── test_hyperbus.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/README.md -------------------------------------------------------------------------------- /litehyperbus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /litehyperbus/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /litehyperbus/core/hyperbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/litehyperbus/core/hyperbus.py -------------------------------------------------------------------------------- /litehyperbus/core/hyperram_ddrx2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/litehyperbus/core/hyperram_ddrx2.py -------------------------------------------------------------------------------- /litehyperbus/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /litehyperbus/phy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /litehyperbus/phy/ecp5phy_ddrx2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/litehyperbus/phy/ecp5phy_ddrx2.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_hyperbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litex-hub/litehyperbus/HEAD/test/test_hyperbus.py --------------------------------------------------------------------------------