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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
|
-- Copyright (c) 2017 Nuand LLC
--
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-- THE SOFTWARE.
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.math_real.all;
use ieee.math_complex.all;
library work;
use work.bladerf;
use work.bladerf_p.all;
use work.fifo_readwrite_p.all;
library wlan;
use wlan.all;
architecture hosted_bladerf of bladerf is
attribute noprune : boolean;
attribute keep : boolean;
alias sys_reset_async : std_logic is fx3_ctl(7);
signal sys_reset_pclk : std_logic;
signal sys_reset : std_logic;
signal sys_clock : std_logic;
signal sys_pll_locked : std_logic;
signal sys_pll_reset : std_logic;
signal fx3_pclk_pll : std_logic;
signal fx3_pclk_pll_locked : std_logic;
signal fx3_pclk_pll_reset : std_logic;
signal rx_mux_sel : unsigned(2 downto 0);
signal nios_xb_gpio_in : std_logic_vector(31 downto 0) := (others => '0');
signal nios_xb_gpio_out : std_logic_vector(31 downto 0) := (others => '0');
signal nios_xb_gpio_oe : std_logic_vector(31 downto 0) := (others => '0');
signal nios_gpio : nios_gpio_t;
signal nios_gpo_slv : std_logic_vector(31 downto 0);
signal i2c_scl_in : std_logic;
signal i2c_scl_out : std_logic;
signal i2c_scl_oen : std_logic;
signal i2c_sda_in : std_logic;
signal i2c_sda_out : std_logic;
signal i2c_sda_oen : std_logic;
signal tx_sample_fifo : tx_fifo_t := TX_FIFO_T_DEFAULT;
signal rx_sample_fifo : rx_fifo_t := RX_FIFO_T_DEFAULT;
signal tx_loopback_fifo : loopback_fifo_t := LOOPBACK_FIFO_T_DEFAULT;
signal tx_meta_fifo : meta_fifo_tx_t := META_FIFO_TX_T_DEFAULT;
signal rx_meta_fifo : meta_fifo_rx_t := META_FIFO_RX_T_DEFAULT;
signal usb_speed_pclk : std_logic;
signal usb_speed_rx : std_logic;
signal usb_speed_tx : std_logic;
signal tx_reset : std_logic;
signal rx_reset : std_logic;
signal tx_enable_pclk : std_logic;
signal rx_enable_pclk : std_logic;
signal tx_enable : std_logic;
signal rx_enable : std_logic;
signal meta_en_pclk : std_logic;
signal meta_en_tx : std_logic;
signal meta_en_rx : std_logic;
signal packet_en_pclk : std_logic;
signal packet_en_tx : std_logic;
signal packet_en_rx : std_logic;
signal tx_timestamp : unsigned(63 downto 0);
signal rx_timestamp : unsigned(63 downto 0);
signal timestamp_sync : std_logic;
signal tx_loopback_enabled : std_logic := '0';
signal fx3_gpif_in : std_logic_vector(31 downto 0);
signal fx3_gpif_out : std_logic_vector(31 downto 0);
signal fx3_gpif_oe : std_logic;
signal fx3_ctl_in : std_logic_vector(12 downto 0);
signal fx3_ctl_out : std_logic_vector(12 downto 0);
signal fx3_ctl_oe : std_logic_vector(12 downto 0);
signal tx_underflow_led : std_logic := '1';
signal rx_overflow_led : std_logic := '1';
signal led1_blink : std_logic;
signal nios_sdo : std_logic;
signal nios_sdio : std_logic;
signal nios_sclk : std_logic;
signal nios_ss_n : std_logic_vector(1 downto 0);
signal command_serial_in : std_logic;
signal command_serial_out : std_logic;
signal timestamp_req : std_logic;
signal timestamp_ack : std_logic;
signal fx3_timestamp : unsigned(63 downto 0);
signal rx_ts_reset : std_logic;
signal tx_ts_reset : std_logic;
signal rx_trigger_ctl_i : std_logic_vector(7 downto 0);
signal rx_trigger_ctl : trigger_t := TRIGGER_T_DEFAULT;
alias rx_trigger_line : std_logic is mini_exp1;
signal tx_trigger_ctl_i : std_logic_vector(7 downto 0);
signal tx_trigger_ctl : trigger_t := TRIGGER_T_DEFAULT;
alias tx_trigger_line : std_logic is mini_exp1;
signal rffe_gpio : rffe_gpio_t := (
i => RFFE_GPI_DEFAULT,
o => pack(RFFE_GPO_DEFAULT)
);
signal ad9361 : mimo_2r2t_t := MIMO_2R2T_T_DEFAULT;
alias tx_clock is ad9361.clock;
alias rx_clock is ad9361.clock;
signal mimo_rx_enables : std_logic_vector(RFFE_GPO_DEFAULT.mimo_rx_en'range) := RFFE_GPO_DEFAULT.mimo_rx_en;
signal mimo_tx_enables : std_logic_vector(RFFE_GPO_DEFAULT.mimo_tx_en'range) := RFFE_GPO_DEFAULT.mimo_tx_en;
signal dac_controls : sample_controls_t(ad9361.ch'range) := (others => SAMPLE_CONTROL_DISABLE);
signal dac_streams : sample_streams_t(dac_controls'range) := (others => ZERO_SAMPLE);
signal adc_controls : sample_controls_t(ad9361.ch'range) := (others => SAMPLE_CONTROL_DISABLE);
signal adc_streams : sample_streams_t(adc_controls'range) := (others => ZERO_SAMPLE);
signal ps_sync : std_logic_vector(0 downto 0) := (others => '0');
signal tx_packet_control : packet_control_t ;
signal rx_packet_control : packet_control_t := PACKET_CONTROL_DEFAULT ;
signal rx_packet_ready : std_logic;
signal tx_packet_ready : std_logic;
signal tx_packet_empty : std_logic;
signal out_wlan_i : signed(15 downto 0);
signal out_wlan_q : signed(15 downto 0);
signal out_wlan_valid : std_logic;
signal in_wlan_i : signed(15 downto 0);
signal in_wlan_q : signed(15 downto 0);
signal in_wlan_valid : std_logic;
signal gain_inc_req : std_logic ;
signal gain_dec_req : std_logic ;
signal gain_rst_req : std_logic ;
signal gain_ack : std_logic ;
signal gain_nack : std_logic ;
signal gain_lock : std_logic ;
signal ctrl_out_0_r : std_logic ;
signal gain_max : std_logic ;
-- Arbiter signal
signal arbiter_request : std_logic_vector(1 downto 0) := (others => '0');
signal arbiter_granted : std_logic_vector(1 downto 0) := (others => '0');
signal arbiter_ack : std_logic_vector(1 downto 0) := (others => '0');
signal ctrl_gain_inc : std_logic ;
signal ctrl_gain_dec : std_logic ;
signal adi_ctrl_out_mux : std_logic_vector(adi_ctrl_out'range);
signal tx_ota_req : std_logic ;
signal tx_ota_req_r : std_logic ;
signal rfic_spi_ctrl_sdi : std_logic ;
signal rfic_spi_ctrl_csn : std_logic ;
signal rfic_spi_ctrl_sclk : std_logic ;
signal nios_adi_spi_sdi : std_logic ;
signal nios_adi_spi_csn : std_logic ;
signal nios_adi_spi_sclk : std_logic ;
begin
U_wlan_top : entity wlan.wlan_top
port map (
rx_clock => rx_clock,
rx_reset => rx_reset,
rx_enable => rx_enable,
tx_clock => tx_clock,
tx_reset => tx_reset,
tx_enable => tx_enable,
config_reg => x"00000000",
packet_en => packet_en_rx,
tx_packet_control => tx_packet_control,
tx_packet_empty => tx_packet_empty,
tx_packet_ready => tx_packet_ready,
rx_packet_control => rx_packet_control,
rx_packet_ready => rx_packet_ready,
tx_fifo_usedw => (others => '0' ),
tx_fifo_read => open,
tx_fifo_empty => '1',
tx_fifo_data => (others => '0' ),
rx_fifo_usedw => (others => '0' ),
rx_fifo_write => open,
rx_fifo_full => '0',
rx_fifo_data => open,
gain_inc_req => gain_inc_req,
gain_dec_req => gain_dec_req,
gain_rst_req => gain_rst_req,
gain_ack => '0',
gain_nack => '1',
gain_lock => gain_lock,
gain_max => '1',
tx_ota_req => tx_ota_req,
tx_ota_ack => '1',
out_i => out_wlan_i,
out_q => out_wlan_q,
out_valid => out_wlan_valid,
in_i => in_wlan_i,
in_q => in_wlan_q,
in_valid => in_wlan_valid
) ;
U_agc : entity work.bladerf_agc_adi_drv
port map (
clock => rx_clock,
reset => rx_reset,
enable => packet_en_rx,
gain_inc_req => gain_inc_req,
gain_dec_req => gain_dec_req,
gain_rst_req => gain_rst_req,
gain_ack => gain_ack,
gain_nack => gain_nack,
gain_max => gain_max,
ctrl_gain_inc => ctrl_gain_inc,
ctrl_gain_dec => ctrl_gain_dec
);
-- ========================================================================
-- PLLs
-- ========================================================================
-- Create 80 MHz system clock from 38.4 MHz
U_system_pll : component system_pll
port map (
refclk => c5_clock2,
rst => sys_pll_reset,
outclk_0 => sys_clock,
locked => sys_pll_locked
);
U_pll_reset_pll : entity work.pll_reset
generic map (
SYS_CLOCK_FREQ_HZ => 38_400_000,
DEVICE_FAMILY => "Cyclone V"
)
port map (
sys_clock => c5_clock2,
pll_locked => sys_pll_locked,
pll_reset => sys_pll_reset
);
-- Use PLL to adjust the phase of the FX3 PCLK to
-- retime the FX3 GPIF interface for timing closure.
U_fx3_pll : component fx3_pll
port map (
refclk => fx3_pclk,
rst => fx3_pclk_pll_reset,
outclk_0 => fx3_pclk_pll,
locked => fx3_pclk_pll_locked
);
U_pll_reset_fx3_pll : entity work.pll_reset
generic map (
SYS_CLOCK_FREQ_HZ => 100_000_000,
DEVICE_FAMILY => "Cyclone V"
)
port map (
sys_clock => fx3_pclk,
pll_locked => fx3_pclk_pll_locked,
pll_reset => fx3_pclk_pll_reset
);
-- ========================================================================
-- POWER SUPPLY SYNCHRONIZATION
-- ========================================================================
U_ps_sync : entity work.ps_sync
generic map (
OUTPUTS => 1,
USE_LFSR => true,
HOP_LIST => adp2384_sync_divisors( REFCLK_HZ => 38.4e6,
n_divisors => 7 ),
HOP_RATE => 100
)
port map (
refclk => c5_clock2,
sync => ps_sync
);
ps_sync_1p1 <= ps_sync(0);
ps_sync_1p8 <= ps_sync(0);
-- ========================================================================
-- FX3 GPIF
-- ========================================================================
-- FX3 GPIF
U_fx3_gpif : entity work.fx3_gpif
port map (
pclk => fx3_pclk_pll,
reset => sys_reset_pclk,
usb_speed => usb_speed_pclk,
meta_enable => meta_en_pclk,
packet_enable => packet_en_pclk,
rx_enable => rx_enable_pclk,
tx_enable => tx_enable_pclk,
gpif_in => fx3_gpif_in,
gpif_out => fx3_gpif_out,
gpif_oe => fx3_gpif_oe,
ctl_in => fx3_ctl_in,
ctl_out => fx3_ctl_out,
ctl_oe => fx3_ctl_oe,
tx_fifo_write => tx_sample_fifo.wreq,
tx_fifo_full => tx_sample_fifo.wfull,
tx_fifo_empty => tx_sample_fifo.wempty,
tx_fifo_usedw => tx_sample_fifo.wused,
tx_fifo_data => tx_sample_fifo.wdata,
tx_timestamp => fx3_timestamp,
tx_meta_fifo_write => tx_meta_fifo.wreq,
tx_meta_fifo_full => tx_meta_fifo.wfull,
tx_meta_fifo_empty => tx_meta_fifo.wempty,
tx_meta_fifo_usedw => tx_meta_fifo.wused,
tx_meta_fifo_data => tx_meta_fifo.wdata,
rx_fifo_read => rx_sample_fifo.rreq,
rx_fifo_full => rx_sample_fifo.rfull,
rx_fifo_empty => rx_sample_fifo.rempty,
rx_fifo_usedw => rx_sample_fifo.rused,
rx_fifo_data => rx_sample_fifo.rdata,
rx_meta_fifo_read => rx_meta_fifo.rreq,
rx_meta_fifo_full => rx_meta_fifo.rfull,
rx_meta_fifo_empty => rx_meta_fifo.rempty,
rx_meta_fifo_usedr => rx_meta_fifo.rused,
rx_meta_fifo_data => rx_meta_fifo.rdata
);
-- FX3 GPIF bidirectional signal control
register_gpif : process(sys_reset_pclk, fx3_pclk_pll)
begin
if( sys_reset_pclk = '1' ) then
fx3_gpif <= (others =>'Z');
fx3_gpif_in <= (others =>'0');
elsif( rising_edge(fx3_pclk_pll) ) then
fx3_gpif_in <= fx3_gpif;
if( fx3_gpif_oe = '1' ) then
fx3_gpif <= fx3_gpif_out;
else
fx3_gpif <= (others =>'Z');
end if;
end if;
end process;
-- FX3 CTL bidirectional signal control
generate_ctl : for i in fx3_ctl'range generate
fx3_ctl(i) <= fx3_ctl_out(i) when fx3_ctl_oe(i) = '1' else 'Z';
end generate;
fx3_ctl_in <= fx3_ctl;
toggle_led1 : process(fx3_pclk_pll)
variable count : natural range 0 to 10_000_000 := 10_000_000;
begin
if( rising_edge(fx3_pclk_pll) ) then
count := count - 1;
if( count = 0 ) then
count := 10_000_000;
led1_blink <= not led1_blink;
end if;
end if;
end process;
U_rfic_spi: entity work.bladerf_rfic_spi_ctrl
port map(
sclk => rfic_spi_ctrl_sclk,
miso => adi_spi_sdo,
mosi => rfic_spi_ctrl_sdi,
cs_n => rfic_spi_ctrl_csn,
arbiter_req => arbiter_request(1),
arbiter_grant => arbiter_granted(1),
arbiter_done => arbiter_ack(1),
clock => sys_clock,
reset => sys_reset,
tx_ota_req => tx_ota_req_r
);
U_rfic_mux: process(all)
begin
if( arbiter_granted(1) = '1' ) then
adi_spi_sdi <= rfic_spi_ctrl_sdi;
adi_spi_csn <= rfic_spi_ctrl_csn;
adi_spi_sclk <= rfic_spi_ctrl_sclk;
else
adi_spi_sdi <= nios_adi_spi_sdi;
adi_spi_csn <= nios_adi_spi_csn;
adi_spi_sclk <= nios_adi_spi_sclk;
end if;
end process;
-- ========================================================================
-- NIOS SYSTEM
-- ========================================================================
U_nios_system : component nios_system
port map (
clk_clk => sys_clock,
reset_reset_n => '1',
dac_MISO => nios_sdo,
dac_MOSI => nios_sdio,
dac_SCLK => nios_sclk,
dac_SS_n => nios_ss_n,
spi_MISO => adi_spi_sdo,
spi_MOSI => nios_adi_spi_sdi,
spi_SCLK => nios_adi_spi_sclk,
spi_SS_n => nios_adi_spi_csn,
gpio_in_port => pack(nios_gpio.i, '1'),
gpio_out_port => nios_gpo_slv,
gpio_rffe_0_in_port => pack(rffe_gpio),
gpio_rffe_0_out_port => rffe_gpio.o,
ad9361_dac_sync_in_sync => '0',
ad9361_dac_sync_out_sync => adi_sync_in,
ad9361_data_clock_clk => ad9361.clock, -- out std_logic;
ad9361_data_reset_reset => ad9361.reset, -- out std_logic;
ad9361_device_if_rx_clk_in_p => adi_rx_clock,
ad9361_device_if_rx_clk_in_n => '0',
ad9361_device_if_rx_frame_in_p => adi_rx_frame,
ad9361_device_if_rx_frame_in_n => '0',
ad9361_device_if_rx_data_in_p => adi_rx_data,
ad9361_device_if_rx_data_in_n => (others => '0'),
ad9361_device_if_tx_clk_out_p => adi_tx_clock,
ad9361_device_if_tx_clk_out_n => open,
ad9361_device_if_tx_frame_out_p => adi_tx_frame,
ad9361_device_if_tx_frame_out_n => open,
ad9361_device_if_tx_data_out_p => adi_tx_data,
ad9361_device_if_tx_data_out_n => open,
ad9361_adc_i0_enable => ad9361.ch(0).adc.i.enable, -- out sl
ad9361_adc_i0_valid => ad9361.ch(0).adc.i.valid, -- out sl
ad9361_adc_i0_data => ad9361.ch(0).adc.i.data, -- out slv(15:0)
ad9361_adc_i1_enable => ad9361.ch(1).adc.i.enable, -- out sl
ad9361_adc_i1_valid => ad9361.ch(1).adc.i.valid, -- out sl
ad9361_adc_i1_data => ad9361.ch(1).adc.i.data, -- out slv(15:0)
ad9361_adc_overflow_ovf => ad9361.adc_overflow, -- in sl
ad9361_adc_q0_enable => ad9361.ch(0).adc.q.enable, -- out sl
ad9361_adc_q0_valid => ad9361.ch(0).adc.q.valid, -- out sl
ad9361_adc_q0_data => ad9361.ch(0).adc.q.data, -- out slv(15:0)
ad9361_adc_q1_enable => ad9361.ch(1).adc.q.enable, -- out sl
ad9361_adc_q1_valid => ad9361.ch(1).adc.q.valid, -- out sl
ad9361_adc_q1_data => ad9361.ch(1).adc.q.data, -- out slv(15:0)
ad9361_adc_underflow_unf => ad9361.adc_underflow, -- in sl
ad9361_dac_i0_enable => ad9361.ch(0).dac.i.enable, -- out sl
ad9361_dac_i0_valid => ad9361.ch(0).dac.i.valid, -- out sl
ad9361_dac_i0_data => ad9361.ch(0).dac.i.data, -- in slv(15:0)
ad9361_dac_i1_enable => ad9361.ch(1).dac.i.enable, -- out sl
ad9361_dac_i1_valid => ad9361.ch(1).dac.i.valid, -- out sl
ad9361_dac_i1_data => ad9361.ch(1).dac.i.data, -- in slv(15:0)
ad9361_dac_overflow_ovf => ad9361.dac_overflow, -- in sl
ad9361_dac_q0_enable => ad9361.ch(0).dac.q.enable, -- out sl
ad9361_dac_q0_valid => ad9361.ch(0).dac.q.valid, -- out sl
ad9361_dac_q0_data => ad9361.ch(0).dac.q.data, -- in slv(15:0)
ad9361_dac_q1_enable => ad9361.ch(1).dac.q.enable, -- out sl
ad9361_dac_q1_valid => ad9361.ch(1).dac.q.valid, -- out sl
ad9361_dac_q1_data => ad9361.ch(1).dac.q.data, -- in slv(15:0)
ad9361_dac_underflow_unf => ad9361.dac_underflow, -- in sl
xb_gpio_in_port => nios_xb_gpio_in,
xb_gpio_out_port => nios_xb_gpio_out,
xb_gpio_dir_export => nios_xb_gpio_oe,
command_serial_in => command_serial_in,
command_serial_out => command_serial_out,
oc_i2c_arst_i => '0',
oc_i2c_scl_pad_i => i2c_scl_in,
oc_i2c_scl_pad_o => i2c_scl_out,
oc_i2c_scl_padoen_o => i2c_scl_oen,
oc_i2c_sda_pad_i => i2c_sda_in,
oc_i2c_sda_pad_o => i2c_sda_out,
oc_i2c_sda_padoen_o => i2c_sda_oen,
rx_tamer_ts_sync_in => '0',
rx_tamer_ts_sync_out => open,
rx_tamer_ts_pps => '0',
rx_tamer_ts_clock => rx_clock,
rx_tamer_ts_reset => rx_ts_reset,
unsigned(rx_tamer_ts_time) => rx_timestamp,
tx_tamer_ts_sync_in => '0',
tx_tamer_ts_sync_out => open,
tx_tamer_ts_pps => '0',
tx_tamer_ts_clock => tx_clock,
tx_tamer_ts_reset => tx_ts_reset,
unsigned(tx_tamer_ts_time) => tx_timestamp,
rx_trigger_ctl_out_port => rx_trigger_ctl_i,
tx_trigger_ctl_out_port => tx_trigger_ctl_i,
rx_trigger_ctl_in_port => pack(rx_trigger_ctl),
tx_trigger_ctl_in_port => pack(tx_trigger_ctl),
arbiter_request => arbiter_request,
arbiter_granted => arbiter_granted,
arbiter_ack => arbiter_ack
);
-- FX3 UART
command_serial_in <= fx3_uart_txd when sys_reset = '0' else '1';
fx3_uart_rxd <= command_serial_out when sys_reset = '0' else 'Z';
-- FX3 UART CTS and Flash SPI CSx are tied to the same signal.
-- Allow SPI accesses when FPGA is in reset
fx3_uart_cts <= '1' when sys_reset_pclk = '0' else 'Z';
-- Unpack the Nios general-purpose outputs into a record
nios_gpio.o <= unpack(nios_gpo_slv);
-- Readback of Nios general-purpose outputs
nios_gpio.i.gpo_readback <= nios_gpio.o;
-- RFFE GPIO outputs
adi_ctrl_in <= unpack(rffe_gpio.o).ctrl_in;
adi_tx_spdt2_v <= unpack(rffe_gpio.o).tx_spdt2;
adi_tx_spdt1_v <= unpack(rffe_gpio.o).tx_spdt1;
tx_bias_en <= unpack(rffe_gpio.o).tx_bias_en;
adi_rx_spdt2_v <= unpack(rffe_gpio.o).rx_spdt2;
adi_rx_spdt1_v <= unpack(rffe_gpio.o).rx_spdt1;
rx_bias_en <= unpack(rffe_gpio.o).rx_bias_en;
--adi_sync_in <= unpack(rffe_gpio.o).sync_in;
adi_en_agc <= unpack(rffe_gpio.o).en_agc;
adi_txnrx <= unpack(rffe_gpio.o).txnrx; -- when nios_gpio.o.packet_en = '0' else tx_ota_req;
adi_enable <= unpack(rffe_gpio.o).enable;
adi_reset_n <= unpack(rffe_gpio.o).reset_n;
-- Unpack trigger GPIO bits into records
rx_trigger_ctl <= unpack(rx_trigger_ctl_i, rx_trigger_line);
tx_trigger_ctl <= unpack(tx_trigger_ctl_i, tx_trigger_line);
-- LEDs
led(1) <= led1_blink when nios_gpio.o.led_mode = '0' else not nios_gpio.o.leds(1);
led(2) <= tx_underflow_led when nios_gpio.o.led_mode = '0' else not nios_gpio.o.leds(2);
led(3) <= rx_overflow_led when nios_gpio.o.led_mode = '0' else not nios_gpio.o.leds(3);
-- DAC SPI (data latched on falling edge)
dac_sclk <= not nios_sclk when nios_gpio.o.adf_chip_enable = '0' else '0';
dac_sdi <= nios_sdio when nios_gpio.o.adf_chip_enable = '0' else '0';
dac_csn <= nios_ss_n(0) when nios_gpio.o.adf_chip_enable = '0' else '1';
-- ADF SPI (data latched on rising edge)
adf_sclk <= nios_sclk when nios_gpio.o.adf_chip_enable = '1' else '0';
adf_sdi <= nios_sdio when nios_gpio.o.adf_chip_enable = '1' else '0';
adf_csn <= nios_ss_n(1) when nios_gpio.o.adf_chip_enable = '1' else '1';
adf_ce <= nios_gpio.o.adf_chip_enable;
nios_sdo <= adf_muxout when ((nios_ss_n(1) = '0') and (nios_gpio.o.adf_chip_enable = '1'))
else '0';
-- Power monitor I2C
pwr_scl <= i2c_scl_out when i2c_scl_oen = '0' else 'Z';
pwr_sda <= i2c_sda_out when i2c_sda_oen = '0' else 'Z';
i2c_scl_in <= pwr_scl;
i2c_sda_in <= pwr_sda;
-- TPS2115A status
nios_gpio.i.pwr_status <= pwr_status;
-- SI53304 controls / clock output enables
si_clock_sel <= nios_gpio.o.si_clock_sel;
c5_clock2_oe <= '1';
exp_clock_oe <= exp_present and exp_clock_req;
ufl_clock_oe <= nios_gpio.o.ufl_clock_oe;
-- Expansion I2C
exp_i2c_scl <= 'Z';
exp_i2c_sda <= 'Z';
-- Expansion GPIO outputs
generate_xb_gpio_out : for i in exp_gpio'range generate
exp_gpio(i) <= nios_xb_gpio_out(i) when nios_xb_gpio_oe(i) = '1' else 'Z';
end generate;
-- TX Submodule
U_tx : entity work.tx
generic map (
NUM_STREAMS => dac_controls'length
)
port map (
tx_reset => tx_reset,
tx_clock => tx_clock,
tx_enable => tx_enable,
meta_en => meta_en_tx,
timestamp_reset => tx_ts_reset,
usb_speed => usb_speed_tx,
tx_underflow_led => tx_underflow_led,
tx_timestamp => tx_timestamp,
-- Triggering
trigger_arm => tx_trigger_ctl.arm,
trigger_fire => tx_trigger_ctl.fire,
trigger_master => tx_trigger_ctl.master,
trigger_line => tx_trigger_line,
-- Packet FIFO
packet_en => packet_en_tx,
packet_empty => tx_packet_empty,
packet_control => tx_packet_control,
packet_ready => tx_packet_ready,
-- Samples from host via FX3
sample_fifo_wclock => fx3_pclk_pll,
sample_fifo_wreq => tx_sample_fifo.wreq,
sample_fifo_wdata => tx_sample_fifo.wdata,
sample_fifo_wempty => tx_sample_fifo.wempty,
sample_fifo_wfull => tx_sample_fifo.wfull,
sample_fifo_wused => tx_sample_fifo.wused,
-- Metadata from host via FX3
meta_fifo_wclock => fx3_pclk_pll,
meta_fifo_wreq => tx_meta_fifo.wreq,
meta_fifo_wdata => tx_meta_fifo.wdata,
meta_fifo_wempty => tx_meta_fifo.wempty,
meta_fifo_wfull => tx_meta_fifo.wfull,
meta_fifo_wused => tx_meta_fifo.wused,
-- Digital Loopback Interface
loopback_enabled => tx_loopback_enabled,
loopback_fifo_wclock => tx_loopback_fifo.wclock,
loopback_fifo_wdata => tx_loopback_fifo.wdata,
loopback_fifo_wreq => tx_loopback_fifo.wreq,
loopback_fifo_wfull => tx_loopback_fifo.wfull,
loopback_fifo_wused => tx_loopback_fifo.wused,
-- RFFE Interface
dac_controls => dac_controls,
dac_streams => dac_streams
);
dac_assignment_proc : process( all )
begin
for i in dac_controls'range loop
dac_controls(i).enable <= (ad9361.ch(i).dac.i.enable or ad9361.ch(i).dac.q.enable or tx_loopback_enabled) and
mimo_tx_enables(i);
dac_controls(i).data_req <= (ad9361.ch(i).dac.i.valid or ad9361.ch(i).dac.q.valid or tx_loopback_enabled) and
mimo_tx_enables(i);
if( rising_edge(tx_clock) ) then
if( packet_en_tx = '1' and out_wlan_valid = '1' ) then
ad9361.ch(i).dac.i.data <= std_logic_vector(out_wlan_i(11 downto 0)) & "0000";
ad9361.ch(i).dac.q.data <= std_logic_vector(out_wlan_q(11 downto 0)) & "0000";
elsif( packet_en_tx = '0' and dac_streams(i).data_v = '1') then
ad9361.ch(i).dac.i.data <= std_logic_vector(dac_streams(i).data_i(11 downto 0)) & "0000";
ad9361.ch(i).dac.q.data <= std_logic_vector(dac_streams(i).data_q(11 downto 0)) & "0000";
end if;
end if;
end loop;
end process;
-- RX Submodule
U_rx : entity work.rx
generic map (
NUM_STREAMS => adc_controls'length
)
port map (
rx_reset => rx_reset,
rx_clock => rx_clock,
rx_enable => rx_enable,
meta_en => meta_en_rx,
timestamp_reset => rx_ts_reset,
usb_speed => usb_speed_rx,
rx_mux_sel => rx_mux_sel,
rx_overflow_led => rx_overflow_led,
rx_timestamp => rx_timestamp,
-- Triggering
trigger_arm => rx_trigger_ctl.arm,
trigger_fire => rx_trigger_ctl.fire,
trigger_master => rx_trigger_ctl.master,
trigger_line => rx_trigger_line,
-- Packet FIFO
packet_en => packet_en_rx,
packet_control => rx_packet_control,
packet_ready => rx_packet_ready,
-- Samples to host via FX3
sample_fifo_rclock => fx3_pclk_pll,
sample_fifo_raclr => not rx_enable_pclk,
sample_fifo_rreq => rx_sample_fifo.rreq,
sample_fifo_rdata => rx_sample_fifo.rdata,
sample_fifo_rempty => rx_sample_fifo.rempty,
sample_fifo_rfull => rx_sample_fifo.rfull,
sample_fifo_rused => rx_sample_fifo.rused,
-- Mini expansion signals
mini_exp => mini_exp2 & mini_exp1,
-- Metadata to host via FX3
meta_fifo_rclock => fx3_pclk_pll,
meta_fifo_raclr => not rx_enable_pclk,
meta_fifo_rreq => rx_meta_fifo.rreq,
meta_fifo_rdata => rx_meta_fifo.rdata,
meta_fifo_rempty => rx_meta_fifo.rempty,
meta_fifo_rfull => rx_meta_fifo.rfull,
meta_fifo_rused => rx_meta_fifo.rused,
-- Digital Loopback Interface
loopback_fifo_wenabled => tx_loopback_enabled,
loopback_fifo_wreset => tx_reset,
loopback_fifo_wclock => tx_loopback_fifo.wclock,
loopback_fifo_wdata => tx_loopback_fifo.wdata,
loopback_fifo_wreq => tx_loopback_fifo.wreq,
loopback_fifo_wfull => tx_loopback_fifo.wfull,
loopback_fifo_wused => tx_loopback_fifo.wused,
-- RFFE Interface
adc_controls => adc_controls,
adc_streams => adc_streams
);
adc_assignment_proc : process( all )
begin
for i in adc_controls'range loop
adc_controls(i).enable <= (ad9361.ch(i).adc.i.enable or ad9361.ch(i).adc.q.enable) and mimo_rx_enables(i);
adc_controls(i).data_req <= '1';
adc_streams(i).data_i <= signed(ad9361.ch(i).adc.i.data);
adc_streams(i).data_q <= signed(ad9361.ch(i).adc.q.data);
adc_streams(i).data_v <= ad9361.ch(i).adc.i.valid or ad9361.ch(i).adc.q.valid;
end loop;
end process;
in_wlan_i <= adc_streams(0).data_i(in_wlan_i'range);
in_wlan_q <= adc_streams(0).data_q(in_wlan_i'range);
in_wlan_valid <= adc_streams(0).data_v;
-- ========================================================================
-- RESET SYNCHRONIZERS
-- ========================================================================
U_reset_sync_pclk : entity work.reset_synchronizer
generic map (
INPUT_LEVEL => '1',
OUTPUT_LEVEL => '1'
)
port map (
clock => fx3_pclk_pll,
async => sys_reset_async,
sync => sys_reset_pclk
);
U_reset_sync_sys : entity work.reset_synchronizer
generic map (
INPUT_LEVEL => '1',
OUTPUT_LEVEL => '1'
)
port map (
clock => sys_clock,
async => sys_reset_async,
sync => sys_reset
);
U_reset_sync_rx : entity work.reset_synchronizer
generic map (
INPUT_LEVEL => '1',
OUTPUT_LEVEL => '1'
)
port map (
clock => rx_clock,
async => sys_reset_pclk,
sync => rx_reset
);
U_reset_sync_tx : entity work.reset_synchronizer
generic map (
INPUT_LEVEL => '1',
OUTPUT_LEVEL => '1'
)
port map (
clock => tx_clock,
async => sys_reset_pclk,
sync => tx_reset
);
-- ========================================================================
-- SYNCHRONIZERS
-- ========================================================================
U_sync_usb_speed_pclk : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => fx3_pclk_pll,
async => nios_gpio.o.usb_speed,
sync => usb_speed_pclk
);
U_sync_usb_speed_rx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => nios_gpio.o.usb_speed,
sync => usb_speed_rx
);
U_sync_usb_speed_tx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => tx_clock,
async => nios_gpio.o.usb_speed,
sync => usb_speed_tx
);
U_sync_meta_en_pclk : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => fx3_pclk_pll,
async => nios_gpio.o.meta_sync,
sync => meta_en_pclk
);
U_sync_meta_en_rx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => nios_gpio.o.meta_sync,
sync => meta_en_rx
);
U_sync_meta_en_tx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => tx_clock,
async => nios_gpio.o.meta_sync,
sync => meta_en_tx
);
U_sync_packet_en_pclk : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => fx3_pclk_pll,
async => nios_gpio.o.packet_en,
sync => packet_en_pclk
);
U_sync_packet_en_rx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => nios_gpio.o.packet_en,
sync => packet_en_rx
);
U_sync_packet_en_tx : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => tx_clock,
async => nios_gpio.o.packet_en,
sync => packet_en_tx
);
U_tx_ota_sys : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => sys_clock,
async => tx_ota_req,
sync => tx_ota_req_r
);
generate_sync_rx_mux_sel : for i in rx_mux_sel'range generate
U_sync_rx_mux_sel : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => nios_gpio.o.rx_mux_sel(i),
sync => rx_mux_sel(i)
);
end generate;
generate_sync_mimo_rx_en : for i in mimo_rx_enables'range generate
U_sync_mimo_rx_en : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => unpack(rffe_gpio.o).mimo_rx_en(i),
sync => mimo_rx_enables(i)
);
end generate;
generate_sync_mimo_tx_en : for i in mimo_tx_enables'range generate
U_sync_mimo_tx_en : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => tx_clock,
async => unpack(rffe_gpio.o).mimo_tx_en(i),
sync => mimo_tx_enables(i)
);
end generate;
mux_adi_ctrl_out: process(all)
begin
for i in adi_ctrl_out'range loop
if( packet_en_rx = '0' ) then
adi_ctrl_out_mux(i) <= adi_ctrl_out(i);
else
if( i = 0 or i = 2 ) then
adi_ctrl_out_mux(i) <= ctrl_gain_dec;
elsif( i = 1 or i = 3 ) then
adi_ctrl_out_mux(i) <= ctrl_gain_inc;
else
adi_ctrl_out_mux(i) <= adi_ctrl_out(i);
end if;
end if;
end loop;
end process;
U_ctrl_out_sync : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => rx_clock,
async => adi_ctrl_out(0),
sync => ctrl_out_0_r
);
U_agc_lock : entity work.edge_detector
generic map (
EDGE_RISE => '1',
EDGE_FALL => '0'
)
port map (
clock => rx_clock,
reset => '0',
sync_in => ctrl_out_0_r,
pulse_out => gain_lock
) ;
generate_sync_adi_ctrl_out : for i in adi_ctrl_out'range generate
U_sync_adi_ctrl_out : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => sys_clock,
async => adi_ctrl_out_mux(i),
sync => rffe_gpio.i.ctrl_out(i)
);
end generate;
U_sync_adf_muxout : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => '0',
clock => sys_clock,
async => adf_muxout,
sync => rffe_gpio.i.adf_muxout
);
generate_sync_xb_gpio_in : for i in exp_gpio'range generate
U_sync_xb_gpio_in : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
) port map (
reset => '0',
clock => sys_clock,
async => exp_gpio(i),
sync => nios_xb_gpio_in(i)
);
end generate;
U_sync_rx_enable : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => rx_reset,
clock => rx_clock,
async => rx_enable_pclk,
sync => rx_enable
);
U_sync_tx_enable : entity work.synchronizer
generic map (
RESET_LEVEL => '0'
)
port map (
reset => tx_reset,
clock => tx_clock,
async => tx_enable_pclk,
sync => tx_enable
);
-- ========================================================================
-- HANDSHAKES
-- ========================================================================
drive_handshake_timestamp : process( fx3_pclk_pll, sys_reset_pclk )
begin
if( sys_reset_pclk = '1' ) then
timestamp_req <= '0';
elsif( rising_edge(fx3_pclk_pll) ) then
if( meta_en_pclk = '0' ) then
timestamp_req <= '0';
else
if( timestamp_ack = '0' ) then
timestamp_req <= '1';
elsif( timestamp_ack = '1' ) then
timestamp_req <= '0';
end if;
end if;
end if;
end process;
U_handshake_timestamp : entity work.handshake
generic map (
DATA_WIDTH => tx_timestamp'length
)
port map (
source_clock => tx_clock,
source_reset => tx_reset,
source_data => std_logic_vector(tx_timestamp),
dest_clock => fx3_pclk_pll,
dest_reset => sys_reset_pclk,
unsigned(dest_data) => fx3_timestamp,
dest_req => timestamp_req,
dest_ack => timestamp_ack
);
end architecture;
|