summaryrefslogtreecommitdiffstats
path: root/libtoprammer/chip_unitest.py
blob: 3a10df180dc62658e2ae9e87c89b277448284dce (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
95
96
97
"""
#    TOP2049 Open Source programming suite
#
#    Universal device tester
#
#    Copyright (c) 2010 Michael Buesch <mb@bu3sch.de>
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License along
#    with this program; if not, write to the Free Software Foundation, Inc.,
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""

from chip import *


class Chip_Unitest(Chip):
	def __init__(self):
		Chip.__init__(self)

	def initializeChip(self):
		self.printDebug("Initializing chip")
		self.__reset()

	def shutdownChip(self):
		self.printDebug("Shutdown chip")
		self.__reset()

	def __reset(self):
		self.top.vccx.setLayoutPins( [] )
		self.top.vpp.setLayoutPins( [] )
		self.top.gnd.setLayoutPins( [] )
		self.top.cmdSetVCCXVoltage(5)
		self.top.cmdSetVPPVoltage(0)
		self.top.cmdSetVPPVoltage(5)
		self.setOutputEnableMask(0)
		self.setOutputs(0)

	def setVCCX(self, voltage, layout):
		self.top.cmdSetVCCXVoltage(0)
		self.top.cmdLoadVCCXLayout(layout)
		self.top.cmdSetVCCXVoltage(voltage)
		self.top.flushCommands()

	def setVPP(self, voltage, layout):
		self.top.cmdSetVPPVoltage(0)
		self.top.cmdLoadVPPLayout(layout)
		self.top.cmdSetVPPVoltage(voltage)
		self.top.flushCommands()
		#TODO: Disable outen on these pins

	def setGND(self, pin):
		self.top.cmdSetGNDPin(pin)
		self.top.flushCommands()

	def setOutputEnableMask(self, mask):
		self.top.cmdFPGAWrite(0x12, mask & 0xFF)
		self.top.cmdFPGAWrite(0x13, (mask >> 8) & 0xFF)
		self.top.cmdFPGAWrite(0x14, (mask >> 16) & 0xFF)
		self.top.cmdFPGAWrite(0x15, (mask >> 24) & 0xFF)
		self.top.cmdFPGAWrite(0x16, (mask >> 32) & 0xFF)
		self.top.cmdFPGAWrite(0x17, (mask >> 40) & 0xFF)
		self.top.flushCommands()

	def setOutputs(self, mask):
		self.top.cmdFPGAWrite(0x18, mask & 0xFF)
		self.top.cmdFPGAWrite(0x19, (mask >> 8) & 0xFF)
		self.top.cmdFPGAWrite(0x1A, (mask >> 16) & 0xFF)
		self.top.cmdFPGAWrite(0x1B, (mask >> 24) & 0xFF)
		self.top.cmdFPGAWrite(0x1C, (mask >> 32) & 0xFF)
		self.top.cmdFPGAWrite(0x1D, (mask >> 40) & 0xFF)
		self.top.flushCommands()

	def getInputs(self):
		self.top.cmdFPGAReadRaw(0x18)
		self.top.cmdFPGAReadRaw(0x19)
		self.top.cmdFPGAReadRaw(0x1A)
		self.top.cmdFPGAReadRaw(0x1B)
		self.top.cmdFPGAReadRaw(0x1C)
		self.top.cmdFPGAReadRaw(0x1D)
		inputs = self.top.cmdReadStatusReg48()
		return inputs

RegisteredChip(
	Chip_Unitest,
	bitfile = "unitest",
	description = "Universal device tester",
)
bues.ch cgit interface