root / host / lib / ic_reg_maps / gen_ad9777_regs.py @ 6b015b1c
History | View | Annotate | Download (5.86 KB)
| 1 |
#!/usr/bin/env python
|
|---|---|
| 2 |
#
|
| 3 |
# Copyright 2008,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 asversion 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
|
| 18 |
# along with GNU Radio; see the file COPYING. If not, write to
|
| 19 |
# the Free Software Foundation, Inc., 51 Franklin Street,
|
| 20 |
# Boston, MA 02110-1301, USA.
|
| 21 |
|
| 22 |
import sys |
| 23 |
from common import * |
| 24 |
|
| 25 |
########################################################################
|
| 26 |
# Template for raw text data describing registers
|
| 27 |
# name addr[bit range inclusive] default optional enums
|
| 28 |
########################################################################
|
| 29 |
REGS_DATA_TMPL="""\
|
| 30 |
########################################################################
|
| 31 |
## address 0
|
| 32 |
########################################################################
|
| 33 |
sdio_bidirectional 0[7] 0 input, io
|
| 34 |
lsb_msb_first 0[6] 0 msb, lsb
|
| 35 |
soft_reset 0[5] 0
|
| 36 |
sleep_mode 0[4] 0
|
| 37 |
power_down_mode 0[3] 0
|
| 38 |
x_1r_2r_mode 0[2] 0 2r, 1r
|
| 39 |
pll_lock_indicator 0[1] 0
|
| 40 |
########################################################################
|
| 41 |
## address 1
|
| 42 |
########################################################################
|
| 43 |
filter_interp_rate 1[6:7] 0 1x, 2x, 4x, 8x
|
| 44 |
modulation_mode 1[4:5] 0 none, fs_2, fs_4, fs_8
|
| 45 |
zero_stuff_mode 1[3] 0
|
| 46 |
mix_mode 1[2] 1 complex, real
|
| 47 |
modulation_form 1[1] 0 e_minus_jwt, e_plus_jwt
|
| 48 |
data_clk_pll_lock_sel 1[0] 0 pll_lock, data_clk
|
| 49 |
########################################################################
|
| 50 |
## address 2
|
| 51 |
########################################################################
|
| 52 |
signed_input_data 2[7] 0 signed, unsigned
|
| 53 |
two_port_mode 2[6] 0 two_port, one_port
|
| 54 |
dataclk_driver_strength 2[5] 0 weak, strong
|
| 55 |
dataclk_invert 2[4] 0
|
| 56 |
oneportclk_invert 2[2] 0
|
| 57 |
iqsel_invert 2[1] 0
|
| 58 |
iq_first 2[0] 0 i_first, q_first
|
| 59 |
########################################################################
|
| 60 |
## address 3
|
| 61 |
########################################################################
|
| 62 |
data_rate_clock_output 3[7] 0 pll_lock, spi_sdo
|
| 63 |
pll_divide_ratio 3[0:1] 0 div1, div2, div4, div8
|
| 64 |
########################################################################
|
| 65 |
## address 4
|
| 66 |
########################################################################
|
| 67 |
pll_state 4[7] 0 off, on
|
| 68 |
auto_cp_control 4[6] 0 dis, enb
|
| 69 |
pll_cp_control 4[0:2] 0 50ua=0, 100ua=1, 200ua=2, 400ua=3, 800ua=7
|
| 70 |
########################################################################
|
| 71 |
## address 5 and 9
|
| 72 |
########################################################################
|
| 73 |
idac_fine_gain_adjust 5[0:7] 0
|
| 74 |
qdac_fine_gain_adjust 9[0:7] 0
|
| 75 |
########################################################################
|
| 76 |
## address 6 and A
|
| 77 |
########################################################################
|
| 78 |
idac_coarse_gain_adjust 6[0:3] 0
|
| 79 |
qdac_coarse_gain_adjust A[0:3] 0
|
| 80 |
########################################################################
|
| 81 |
## address 7, 8 and B, C
|
| 82 |
########################################################################
|
| 83 |
idac_offset_adjust_msb 7[0:7] 0
|
| 84 |
idac_offset_adjust_lsb 8[0:1] 0
|
| 85 |
idac_ioffset_direction 8[7] 0 out_a, out_b
|
| 86 |
qdac_offset_adjust_msb B[0:7] 0
|
| 87 |
qdac_offset_adjust_lsb C[0:1] 0
|
| 88 |
qdac_ioffset_direction C[7] 0 out_a, out_b
|
| 89 |
"""
|
| 90 |
|
| 91 |
########################################################################
|
| 92 |
# Header and Source templates below
|
| 93 |
########################################################################
|
| 94 |
HEADER_TEXT="""
|
| 95 |
#import time
|
| 96 |
|
| 97 |
/***********************************************************************
|
| 98 |
* This file was generated by $file on $time.strftime("%c")
|
| 99 |
**********************************************************************/
|
| 100 |
|
| 101 |
\#ifndef INCLUDED_AD9777_REGS_HPP
|
| 102 |
\#define INCLUDED_AD9777_REGS_HPP
|
| 103 |
|
| 104 |
\#include <boost/cstdint.hpp>
|
| 105 |
|
| 106 |
struct ad9777_regs_t{
|
| 107 |
#for $reg in $regs
|
| 108 |
#if $reg.get_enums()
|
| 109 |
enum $(reg.get_name())_t{
|
| 110 |
#for $i, $enum in enumerate($reg.get_enums())
|
| 111 |
#set $end_comma = ',' if $i < len($reg.get_enums())-1 else ''
|
| 112 |
$(reg.get_name().upper())_$(enum[0].upper()) = $enum[1]$end_comma
|
| 113 |
#end for
|
| 114 |
} $reg.get_name();
|
| 115 |
#else
|
| 116 |
boost::$reg.get_stdint_type() $reg.get_name();
|
| 117 |
#end if
|
| 118 |
#end for
|
| 119 |
|
| 120 |
ad9777_regs_t(void){
|
| 121 |
#for $reg in $regs
|
| 122 |
$reg.get_name() = $reg.get_default();
|
| 123 |
#end for
|
| 124 |
}
|
| 125 |
|
| 126 |
boost::uint8_t get_reg(boost::uint8_t addr){
|
| 127 |
boost::uint8_t reg = 0;
|
| 128 |
switch(addr){
|
| 129 |
#for $addr in sorted(set(map(lambda r: r.get_addr(), $regs)))
|
| 130 |
case $addr:
|
| 131 |
#for $reg in filter(lambda r: r.get_addr() == addr, $regs)
|
| 132 |
reg |= (boost::uint8_t($reg.get_name()) & $reg.get_mask()) << $reg.get_shift();
|
| 133 |
#end for
|
| 134 |
break;
|
| 135 |
#end for
|
| 136 |
}
|
| 137 |
return reg;
|
| 138 |
}
|
| 139 |
|
| 140 |
boost::uint16_t get_write_reg(boost::uint8_t addr){
|
| 141 |
return (boost::uint16_t(addr) << 8) | get_reg(addr);
|
| 142 |
}
|
| 143 |
|
| 144 |
boost::uint16_t get_read_reg(boost::uint8_t addr){
|
| 145 |
return (boost::uint16_t(addr) << 8) | (1 << 7);
|
| 146 |
}
|
| 147 |
};
|
| 148 |
|
| 149 |
\#endif /* INCLUDED_AD9777_REGS_HPP */
|
| 150 |
"""
|
| 151 |
|
| 152 |
if __name__ == '__main__': |
| 153 |
regs = map(reg, parse_tmpl(REGS_DATA_TMPL).splitlines())
|
| 154 |
open(sys.argv[1], 'w').write(parse_tmpl(HEADER_TEXT, regs=regs, file=__file__)) |