-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreconfigureFPGA.py
executable file
·167 lines (144 loc) · 5.92 KB
/
reconfigureFPGA.py
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/usr/bin/python
#
# EJO 10/2017
#
import nuphase
import sys
import time
import tools.bf as bf
#remote update block accepted commands to fw
ru_cmd_map = {
'TRIG_COND_READONLY' : 0x0,
'WATCHDOG_TIME_VALUE' : 0x2,
'WATCHDOG_ENABLE' : 0x3,
'PAGE_SELECT_ADDR' : 0x4,
'AnF' : 0x5,
}
ru_error = {
'WATCHDOG_TIMEOUT' : 1,
'CRC_ERROR' : 2,
'NSTAT_ERROR' : 3,
}
def enableRemoteFirmwareBlock(dev, bus, enable=False):
dev.write(bus, [0x6E, 0x00, 0x00, (0x00 | enable)])
dev.write(bus, [0x75, 0x00, 0x00, 0x00])
def readRemoteConfigData(dev, bus, cmd):
dev.write(bus, [0x75, 0x00, 0x00, (0x00 | (0x7 & cmd))])
data_low = dev.readRegister(bus, address=0x68)
data_hi = dev.readRegister(bus, address=0x69)
dev.write(bus, [0x74, 0x00, 0x00, 0x00])
return (data_low[2] << 8) | data_low[3], (data_hi[2] << 8) | data_hi[3]
def readRemoteConfigStatus(dev, bus):
status = dev.readRegister(bus, address=0x67)
return status
def writeRemoteConfiguration(dev, bus, cmd, value=0x00000000):
cmd_byte = 0x00 | (0x7 & cmd)
dev.write(bus, [0x75, 0x00, 0x00, cmd_byte])
value_byte_0 = int(value & 0x000000FF)
value_byte_1 = int(((value & 0x0000FF00) >> 8) & 0xFF)
value_byte_2 = int(((value & 0x00FF0000) >> 16) & 0xFF)
value_byte_3 = int(((value & 0xFF000000) >> 24) & 0xFF)
dev.write(bus, [0x76, 0x00, value_byte_1, value_byte_0])
dev.write(bus, [0x77, 0x00, value_byte_3, value_byte_2])
dev.write(bus, [0x75, 0x00, 0x01, cmd_byte]) #toggle write
dev.write(bus, [0x75, 0x00, 0x00, 0x00])
def readTrigCondition(dev, bus, verbose=True):
cond = readRemoteConfigData(dev, bus, ru_cmd_map['TRIG_COND_READONLY'])[0]
bf_cond = bf.bf(cond) #trigger condition is lower 5 bits
if verbose:
print '--------------'
print 'FPGA remote upgrade trigger condition:', cond, \
' // bits:', bf_cond[0], bf_cond[1], bf_cond[2], bf_cond[3], bf_cond[4]
if bf_cond[0] == 1:
return ru_error['CRC_ERROR']
elif bf_cond[1] == 1:
return ru_error['NSTAT_ERROR']
elif bf_cond[4] == 1:
return ru_error['WATCHDOG_TIMEOUT']
elif bf_cond[2] == 1 or bf_cond[3] ==1:
if verbose:
print 'FPGA trig conditions look good'
return 0
else:
print 'weird, no trig condition received'
return -1
def triggerReconfig(dev, bus):
dev.write(bus, [0x75, 0x01, 0x00, 0x00])
def reconfigure(dev, bus, AnF=1, epcq_address = 0x01000000,
watchdog_value=1024, watchdog_enable=1, verbose=True, exit_on_trig_error=False):
#trig_condition = readTrigCondition(dev, bus, verbose=verbose)
#if trig_condition != 0 and exit_on_trig_error == True:
# return trig_condition
#write the AnF bit
writeRemoteConfiguration(dev, bus, ru_cmd_map['AnF'], AnF)
if verbose:
print 'Reading back AnF value', \
readRemoteConfigData(dev, bus, ru_cmd_map['AnF'])[0]
#enable watchdog feature
writeRemoteConfiguration(dev, bus, ru_cmd_map['WATCHDOG_ENABLE'], watchdog_enable)
if verbose:
print 'Reading back watchdog enable value', \
readRemoteConfigData(dev, bus, ru_cmd_map['WATCHDOG_ENABLE'])[0]
#set watchdog timeout value
writeRemoteConfiguration(dev, bus, ru_cmd_map['WATCHDOG_TIME_VALUE'], watchdog_value)
if verbose:
print 'Reading back watchdog timeout value', \
readRemoteConfigData(dev, bus, ru_cmd_map['WATCHDOG_TIME_VALUE'])
#set application start address
writeRemoteConfiguration(dev, bus, ru_cmd_map['PAGE_SELECT_ADDR'], epcq_address)
if verbose:
print 'Reading back EPCQ256 firmware image address', \
readRemoteConfigData(dev, bus, ru_cmd_map['PAGE_SELECT_ADDR'])
triggerReconfig(dev, bus)
return 0
###-----------------------------------------------------------------------
### run FPGA reconfiguration
# to load application firmware image on MASTER board: $ ./reconfigureFPGA.py -a 1
# to load application firmware image on SLAVE board: $ ./reconfigureFPGA.py -a 0
#
# program should return '0' if reconfiguration looks successful
###-----------------------------------------------------------------------
if __name__=='__main__':
import sys
from optparse import OptionParser
parser = OptionParser()
usage = "usage: %prog [options]"
#option for loading application firmware image
parser.add_option("-a", "--application", action="store_const", dest="application", const=True)
(options, args) = parser.parse_args()
if len(args) < 1:
print "requires at least one argument."
print "You need specify FPGA to reconfigure - 0 for 'slave', 1 for 'master'"
sys.exit("FAILURE")
if options.application:
AnF = 1
epcq_address = 0x01000000
print '-------------------------------'
print 'loading application firmware...'
print '-------------------------------'
else:
AnF = 0
epcq_address = 0x00000000
if int(args[0]) == 0:
bus = 0
elif int(args[0]) == 1:
bus = 1
else:
print 'incorrect argument. Specify SPI bus 0 or 1 to reconfigure'
sys.exit("FAILURE")
dev=nuphase.Nuphase()
enableRemoteFirmwareBlock(dev, bus, False)
enableRemoteFirmwareBlock(dev, bus, True)
retval=reconfigure(dev, bus, AnF=AnF, epcq_address=epcq_address)
print '-------------'
print 'reprogramming firmware...'
print '-------------'
time.sleep(30)
enableRemoteFirmwareBlock(dev, bus, False) #need to disable/re-enable remote blocks to get
enableRemoteFirmwareBlock(dev, bus, True) #updated trig configuration status
retval=readTrigCondition(dev, bus)
enableRemoteFirmwareBlock(dev, bus, False)
time.sleep(5)
dev.identify()
time.sleep(1)
sys.exit(retval) #return 0 if successful (verify by reading back firmware version/date)