Merged VRT work-in-progress from eb/vrt2 (11518:11598) into trunk.
[debian/gnuradio] / vrt / include / vrt / quadradio.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21 #ifndef INCLUDED_VRT_QUADRADIO_H
22 #define INCLUDED_VRT_QUADRADIO_H
23
24 #include <vrt/rx.h>
25
26 #include <arpa/inet.h>
27 #include <netinet/in.h>
28 #include <sys/types.h>
29 #include <sys/socket.h>
30
31 typedef enum{
32     VRT_TEST_SIG_NORMAL=0,
33     VRT_TEST_SIG_ZEROS=1,
34     VRT_TEST_SIG_ONES=2,
35     VRT_TEST_SIG_TOGGLE=3,
36     VRT_TEST_SIG_RAMP=4,
37     VRT_TEST_SIG_CUSTOM=5,  
38       
39     } vrt_test_sig_t;
40
41 namespace vrt {
42
43   /*
44    * We're not committing to this interface.  It's just here so we can make progress...
45    *
46    * This implements the ad-hoc control for bringup and has-a vrt::rx
47    */
48   class quadradio
49   {
50     int            d_ctrl_fd;          // socket for control
51     struct in_addr d_ctrl_port_inaddr; // our ip addr
52     int            d_data_fd;          // socket for data (owned by d_rx)
53     int            d_data_port;        // our data port number
54     vrt::rx::sptr  d_rx;               // has-a rx
55     
56     int            d_band_select;              // band select setting
57     int            d_rx_antenna;               // antenna type rf/cal
58     int            d_attenuation0;             // attenuation setting
59     int            d_attenuation1;             // attenuation setting
60     bool           d_10dB_atten;               // 10dB attenuation on/of
61
62     static bool
63     open_sockets(const char *quad_radio_ip, int quad_radio_ctrl_port,
64                  int *ctrl_fd_ptr, struct in_addr *ctrl_port_inaddr,
65                  int *data_fd_ptr, int *data_port_ptr);
66
67     static bool
68     send_rx_command(int ctrl_fd, bool start,
69                     struct in_addr addr, int data_port, int samples_per_pkt, int siggen_param);
70
71     static bool
72     send_stop_rx_command(int ctrl_fd);
73     
74     static int control_port() { return 790; }
75     int data_socket_fd() const { return d_data_fd; }
76
77     bool open(const char *ip);
78     
79     void update_dboard_pins(void);
80
81   public:
82     typedef boost::shared_ptr<quadradio> sptr;
83
84     quadradio(const std::string &ip, size_t rx_bufsize = 0);
85     ~quadradio();
86
87     vrt::rx::sptr vrt_rx() const { return d_rx; }
88
89     bool start_streaming(int samples_per_pkt = 0);
90     bool stop_streaming();
91
92
93     /* convenience methods that ultimately write the dboard pins */
94     bool set_center_freq(double target_freq);
95     bool set_band_select(const std::string &band);
96     //void set_10dB_atten(bool on);
97     bool set_attenuation0(int attenuation);
98     bool select_rx_antenna(const std::string &ant);
99     bool set_attenuation1(int attenuation);
100     
101     /* convenience methods that ultimately call set_hsadc_conf */
102     void set_adc_gain(bool on);
103     void set_dc_offset_comp(bool on);
104     void set_digital_gain(float gain);
105     void set_test_signal(vrt_test_sig_t type);
106     
107     /* primitives */
108     bool set_setting_reg(int regno, int value);
109     bool set_mem32(int addr, int value);        // poke a 32-bit value
110     bool set_lo_freq(double freq);
111     bool set_cal_freq(double freq);
112     bool set_beamforming(int32_t gains[8]);
113     /*
114      * The first parameter for these is a bitmask which indicates which
115      * daughterboard or daughterboards to apply the operation to.
116      * 0x1      -> dboard 0
117      * 0x2      -> dboard 1
118      * 0x3      -> dboard 0 and 1...
119      */
120     bool set_dboard_pins(int dboard_bitmask, int v);
121     bool set_hsadc_conf(int dboard_bitmask, int regno, int value);
122     bool set_lsdac(int dboard_bitmask, int which_dac, int value);
123
124   };
125
126 };
127
128
129 #endif /* INCLUDED_QUADRADIO_H */