Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / include / usrp2_mimo_config.h
1 /* -*- c -*- */
2 /*
3  * Copyright 2008 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_USRP2_MIMO_CONFIG_H
22 #define INCLUDED_USRP2_MIMO_CONFIG_H
23
24 #define _MC_WE_LOCK                     0x0001
25 #define _MC_MIMO_CLK_INPUT              0x0002          // else SMA input
26
27 /*
28  * Derived masks (use these):
29  *
30  * We get our input from 1 of three places:
31  *  Our free running oscilator, our SMA connector, or from the MIMO connector
32  */
33 #define MC_WE_DONT_LOCK                 0x0000
34 #define MC_WE_LOCK_TO_SMA               (_MC_WE_LOCK | 0)
35 #define MC_WE_LOCK_TO_MIMO              (_MC_WE_LOCK | _MC_MIMO_CLK_INPUT)
36
37 /*
38  * Independent of the source of the clock, we may or may not drive our
39  * clock onto the mimo connector.  Note that there are dedicated clock
40  * signals in each direction, so disaster doesn't occurs if we're
41  * unnecessarily providing clock.
42  */
43 #define MC_PROVIDE_CLK_TO_MIMO          0x0004
44
45
46 #endif /* INCLUDED_USRP2_MIMO_CONFIG_H */