Version 15 (modified by 3 years ago) ( diff ) | ,
---|
Site Navigation
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:
- 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
- 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
- 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:
- If you don't have a COSMOS account already, you need to sign up.
- Create a resource reservation on sb1.
- Login into sb1
console.sb1.cosmos-lab.org
using SSH.not_a_user@laptop:~$ ssh -Y your_username@console.sb1.cosmos-lab.org
- Make sure all the nodes and devices of this reservation are turned off:
your_username@console:~$ omf tell -a offh -t system:topo:allres
- Load the
rfsoc_sivers_sb1.ndz
onsrv1-in1
andsrv1-in2
.your_username@console:~$ omf load -i rfsoc_sivers_sb1.ndz -t srv1-in1,srv1-in2
- 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
- Check the status of the nodes and devices of sb1.
your_username@console:~$ omf stat -t system:topo:allres
- 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"
- 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)
- Sivers_TX_SN0240.jpg (162.6 KB ) - added by 5 years ago.
- Sivers_RX_SN0243.jpg (128.2 KB ) - added by 5 years ago.
- rfsoc_tx.png (43.1 KB ) - added by 4 years ago.
- rfsoc_rx.png (32.7 KB ) - added by 4 years ago.
- MISO_tutorial.jpg (256.2 KB ) - added by 4 years ago.
Download all attachments as: .zip