1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
#
# Copyright 2014 Ettus Research LLC
#
##################################################
# RFNoC Sources
##################################################
RFNOC_SRCS = $(abspath $(addprefix $(BASE_DIR)/../lib/rfnoc/, \
cmd_pkt_proc.v \
chdr_fifo_large.v \
chdr_framer.v \
chdr_framer_2clk.v \
chdr_deframer.v \
chdr_deframer_2clk.v \
noc_shell.v \
noc_shell_regs.vh \
chdr_pkt_types.vh \
axi_packet_mux.v \
axi_wrapper.v \
axi_bit_reduce.v \
noc_block_axi_fifo_loopback.v \
noc_block_axi_dma_fifo.v \
noc_block_replay.v \
noc_block_fir_filter.v \
noc_block_fft.v \
noc_block_null_source_sink.v \
noc_block_schmidl_cox.v \
noc_block_packet_resizer.v \
noc_block_sos_filter.v \
noc_block_split_stream.v \
noc_block_vector_iir.v \
noc_block_addsub.v \
noc_block_window.v \
noc_block_keep_one_in_n.v \
noc_block_pfb.v \
noc_block_export_io.v \
noc_block_conv_encoder_qpsk.v \
noc_block_siggen.v \
noc_block_digital_gain.v \
noc_block_debug.v \
pfb.v \
pfb_stage.v \
null_source.v \
schmidl_cox.v \
split_stream.v \
split_stream_fifo.v \
conj.v \
delay_fifo.v \
delay_type2.v \
delay_type3.v \
delay_type4.v \
complex_to_magsq.v \
phase_accum.v \
complex_invert.v \
periodic_framer.v \
threshold_scaled.v \
moving_sum.v \
peak_finder.v \
window.v \
counter.v \
puncture.v \
symbol_to_gray_bits.v \
ram_to_fifo.v \
const.v \
const_sreg.v \
cmul.v \
cadd.v \
noc_input_port.v \
noc_output_port.v \
noc_responder.v \
keep_one_in_n.v \
vector_iir.v \
addsub.v \
packet_resizer.v \
axi_pipe.v \
multiply.v \
mult.v \
mult_add.v \
mult_rc.v \
mult_add_rc.v \
fft_shift.v \
axi_pipe_join.v \
axi_pipe_mac.v \
axi_round_and_clip_complex.v \
axi_round_complex.v \
axi_clip_complex.v \
axi_join.v \
axi_sync.v \
split_complex.v \
axi_round_and_clip.v \
join_complex.v \
axi_round.v \
axi_clip.v \
axi_clip_unsigned.v \
axi_serializer.v \
axi_deserializer.v \
axi_packer.v \
complex_to_mag_approx.v \
noc_block_file_source.v \
file_source.v \
ofdm_plateau_detector.v \
ofdm_peak_detector.v \
fosphor/delay.v \
fosphor/fifo_srl.v \
fosphor/rng.v \
fosphor/f15_avg.v \
fosphor/f15_binmap.v \
fosphor/f15_core.v \
fosphor/f15_eoseq.v \
fosphor/f15_histo_mem.v \
fosphor/f15_line_mem.v \
fosphor/f15_logpwr.v \
fosphor/f15_maxhold.v \
fosphor/f15_packetizer.v \
fosphor/f15_rise_decay.v \
fosphor/f15_wf_agg.v \
fosphor/axi_logpwr.v \
noc_block_logpwr.v \
noc_block_fosphor.v \
noc_block_moving_avg.v \
ofdm_constellation_demapper.v \
noc_block_ofdm_constellation_demapper.v \
one_tap_equalizer.v \
noc_block_eq.v \
noc_block_ddc.v \
noc_block_duc.v \
cvita_hdr_parser.v \
cvita_hdr_encoder.v \
cvita_hdr_decoder.v \
cvita_hdr_modify.v \
axi_async_stream.v \
axi_rate_change.v \
axi_tag_time.v \
axi_drop_partial_packet.v \
cordic.v \
cordic_timed.v \
ddc.v \
duc.v \
cic_decimate.v \
cic_interpolate.v \
sine_tone.v \
axi_fir_filter.v \
fir_filter_slice.v \
axi_fir_filter_dec.v \
addsub.vhd \
dds_freq_tune.v \
dds_timed.v \
datapath_gatekeeper.v \
biquad_filter.v \
noc_traffic_counter.v \
))
|