wiki:Tutorials/Wireless/mmwaveRFSoC

Version 15 (modified by skrimpon, 3 years ago) ( diff )

Millimeter Wave Experimentation in COSMOS SB1 with Xilinx RFSoC

Upgrade in Progress

Authors:

  • Panagiotis Skrimponis, New York University: ps3857[at]nyu.edu
  • Prasanthi Maddala, Rutgers University

Last updated: October 18, 2021

Summary

Publications

For more information about the integration of the advanced programmable and open-source millimeter wave array systems in COSMOS, please read:

  1. T. Chen, P. Maddala, P. Skrimponis, J. Kolodziejski, X. Gu, A. Paidimarri, S. Rangan, G. Zussman, and I. Seskar, "Programmable and open-access millimeter-wave radios in the PAWR COSMOS testbed," in Proc. ACM Mobicom'21 Workshop on Wireless Network Testbeds, Experimental evaluation & CHaracterization (WiNTECH'21) (to appear), 2021. Download
  2. D. Raychaudhuri, I. Seskar, G. Zussman, T. Korakis, D. Kilper, T. Chen, J. Kolodziejski, M. Sherman, Z. Kostic, X. Gu, H. Krishnaswamy, S. Maheshwari, P. Skrimponis, and C. Gutterman, "Challenge: COSMOS: A city-scale programmable testbed for experimentation with advanced wireless," in Proc. ACM Mobicom'20, 2020." ​ACM Download Presentation Long Video Short Video
  3. P. Skrimponis, P. Maddala, J. Kolodziejski, I. Seskar, and S. Rangan, "60 GHz Beam Tracking Testbed," Brooklyn 6G Summit, 2021. Presentation Video

Please cite the above papers if you use the hardware. Please email Panagiotis Skrimponis (ps3857[at]nyu.edu) if you have any questions.

Experiment Setup

COSMOS SB1 Nodes

Follow the steps below to gain access to COSMOS sb1 and set up nodes with appropriate image:

  1. If you don't have a COSMOS account already, you need to sign up.
  2. Create a resource reservation on sb1.
  3. Login into sb1 console.sb1.cosmos-lab.org using SSH.
    not_a_user@laptop:~$ ssh -Y your_username@console.sb1.cosmos-lab.org
    
  4. Make sure all the nodes and devices of this reservation are turned off:
    your_username@console:~$ omf tell -a offh -t system:topo:allres
    
  5. Load the rfsoc_sivers_sb1.ndz on srv1-in1 and srv1-in2.
    your_username@console:~$ omf load -i rfsoc_sivers_sb1.ndz -t srv1-in1,srv1-in2
    
  6. Power on all the required resources.
    your_username@console:~$ omf tell -a on -t srv1-in1,srv1-in2,rfdev3-in1,rfdev3-in2,sdr2-in1,sdr2-in2
    
  7. Check the status of the nodes and devices of sb1.
    your_username@console:~$ omf stat -t system:topo:allres
    
  8. Configure the RF switches to connect RFSoC with Sivers array
    your_username@console:~$ curl "am1.cosmos-lab.org:5054/rf_switch/set?name=rfsw1.sb1.cosmos-lab.org,rfsw2.sb1.cosmos-lab.org&switch=1,2,3,4&port=2"
    
  9. Make sure the RF switches are configured correctly (all switches set to port 2)
    your_username@console:~# curl am1.cosmos-lab.org:5054/rf_switch/status?name=rfsw1.sb1.cosmos-lab.org,rfsw2.sb1.cosmos-lab.org
    
    <response status="OK">
      <rf_switch name="rfsw1.sb1.cosmos-lab.org" num_of_switches="4">
        <switch number="1" port="2"/>
        <switch number="2" port="2"/>
        <switch number="3" port="2"/>
        <switch number="4" port="2"/>
      </rf_switch>
      <rf_switch name="rfsw2.sb1.cosmos-lab.org" num_of_switches="4">
        <switch number="1" port="2"/>
        <switch number="2" port="2"/>
        <switch number="3" port="2"/>
        <switch number="4" port="2"/>
      </rf_switch>
    </response>
    

RFSoC Setup

Every time we power cycle the FPGAs, we need to download the firmware (i.e., linux image, rootfs, bistream) using the Xilinx XSCT tool over JTAG. Please note the this process will take around 5-10'.

your_username@console:~$ ssh -Y root@srv1-in1
root@srv1-in1:~$ cd mmwsdr/fpga/nonrt-ch1/jtag/sb1_sdr2_in1/
root@srv1-in1:~/mmwsdr/fpga/nonrt-ch1/jtag/sb1_sdr2_in1$ xsct download_firmware.tcl
your_username@console:~$ ssh -Y root@srv1-in2
root@srv1-in2:~$ cd mmwsdr/fpga/nonrt-ch1/jtag/sb1_sdr2_in2/
root@srv1-in2:~/mmwsdr/fpga/nonrt-ch1/jtag/sb1_sdr2_in2$ xsct download_firmware.tcl

Network Interface Setup

Using the information available in COSMOS WiKi we need to configure the ethernet interfaces.

First corner (1-1)
Device Control Network Data Network 1 Data Network 2
Support Server 10.37.1.3 (srv1-in1) 10.38.1.3 (srv1a-in1) 10.39.1.3 (srv1b-in1)
RFSoC Device 10.37.6.3 (sdr2-in1) 10.38.6.3 (sdr2-in1a) 10.39.6.3 (sdr2-in1b)
root@srv1-in1:~# ip link set enp1s0 mtu 9000 up
root@srv1-in1:~# ip link set enp3s0 mtu 9000 up
root@srv1-in1:~# ip addr add 10.38.1.3/16 dev enp1s0
root@srv1-in1:~# ip addr add 10.39.1.3/16 dev enp3s0
Second corner (20-20)
Device Control Network Data Network 1 Data Network 2
Support Server 10.37.1.4 (srv1-in2) 10.38.1.4 (srv1a-in2) 10.39.1.4 (srv1b-in2)
RFSoC Device 10.37.6.4 (sdr2-in2) 10.38.6.4 (sdr2-in2a) 10.39.6.4 (sdr2-in2b)
root@srv1-in2:~# ip link set enp1s0 mtu 9000 up
root@srv1-in2:~# ip link set enp3s0 mtu 9000 up
root@srv1-in2:~# ip addr add 10.38.1.4/16 dev enp1s0
root@srv1-in2:~# ip addr add 10.39.1.4/16 dev enp3s0

Software Update

Update the software:

root@srv1-in1:~$ cd mmwsdr
root@srv1-in1:~/mmwsdr$ git pull
root@srv1-in2:~$ cd mmwsdr
root@srv1-in2:~/mmwsdr$ git pull

Demos

In the following subsections, you can find detailed descriptions for each demo.

Basic

Calibration

Channel Sounder

Array Pattern

Beam Tracking Measurements

Attachments (5)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.