Skip to content

Commit

Permalink
Update common_cells
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Mar 13, 2024
1 parent 7fb9b43 commit 1342a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hardware/deps/common_cells
Submodule common_cells updated 88 files
+0 −32 .github/workflows/ci.yml
+23 −0 .github/workflows/gitlab-ci.yml
+22 −0 .github/workflows/lint.yml
+55 −57 .gitlab-ci.yml
+100 −62 Bender.yml
+133 −1 CHANGELOG.md
+59 −39 README.md
+33 −9 common_cells.core
+61 −20 include/common_cells/registers.svh
+6 −0 lint/common_cells.style.waiver
+33 −83 src/addr_decode.sv
+191 −0 src/addr_decode_dync.sv
+92 −0 src/addr_decode_napot.sv
+4 −2 src/cb_filter.sv
+24 −0 src/cdc_2phase.sv
+345 −0 src/cdc_2phase_clearable.sv
+327 −0 src/cdc_4phase.sv
+25 −2 src/cdc_fifo_2phase.sv
+27 −3 src/cdc_fifo_gray.sv
+393 −0 src/cdc_fifo_gray_clearable.sv
+529 −0 src/cdc_reset_ctrlr.sv
+27 −0 src/cdc_reset_ctrlr_pkg.sv
+3 −3 src/cf_math_pkg.sv
+0 −42 src/clk_div.sv
+392 −0 src/clk_int_div.sv
+95 −0 src/clk_int_div_static.sv
+292 −0 src/clk_mux_glitch_free.sv
+74 −0 src/deprecated/clk_div.sv
+3 −3 src/deprecated/fifo_v2.sv
+2 −2 src/deprecated/find_first_one.sv
+2 −2 src/deprecated/generic_fifo.sv
+2 −2 src/deprecated/generic_fifo_adv.sv
+15 −33 src/edge_propagator.sv
+53 −0 src/edge_propagator_ack.sv
+3 −3 src/exp_backoff.sv
+2 −4 src/fall_through_register.sv
+5 −3 src/fifo_v3.sv
+7 −8 src/id_queue.sv
+5 −5 src/isochronous_4phase_handshake.sv
+7 −7 src/isochronous_spill_register.sv
+3 −4 src/lfsr.sv
+4 −2 src/lfsr_16bit.sv
+4 −2 src/lfsr_8bit.sv
+139 −0 src/lossy_valid_to_stream.sv
+16 −15 src/lzc.sv
+120 −0 src/mem_to_banks.sv
+225 −0 src/mem_to_banks_detailed.sv
+154 −0 src/multiaddr_decode.sv
+6 −6 src/onehot_to_bin.sv
+122 −0 src/passthrough_stream_fifo.sv
+28 −15 src/plru_tree.sv
+18 −38 src/popcount.sv
+20 −0 src/read.sv
+20 −17 src/rr_arb_tree.sv
+25 −15 src/rstgen_bypass.sv
+11 −25 src/shift_reg.sv
+65 −0 src/shift_reg_gated.sv
+3 −3 src/spill_register_flushable.sv
+2 −2 src/stream_arbiter_flushable.sv
+11 −9 src/stream_delay.sv
+117 −0 src/stream_fifo_optimal_wrap.sv
+3 −3 src/stream_fork.sv
+3 −3 src/stream_fork_dynamic.sv
+3 −3 src/stream_intf.sv
+9 −11 src/stream_join.sv
+47 −0 src/stream_join_dynamic.sv
+3 −3 src/stream_mux.sv
+19 −10 src/stream_omega_net.sv
+9 −26 src/stream_register.sv
+82 −0 src/stream_throttle.sv
+3 −3 src/stream_to_mem.sv
+23 −12 src/stream_xbar.sv
+6 −4 src/sub_per_hash.sv
+2 −0 src/sync.sv
+5 −1 src/unread.sv
+25 −3 src_files.yml
+161 −163 test/cb_filter_tb.sv
+380 −0 test/cdc_2phase_clearable_tb.sv
+291 −0 test/cdc_fifo_clearable_tb.sv
+84 −0 test/clk_int_div_static_tb.sv
+196 −0 test/clk_int_div_tb.sv
+123 −0 test/clk_mux_glitch_free_tb.sv
+25 −1 test/fifo_tb.sv
+109 −0 test/lossy_valid_to_stream_tb.sv
+135 −0 test/passthrough_stream_fifo_tb.sv
+18 −1 test/popcount_tb.sv
+78 −81 test/stream_register_tb.sv
+30 −32 test/sub_per_hash_tb.sv

0 comments on commit 1342a46

Please sign in to comment.