blob: ea8696d8a6008267b10e8ca932c5f073e010d80d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#
# Copyright 2017 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
" Generate reg map for LMK04828 synthesizer "
########################################################################
# Template for raw text data describing registers
# name addr[bit range inclusive] default optional enums
########################################################################
REGS_TMPL = """\
########################################################################
## address 0
########################################################################
address0 0[20:8] 0
Reset 0[7] 0
Reserved_0_0 0[6:5] 0
SPI_3wire 0[4] 0 enable, disable
Reserved_0_1 0[3:0] 0
########################################################################
## address 1
########################################################################
address1 1[20:8] 1
Reserved_1_0 1[7:0] 0
########################################################################
## address 2
########################################################################
address2 2[20:8] 2
Reserved_2_0 2[7:1] 0
Powerdown 2[0] 0 normal, powerdown
########################################################################
## address 3
########################################################################
address3 3[20:8] 3
ID_Device_Type 3[7:0] 6
########################################################################
## address 4
########################################################################
address4 4[20:8] 4
ID_Prod_MSB 4[7:0] 208
########################################################################
## address 5
########################################################################
address5 5[20:8] 5
ID_Prod_LSB 5[7:0] 91
########################################################################
## address 6
########################################################################
address6 6[20:8] 6
ID_MaskRev 6[7:0] 32 LMK04821=36,LMK04826=37,LMK04828=32
########################################################################
## address 12 (0x00C)
########################################################################
address12 12[20:8] 0x00C
ID_Vendor_MSB 12[7:0] 81
########################################################################
## address 13 (0x00D)
########################################################################
address13 13[20:8] 0x00D
ID_Vendor_LSB 13[7:0] 4
"""
########################################################################
# Template for methods in the body of the struct
########################################################################
BODY_TMPL = """\
uint32_t get_reg(int addr){
uint32_t reg = 0;
switch(addr){
% for addr in sorted(set(map(lambda r: r.get_addr(), regs))):
case ${addr}:
% for reg in filter(lambda r: r.get_addr() == addr, regs):
reg |= (uint32_t(${reg.get_name()}) & ${reg.get_mask()}) << ${reg.get_shift()};
% endfor
break;
% endfor
}
return reg;
}
"""
if __name__ == '__main__':
import common; common.generate(
name='lmk04828_regs',
regs_tmpl=REGS_TMPL,
body_tmpl=BODY_TMPL,
file=__file__,
)
|