Skip to content

Commit

Permalink
build(deps): bump third_party/litedram from 2c60861 to afdf1af
Browse files Browse the repository at this point in the history
Bumps [third_party/litedram](https://github.com/enjoy-digital/litedram) from `2c60861` to `afdf1af`.
- [Commits](enjoy-digital/litedram@2c60861...afdf1af)

---
updated-dependencies:
- dependency-name: third_party/litedram
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 1, 2023
1 parent 1bf00a8 commit b8ab44c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/litedram
Submodule litedram updated 90 files
+40 −13 .github/workflows/ci.yml
+36 −15 CONTRIBUTORS
+1 −1 LICENSE
+9 −0 MANIFEST.in
+1 −1 README.md
+16 −20 bench/arty.py
+28 −12 bench/common.py
+12 −6 bench/ddr3_mr_gen.py
+13 −20 bench/genesys2.py
+16 −21 bench/kc705.py
+18 −26 bench/kcu105.py
+17 −24 bench/xcu1525.py
+7 −2 examples/arty.yml
+2 −1 examples/genesys2.yml
+6 −3 examples/kcu105.yml
+2 −1 examples/nexys4ddr.yml
+43 −0 examples/ulx3s.yml
+4 −2 examples/versa_ecp5.yml
+2 −1 examples/xcu1525.yml
+48 −13 litedram/common.py
+6 −5 litedram/core/__init__.py
+13 −1 litedram/core/bankmachine.py
+1 −1 litedram/core/crossbar.py
+5 −2 litedram/core/refresher.py
+66 −28 litedram/dfii.py
+20 −8 litedram/frontend/adapter.py
+233 −0 litedram/frontend/avalon.py
+177 −28 litedram/frontend/axi.py
+19 −7 litedram/frontend/bist.py
+89 −70 litedram/frontend/dma.py
+67 −26 litedram/frontend/ecc.py
+237 −15 litedram/frontend/fifo.py
+33 −31 litedram/frontend/wishbone.py
+323 −149 litedram/gen.py
+627 −163 litedram/init.py
+207 −2 litedram/modules.py
+1 −0 litedram/phy/__init__.py
+248 −0 litedram/phy/dfi.py
+20 −13 litedram/phy/ecp5ddrphy.py
+479 −0 litedram/phy/gw2ddrphy.py
+135 −0 litedram/phy/lpddr4/README.md
+8 −0 litedram/phy/lpddr4/__init__.py
+411 −0 litedram/phy/lpddr4/basephy.py
+220 −0 litedram/phy/lpddr4/commands.py
+269 −0 litedram/phy/lpddr4/s7phy.py
+605 −0 litedram/phy/lpddr4/sim.py
+155 −0 litedram/phy/lpddr4/simphy.py
+335 −0 litedram/phy/lpddr4/simsoc.py
+7 −0 litedram/phy/lpddr5/__init__.py
+549 −0 litedram/phy/lpddr5/basephy.py
+306 −0 litedram/phy/lpddr5/commands.py
+303 −0 litedram/phy/lpddr5/s7phy.py
+901 −0 litedram/phy/lpddr5/sim.py
+124 −0 litedram/phy/lpddr5/simphy.py
+388 −0 litedram/phy/lpddr5/simsoc.py
+96 −17 litedram/phy/model.py
+75 −0 litedram/phy/rpc/README.md
+0 −0 litedram/phy/rpc/__init__.py
+421 −0 litedram/phy/rpc/arty.py
+585 −0 litedram/phy/rpc/basephy.py
+291 −0 litedram/phy/rpc/commands.py
+259 −0 litedram/phy/rpc/s7phy.py
+265 −0 litedram/phy/rpc/simphy.py
+355 −0 litedram/phy/rpc/simsoc.py
+169 −0 litedram/phy/s7common.py
+154 −67 litedram/phy/s7ddrphy.py
+319 −0 litedram/phy/sim_utils.py
+95 −93 litedram/phy/usddrphy.py
+342 −0 litedram/phy/utils.py
+26 −1 setup.py
+5 −4 test/benchmark.py
+30 −0 test/common.py
+286 −0 test/phy_common.py
+53 −39 test/reference/ddr3_init.h
+52 −40 test/reference/ddr4_init.h
+37 −23 test/reference/sdr_init.h
+9 −1 test/test_adaptation.py
+256 −0 test/test_avalon.py
+31 −17 test/test_axi.py
+489 −0 test/test_dfi.py
+2 −0 test/test_ecc.py
+8 −4 test/test_examples.py
+40 −16 test/test_fifo.py
+37 −9 test/test_init.py
+703 −0 test/test_lpddr4.py
+772 −0 test/test_lpddr5.py
+249 −0 test/test_phy_utils.py
+1 −1 test/test_refresh.py
+87 −0 test/test_sim_utils.py
+14 −0 test/test_wishbone.py

0 comments on commit b8ab44c

Please sign in to comment.