Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ff6c0327a78f
Choose a base ref
...
head repository: amaranth-lang/amaranth
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0e18429fb755
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 21, 2020

  1. vendor: use nextpnr -12k for -12F devices; remove theoretical devices

    nextpnr now supports -12k; which replaces the use of -25k and --idcode
    together to build bitstreams compatible with -12F devices. Use this.
    
    This also removes the LFEUM-12K and its 5G counterpart; as per Dave Shah
    they're currently only theoretical FPGAs.
    ktemkin authored and whitequark committed Apr 21, 2020
    Copy the full SHA
    0e18429 View commit details
Showing with 1 addition and 3 deletions.
  1. +1 −3 nmigen/vendor/lattice_ecp5.py
4 changes: 1 addition & 3 deletions nmigen/vendor/lattice_ecp5.py
Original file line number Diff line number Diff line change
@@ -71,15 +71,13 @@ class LatticeECP5Platform(TemplatedPlatform):
# Trellis templates

_nextpnr_device_options = {
"LFE5U-12F": "--25k",
"LFE5U-12F": "--12k",
"LFE5U-25F": "--25k",
"LFE5U-45F": "--45k",
"LFE5U-85F": "--85k",
"LFE5UM-12F": "--um-25k",
"LFE5UM-25F": "--um-25k",
"LFE5UM-45F": "--um-45k",
"LFE5UM-85F": "--um-85k",
"LFE5UM5G-12F": "--um5g-25k",
"LFE5UM5G-25F": "--um5g-25k",
"LFE5UM5G-45F": "--um5g-45k",
"LFE5UM5G-85F": "--um5g-85k",