root / host / lib / usrp / dboard_iface.cpp @ b31cefc5
History | View | Annotate | Download (2.4 KB)
| 1 |
//
|
|---|---|
| 2 |
// Copyright 2010 Ettus Research LLC
|
| 3 |
//
|
| 4 |
// This program is free software: you can redistribute it and/or modify
|
| 5 |
// it under the terms of the GNU General Public License as published by
|
| 6 |
// the Free Software Foundation, either version 3 of the License, or
|
| 7 |
// (at your option) any later version.
|
| 8 |
//
|
| 9 |
// This program is distributed in the hope that it will be useful,
|
| 10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 12 |
// GNU General Public License for more details.
|
| 13 |
//
|
| 14 |
// You should have received a copy of the GNU General Public License
|
| 15 |
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
| 16 |
//
|
| 17 |
|
| 18 |
#include <uhd/usrp/dboard_iface.hpp> |
| 19 |
#include <uhd/types/dict.hpp> |
| 20 |
|
| 21 |
using namespace uhd::usrp; |
| 22 |
|
| 23 |
struct dboard_iface::impl{
|
| 24 |
uhd::dict<unit_t, boost::uint16_t> pin_ctrl_shadow; |
| 25 |
uhd::dict<unit_t, uhd::dict<atr_reg_t, boost::uint16_t> > atr_reg_shadow; |
| 26 |
uhd::dict<unit_t, boost::uint16_t> gpio_ddr_shadow; |
| 27 |
uhd::dict<unit_t, boost::uint16_t> gpio_out_shadow; |
| 28 |
}; |
| 29 |
|
| 30 |
dboard_iface::dboard_iface(void){
|
| 31 |
_impl = UHD_PIMPL_MAKE(impl, ()); |
| 32 |
} |
| 33 |
|
| 34 |
template <typename T> |
| 35 |
static T shadow_it(T &shadow, const T &value, const T &mask){ |
| 36 |
shadow = (shadow & ~mask) | (value & mask); |
| 37 |
return shadow;
|
| 38 |
} |
| 39 |
|
| 40 |
void dboard_iface::set_pin_ctrl(
|
| 41 |
unit_t unit, boost::uint16_t value, boost::uint16_t mask |
| 42 |
){
|
| 43 |
_set_pin_ctrl(unit, shadow_it(_impl->pin_ctrl_shadow[unit], value, mask)); |
| 44 |
} |
| 45 |
|
| 46 |
boost::uint16_t dboard_iface::get_pin_ctrl(unit_t unit){
|
| 47 |
return _impl->pin_ctrl_shadow[unit];
|
| 48 |
} |
| 49 |
|
| 50 |
void dboard_iface::set_atr_reg(
|
| 51 |
unit_t unit, atr_reg_t reg, boost::uint16_t value, boost::uint16_t mask |
| 52 |
){
|
| 53 |
_set_atr_reg(unit, reg, shadow_it(_impl->atr_reg_shadow[unit][reg], value, mask)); |
| 54 |
} |
| 55 |
|
| 56 |
boost::uint16_t dboard_iface::get_atr_reg(unit_t unit, atr_reg_t reg){
|
| 57 |
return _impl->atr_reg_shadow[unit][reg];
|
| 58 |
} |
| 59 |
|
| 60 |
void dboard_iface::set_gpio_ddr(
|
| 61 |
unit_t unit, boost::uint16_t value, boost::uint16_t mask |
| 62 |
){
|
| 63 |
_set_gpio_ddr(unit, shadow_it(_impl->gpio_ddr_shadow[unit], value, mask)); |
| 64 |
} |
| 65 |
|
| 66 |
boost::uint16_t dboard_iface::get_gpio_ddr(unit_t unit){
|
| 67 |
return _impl->gpio_ddr_shadow[unit];
|
| 68 |
} |
| 69 |
|
| 70 |
void dboard_iface::set_gpio_out(
|
| 71 |
unit_t unit, boost::uint16_t value, boost::uint16_t mask |
| 72 |
){
|
| 73 |
_set_gpio_out(unit, shadow_it(_impl->gpio_out_shadow[unit], value, mask)); |
| 74 |
} |
| 75 |
|
| 76 |
boost::uint16_t dboard_iface::get_gpio_out(unit_t unit){
|
| 77 |
return _impl->gpio_out_shadow[unit];
|
| 78 |
} |