aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2022-03-18 19:44:35 +0000
committerGitHub <noreply@github.com>2022-03-18 19:44:35 +0000
commit7703cf61d0170ec3ac9db9a66cc99cbf5a8bbcf3 (patch)
tree6e6fc91202e567f85e324ff4b6398aa505d170a7
parent051228c49a6c25a861c9ef7bcbadd52d0e0c7060 (diff)
parent5e9236f9d4679d4596f0e593cdeff674229f5818 (diff)
downloadnextpnr-7703cf61d0170ec3ac9db9a66cc99cbf5a8bbcf3.tar.gz
nextpnr-7703cf61d0170ec3ac9db9a66cc99cbf5a8bbcf3.tar.bz2
nextpnr-7703cf61d0170ec3ac9db9a66cc99cbf5a8bbcf3.zip
Merge pull request #955 from YosysHQ/gatecat/mistral-updates-2
mistral: Updated CLK mux select name
-rw-r--r--.github/workflows/mistral_ci.yml2
-rw-r--r--mistral/bitstream.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mistral_ci.yml b/.github/workflows/mistral_ci.yml
index 408179b4..b0bbfb52 100644
--- a/.github/workflows/mistral_ci.yml
+++ b/.github/workflows/mistral_ci.yml
@@ -21,7 +21,7 @@ jobs:
- name: Execute build nextpnr
env:
MISTRAL_PATH: ${{ github.workspace }}/deps/mistral
- MISTRAL_REVISION: 6b0ce163d87200d0d5b7f330349aacf886f0f8be
+ MISTRAL_REVISION: ebfc0dd2cc7d6d2159b641a397c88554840e93c9
run: |
source ./.github/ci/build_mistral.sh
get_dependencies
diff --git a/mistral/bitstream.cc b/mistral/bitstream.cc
index 80490f1f..3e1b8b66 100644
--- a/mistral/bitstream.cc
+++ b/mistral/bitstream.cc
@@ -114,7 +114,7 @@ struct MistralBitgen
{
(void)ci; // currently unused
auto pos = CycloneV::xy2pos(x, y);
- cv->bmux_r_set(CycloneV::CMUXHG, pos, CycloneV::INPUT_SELECT, bi, 0x1b); // hardcode to general routing
+ cv->bmux_r_set(CycloneV::CMUXHG, pos, CycloneV::INPUT_SEL, bi, 0x1b); // hardcode to general routing
cv->bmux_m_set(CycloneV::CMUXHG, pos, CycloneV::TESTSYN_ENOUT_SELECT, bi, CycloneV::PRE_SYNENB);
}