litedram


Namelitedram JSON
Version 2023.8 PyPI version JSON
download
home_pagehttp://enjoy-digital.fr
SummarySmall footprint and configurable DRAM core
upload_time2023-09-17 22:02:31
maintainer
docs_urlNone
authorFlorent Kermarrec
requires_python~=3.6
licenseBSD
keywords hdl asic fpga hardware design
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ```
                                 __   _ __      ___  ___  ___   __  ___
                                / /  (_) /____ / _ \/ _ \/ _ | /  |/  /
                               / /__/ / __/ -_) // / , _/ __ |/ /|_/ /
                              /____/_/\__/\__/____/_/|_/_/ |_/_/  /_/

                                   Copyright 2015-2022 / EnjoyDigital
                               A small footprint and configurable DRAM core
                                        powered by Migen & LiteX
```

[![](https://github.com/enjoy-digital/litedram/workflows/ci/badge.svg)](https://github.com/enjoy-digital/litedram/actions) ![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)


[> Intro
--------
LiteDRAM provides a small footprint and configurable DRAM core.

LiteDRAM is part of LiteX libraries whose aims are to lower entry level of
complex FPGA cores by providing simple, elegant and efficient implementations
of components used in today's SoC such as Ethernet, SATA, PCIe, SDRAM Controller...

Using Migen to describe the HDL allows the core to be highly and easily configurable.

LiteDRAM can be used as LiteX library or can be integrated with your standard
design flow by generating the verilog rtl that you will use as a standard core.

[> Features
-----------
PHY:
  - Generic SDRAM PHY (vendor agnostic, tested on Xilinx, Altera, Lattice)
  - Spartan6 DDR/LPDDR/DDR2/DDR3 PHY (1:2 or 1:4 frequency ratio)
  - Spartan7/Artix7/Kintex7/Virtex7 DDR2/DDR3 PHY (1:2 or 1:4 frequency ratio)
  - Kintex/Virtex Ultrascale (Plus) DDR3/DDR4 PHY (1:4 frequency ratio)
  - ECP5 DDR3 PHY (1:2 frequency ratio)

Core:
  - Fully pipelined, high performance.
  - Configurable commands depth on bankmachines.
  - Auto-Precharge.
  - Periodic refresh/ZQ short calibration (up to 8 postponed refreshes).

Frontend:
  - Configurable crossbar (simply use crossbar.get_port() to add a new port!)
  - Ports arbitration transparent to the user.
  - Native, AXI-MM or Wishbone user interface.
  - DMA reader/writer.
  - BIST.
  - ECC (Error-correcting code)

[> FPGA Proven
---------------
LiteDRAM is already used in commercial and open-source designs:
- HDMI2USB: http://hdmi2usb.tv/home/
- NeTV2: https://www.crowdsupply.com/alphamax/netv2
- USBSniffer: http://blog.lambdaconcept.com/doku.php?id=products:usb_sniffer
- and others commercial designs...

[> Possible improvements
------------------------
- add Avalon-ST interface.
- add support for Altera devices.
- add more documentation
- ... See below Support and consulting :)

If you want to support these features, please contact us at florent [AT]
enjoy-digital.fr.

[> Getting started
------------------
1. Install Python 3.6+ and FPGA vendor's development tools.
2. Install LiteX and the cores by following the LiteX's wiki [installation guide](https://github.com/enjoy-digital/litex/wiki/Installation).
3. You can find examples of integration of the core with LiteX in LiteX-Boards and in the examples directory.

[> Tests
--------
Unit tests are available in ./test/.
To run all the unit tests:
```sh
$ ./setup.py test
```

Tests can also be run individually:
```sh
$ python3 -m unittest test.test_name
```

[> License
----------
LiteDRAM is released under the very permissive two-clause BSD license. Under
the terms of this license, you are authorized to use LiteDRAM for closed-source
proprietary designs.
Even though we do not require you to do so, those things are awesome, so please
do them if possible:
 - tell us that you are using LiteDRAM
 - cite LiteDRAM in publications related to research it has helped
 - send us feedback and suggestions for improvements
 - send us bug reports when something goes wrong
 - send us the modifications and improvements you have done to LiteDRAM.

[> Support and consulting
-------------------------
We love open-source hardware and like sharing our designs with others.

LiteDRAM is developed and maintained by EnjoyDigital.

If you would like to know more about LiteDRAM or if you are already a happy
user and would like to extend it for your needs, EnjoyDigital can provide standard
commercial support as well as consulting services.

So feel free to contact us, we'd love to work with you! (and eventually shorten
the list of the possible improvements :)

[> Contact
----------
E-mail: florent [AT] enjoy-digital.fr

            

Raw data

            {
    "_id": null,
    "home_page": "http://enjoy-digital.fr",
    "name": "litedram",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "~=3.6",
    "maintainer_email": "",
    "keywords": "HDL ASIC FPGA hardware design",
    "author": "Florent Kermarrec",
    "author_email": "florent@enjoy-digital.fr",
    "download_url": "https://files.pythonhosted.org/packages/69/a5/9bd4520f72367bf0ee92da8e6252246ce8ca72a73c69fbf9d6881fc8b3d7/litedram-2023.8.tar.gz",
    "platform": null,
    "description": "```\n                                 __   _ __      ___  ___  ___   __  ___\n                                / /  (_) /____ / _ \\/ _ \\/ _ | /  |/  /\n                               / /__/ / __/ -_) // / , _/ __ |/ /|_/ /\n                              /____/_/\\__/\\__/____/_/|_/_/ |_/_/  /_/\n\n                                   Copyright 2015-2022 / EnjoyDigital\n                               A small footprint and configurable DRAM core\n                                        powered by Migen & LiteX\n```\n\n[![](https://github.com/enjoy-digital/litedram/workflows/ci/badge.svg)](https://github.com/enjoy-digital/litedram/actions) ![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)\n\n\n[> Intro\n--------\nLiteDRAM provides a small footprint and configurable DRAM core.\n\nLiteDRAM is part of LiteX libraries whose aims are to lower entry level of\ncomplex FPGA cores by providing simple, elegant and efficient implementations\nof components used in today's SoC such as Ethernet, SATA, PCIe, SDRAM Controller...\n\nUsing Migen to describe the HDL allows the core to be highly and easily configurable.\n\nLiteDRAM can be used as LiteX library or can be integrated with your standard\ndesign flow by generating the verilog rtl that you will use as a standard core.\n\n[> Features\n-----------\nPHY:\n  - Generic SDRAM PHY (vendor agnostic, tested on Xilinx, Altera, Lattice)\n  - Spartan6 DDR/LPDDR/DDR2/DDR3 PHY (1:2 or 1:4 frequency ratio)\n  - Spartan7/Artix7/Kintex7/Virtex7 DDR2/DDR3 PHY (1:2 or 1:4 frequency ratio)\n  - Kintex/Virtex Ultrascale (Plus) DDR3/DDR4 PHY (1:4 frequency ratio)\n  - ECP5 DDR3 PHY (1:2 frequency ratio)\n\nCore:\n  - Fully pipelined, high performance.\n  - Configurable commands depth on bankmachines.\n  - Auto-Precharge.\n  - Periodic refresh/ZQ short calibration (up to 8 postponed refreshes).\n\nFrontend:\n  - Configurable crossbar (simply use crossbar.get_port() to add a new port!)\n  - Ports arbitration transparent to the user.\n  - Native, AXI-MM or Wishbone user interface.\n  - DMA reader/writer.\n  - BIST.\n  - ECC (Error-correcting code)\n\n[> FPGA Proven\n---------------\nLiteDRAM is already used in commercial and open-source designs:\n- HDMI2USB: http://hdmi2usb.tv/home/\n- NeTV2: https://www.crowdsupply.com/alphamax/netv2\n- USBSniffer: http://blog.lambdaconcept.com/doku.php?id=products:usb_sniffer\n- and others commercial designs...\n\n[> Possible improvements\n------------------------\n- add Avalon-ST interface.\n- add support for Altera devices.\n- add more documentation\n- ... See below Support and consulting :)\n\nIf you want to support these features, please contact us at florent [AT]\nenjoy-digital.fr.\n\n[> Getting started\n------------------\n1. Install Python 3.6+ and FPGA vendor's development tools.\n2. Install LiteX and the cores by following the LiteX's wiki [installation guide](https://github.com/enjoy-digital/litex/wiki/Installation).\n3. You can find examples of integration of the core with LiteX in LiteX-Boards and in the examples directory.\n\n[> Tests\n--------\nUnit tests are available in ./test/.\nTo run all the unit tests:\n```sh\n$ ./setup.py test\n```\n\nTests can also be run individually:\n```sh\n$ python3 -m unittest test.test_name\n```\n\n[> License\n----------\nLiteDRAM is released under the very permissive two-clause BSD license. Under\nthe terms of this license, you are authorized to use LiteDRAM for closed-source\nproprietary designs.\nEven though we do not require you to do so, those things are awesome, so please\ndo them if possible:\n - tell us that you are using LiteDRAM\n - cite LiteDRAM in publications related to research it has helped\n - send us feedback and suggestions for improvements\n - send us bug reports when something goes wrong\n - send us the modifications and improvements you have done to LiteDRAM.\n\n[> Support and consulting\n-------------------------\nWe love open-source hardware and like sharing our designs with others.\n\nLiteDRAM is developed and maintained by EnjoyDigital.\n\nIf you would like to know more about LiteDRAM or if you are already a happy\nuser and would like to extend it for your needs, EnjoyDigital can provide standard\ncommercial support as well as consulting services.\n\nSo feel free to contact us, we'd love to work with you! (and eventually shorten\nthe list of the possible improvements :)\n\n[> Contact\n----------\nE-mail: florent [AT] enjoy-digital.fr\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Small footprint and configurable DRAM core",
    "version": "2023.8",
    "project_urls": {
        "Download": "https://github.com/enjoy-digital/litedram",
        "Homepage": "http://enjoy-digital.fr"
    },
    "split_keywords": [
        "hdl",
        "asic",
        "fpga",
        "hardware",
        "design"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69a59bd4520f72367bf0ee92da8e6252246ce8ca72a73c69fbf9d6881fc8b3d7",
                "md5": "e9eeec7402661c26601c91d19e85034c",
                "sha256": "242a37057bd36db1ea7dff9ef29cc3ce1cc55c5a5a67fada232bc84d981d14d6"
            },
            "downloads": -1,
            "filename": "litedram-2023.8.tar.gz",
            "has_sig": false,
            "md5_digest": "e9eeec7402661c26601c91d19e85034c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.6",
            "size": 347187,
            "upload_time": "2023-09-17T22:02:31",
            "upload_time_iso_8601": "2023-09-17T22:02:31.613832Z",
            "url": "https://files.pythonhosted.org/packages/69/a5/9bd4520f72367bf0ee92da8e6252246ce8ca72a73c69fbf9d6881fc8b3d7/litedram-2023.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-17 22:02:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "enjoy-digital",
    "github_project": "litedram",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "litedram"
}
        
Elapsed time: 0.11226s