origen_testers 0.52.6 → 0.52.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/config/version.rb +1 -1
- data/lib/origen_testers/charz/session.rb +4 -2
- data/lib/origen_testers/charz.rb +2 -2
- data/lib/origen_testers/igxl_based_tester/base/test_instance.rb +4 -0
- data/lib/origen_testers/igxl_based_tester/base/test_instances.rb +4 -0
- data/lib/origen_testers/igxl_based_tester/ultraflex/test_instance.rb +89 -12
- data/lib/origen_testers/smartest_based_tester/base/limits_file.rb +3 -1
- data/lib/origen_testers/smartest_based_tester/base/test_method.rb +2 -1
- data/lib/origen_testers/smartest_based_tester/v93k_smt8/limits_workbook.rb +4 -4
- data/lib/origen_testers/test/custom_test_interface.rb +25 -0
- data/lib/origen_testers/test/interface.rb +10 -4
- data/program/components/_prb1_main.rb +1 -0
- data/program/custom_tests.rb +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c573df0903368e8015d0394fbb763d9ec118364572e6cecea7b7d31eab14d0e
|
4
|
+
data.tar.gz: 22339aa3036e5b8781181c607c98b97b16eb4bfef4bac9bf28b5945e3637becf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62a1d79d5d94007301947ac6a2dfaf1ce32acdaeca6e0383518622b30e2fe50e76e4a2ef74ac5f39989a55e3c9be314706363a348fd63198cbb97c1956d7e4fd
|
7
|
+
data.tar.gz: 82acb4324929aa096e1d1b14385c2e62a4b0a087d7e8937eee1908c604d24f3fa3ddfa6457148803b0ffa8ff064cb0d8f2d6e04a68e59215bdc901828de386cc
|
data/config/version.rb
CHANGED
@@ -73,10 +73,12 @@ module OrigenTesters
|
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
-
def current_instance
|
76
|
+
def current_instance(options = {})
|
77
77
|
instance = @current_instance || instances.first
|
78
78
|
if instance.nil? && @stored_instance
|
79
|
-
|
79
|
+
unless options[:stored_instance_valid]
|
80
|
+
Origen.log.deprecate '@current_instance had to source @stored_instance. This likely means charz_session.<some_attr> is being queried when the newer charz_instance.<some_attr> should be instead'
|
81
|
+
end
|
80
82
|
instance = @stored_instance
|
81
83
|
end
|
82
84
|
instance
|
data/lib/origen_testers/charz.rb
CHANGED
@@ -42,8 +42,8 @@ module OrigenTesters
|
|
42
42
|
# the instance to be used is no longer set, so instead of referencing the session, use the one that we've
|
43
43
|
# stored already
|
44
44
|
def charz_instance
|
45
|
-
unless charz_session.current_instance.nil?
|
46
|
-
set_charz_instance(charz_session.current_instance)
|
45
|
+
unless charz_session.current_instance(stored_instance_valid: true).nil?
|
46
|
+
set_charz_instance(charz_session.current_instance(stored_instance_valid: true))
|
47
47
|
end
|
48
48
|
@charz_instance
|
49
49
|
end
|
@@ -110,6 +110,10 @@ module OrigenTesters
|
|
110
110
|
new(name, :powersupply, attrs)
|
111
111
|
end
|
112
112
|
|
113
|
+
def self.new_dcvi_powersupply(name, attrs = {})
|
114
|
+
new(name, :dcvi_powersupply, attrs)
|
115
|
+
end
|
116
|
+
|
113
117
|
def self.new_mto_memory(name, attrs = {})
|
114
118
|
new(name, :mto_memory, attrs)
|
115
119
|
end
|
@@ -163,6 +163,10 @@ module OrigenTesters
|
|
163
163
|
end
|
164
164
|
alias_method :power_supply, :powersupply
|
165
165
|
|
166
|
+
def dcvi_powersupply(name, options = {})
|
167
|
+
add(name, :dcvi_powersupply, options)
|
168
|
+
end
|
169
|
+
|
166
170
|
def ppmu(name, options = {})
|
167
171
|
add(name, :pin_pmu, options)
|
168
172
|
end
|
@@ -18,15 +18,15 @@ module OrigenTesters
|
|
18
18
|
TEST_INSTANCE_EXTRA_ARGS = 130
|
19
19
|
|
20
20
|
TEST_INSTANCE_ALIASES = {
|
21
|
-
name:
|
22
|
-
time_set:
|
23
|
-
timeset:
|
24
|
-
timesets:
|
21
|
+
name: :test_name,
|
22
|
+
time_set: :time_sets,
|
23
|
+
timeset: :time_sets,
|
24
|
+
timesets: :time_sets,
|
25
25
|
|
26
|
-
other:
|
26
|
+
other: {
|
27
27
|
},
|
28
28
|
|
29
|
-
empty:
|
29
|
+
empty: {
|
30
30
|
arg_list: :arg0,
|
31
31
|
start_func: :arg1,
|
32
32
|
start_of_body_f: :arg1,
|
@@ -65,7 +65,7 @@ module OrigenTesters
|
|
65
65
|
},
|
66
66
|
|
67
67
|
# Functional test instances
|
68
|
-
functional:
|
68
|
+
functional: {
|
69
69
|
arg_list: :arg0,
|
70
70
|
pattern: :arg1,
|
71
71
|
patterns: :arg1,
|
@@ -125,7 +125,7 @@ module OrigenTesters
|
|
125
125
|
concurrent_mode: :arg35
|
126
126
|
},
|
127
127
|
|
128
|
-
pin_pmu:
|
128
|
+
pin_pmu: {
|
129
129
|
arg_list: :arg0,
|
130
130
|
hsp_start: :arg1,
|
131
131
|
start_func: :arg2,
|
@@ -206,22 +206,88 @@ module OrigenTesters
|
|
206
206
|
force_cond_alt: :arg56,
|
207
207
|
force_irange_alt: :arg57,
|
208
208
|
meas_irange_alt: :arg58
|
209
|
+
},
|
210
|
+
|
211
|
+
dcvi_powersupply: {
|
212
|
+
arg_list: :arg0,
|
213
|
+
precond_pat: :arg1,
|
214
|
+
start_func: :arg2,
|
215
|
+
pre_pat_func: :arg3,
|
216
|
+
pre_test_func: :arg4,
|
217
|
+
post_test_func: :arg5,
|
218
|
+
post_pat_func: :arg6,
|
219
|
+
end_of_body_f: :arg7,
|
220
|
+
hold_state_pat: :arg8,
|
221
|
+
pattern: :arg8,
|
222
|
+
drive_lo_pins: :arg9,
|
223
|
+
drive_hi_pins: :arg10,
|
224
|
+
drive_z_pins: :arg11,
|
225
|
+
float_pins: :arg12,
|
226
|
+
sampling_time: :arg13,
|
227
|
+
sample: :arg14,
|
228
|
+
sample_size: :arg14,
|
229
|
+
settling_time: :arg15,
|
230
|
+
main_voltage: :arg16,
|
231
|
+
alt_voltage: :arg17,
|
232
|
+
power_pins: :arg18,
|
233
|
+
disable_pins: :arg19,
|
234
|
+
voltage_output: :arg20,
|
235
|
+
pcp_start_label: :arg21,
|
236
|
+
pcp_start: :arg21,
|
237
|
+
pcp_stop_label: :arg22,
|
238
|
+
pcp_stop: :arg22,
|
239
|
+
start_func_args: :arg23,
|
240
|
+
start_of_body_f_args: :arg23,
|
241
|
+
pre_pat_func_args: :arg24,
|
242
|
+
pre_pat_f_args: :arg24,
|
243
|
+
pre_test_func_args: :arg25,
|
244
|
+
pre_test_f_args: :arg25,
|
245
|
+
post_test_func_args: :arg26,
|
246
|
+
post_test_f_args: :arg26,
|
247
|
+
post_pat_func_args: :arg27,
|
248
|
+
post_pat_f_args: :arg27,
|
249
|
+
end_func_args: :arg28,
|
250
|
+
end_of_body_f_args: :arg28,
|
251
|
+
hsp_start_label: :arg29,
|
252
|
+
hsp_start: :arg29,
|
253
|
+
hsp_stop_label: :arg30,
|
254
|
+
hsp_stop: :arg30,
|
255
|
+
pcp_check_patGen: :arg31,
|
256
|
+
current_clamp: :arg32,
|
257
|
+
hsp_checkpat_gen: :arg33,
|
258
|
+
hsp_resume_pat: :arg34,
|
259
|
+
relay_mode: :arg35,
|
260
|
+
utility_pins_1: :arg36,
|
261
|
+
utility_pins_0: :arg37,
|
262
|
+
test_control: :arg38,
|
263
|
+
serialize_meas: :arg39,
|
264
|
+
meas_f: :arg40,
|
265
|
+
meas_f_args: :arg41,
|
266
|
+
wait_flag1: :arg42,
|
267
|
+
wait_flag2: :arg43,
|
268
|
+
wait_flag3: :arg44,
|
269
|
+
wait_flag4: :arg45,
|
270
|
+
validating: :arg46,
|
271
|
+
i_range: :arg47,
|
272
|
+
pattern_timeout: :arg48,
|
273
|
+
pcp_disable_alarm: :arg49,
|
274
|
+
hcp_disable_alarm: :arg50
|
209
275
|
}
|
210
276
|
|
211
277
|
}
|
212
278
|
|
213
279
|
TEST_INSTANCE_DEFAULTS = {
|
214
|
-
empty:
|
280
|
+
empty: {
|
215
281
|
arg_list: 'StartOfBodyF,PrePatF,PreTestF,PostTestF,PostPatF,EndOfBodyF,StartOfBodyFArgs,PrePatFArgs,PreTestFArgs,PostTestFArgs,PostPatFArgs,EndOfBodyFArgs,Util1Pins,Util0Pins,DriveLoPins,DriveHiPins,DriveZPins,FloatPins,DisablePins',
|
216
282
|
proc_type: 'VBT',
|
217
283
|
proc_name: 'Empty_T',
|
218
284
|
proc_called_as: 'Excel Macro'
|
219
285
|
},
|
220
|
-
other:
|
286
|
+
other: {
|
221
287
|
proc_type: 'Other',
|
222
288
|
proc_called_as: 'Excel Macro'
|
223
289
|
},
|
224
|
-
functional:
|
290
|
+
functional: {
|
225
291
|
arg_list: 'Patterns,StartOfBodyF,PrePatF,PreTestF,PostTestF,PostPatF,EndOfBodyF,ReportResult,ResultMode,DriveLoPins,DriveHiPins,DriveZPins,DisablePins,FloatPins,StartOfBodyFArgs,PrePatFArgs,PreTestFArgs,PostTestFArgs,PostPatFArgs,EndOfBodyFArgs,Util1Pins,Util0Pins,PatFlagF,PatFlagFArgs,RelayMode,PatThreading,MatchAllSites,WaitFlagA,WaitFlagB,WaitFlagC,WaitFlagD,Validating_,PatternTimeout,WaitTimeDomain,ConcurrentMode',
|
226
292
|
proc_type: 'VBT',
|
227
293
|
proc_name: 'Functional_T',
|
@@ -236,7 +302,7 @@ module OrigenTesters
|
|
236
302
|
wait_flag4: -2, # waitoff
|
237
303
|
wait_time: 30
|
238
304
|
},
|
239
|
-
pin_pmu:
|
305
|
+
pin_pmu: {
|
240
306
|
arg_list: 'HspStartLabel,StartOfBodyF,PrePatF,PreTestF,PostTestF,PostPatF,EndOfBodyF,PreconditionPat,HoldStatePat,PcpStopLabel,DriveLoPins,DriveHiPins,DriveZPins,DisablePins,FloatPins,Pins,MeasureMode,SettlingTime,ForceCond1,ForceCond2,RelayMode,StartOfBodyFArgs,PrePatFArgs,PreTestFArgs,PostTestFArgs,PostPatFArgs,EndOfBodyFArgs,PcpStartLabel,PcpCheckPatGen,HspStopLabel,HspCheckPatGen,SamplingTime,SampleCount,HspResumePat,VClampLo,VClampHi,Util1Pins,Util0Pins,WaitFlagA,WaitFlagB,WaitFlagC,WaitFlagD,Validating_,ForceIRange,MeasIRange,PatternTimeout,PcpDisableAlarmCheck,HspDisableAlarmCheck,TestingInSeries,BackgroundMeasureMode,BackgroundForceIRange,BackgroundMeasIRange,BackgroundForceCond,PinsAlt,MeasureModeAlt,ForceCondAlt,ForceIRangeAlt,MeasIRangeAlt',
|
241
307
|
proc_type: 'VBT',
|
242
308
|
proc_name: 'PinPmu_T',
|
@@ -245,7 +311,18 @@ module OrigenTesters
|
|
245
311
|
wait_flag2: -2, # waitoff
|
246
312
|
wait_flag3: -2, # waitoff
|
247
313
|
wait_flag4: -2, # waitoff
|
314
|
+
},
|
315
|
+
dcvi_powersupply: {
|
316
|
+
arg_list: 'PreconditionPat,StartOfBodyF,PrePatF,PreTestF,PostTestF,PostPatF,EndOfBodyF,HoldStatePat,DriveLoPins,DriveHiPins,DriveZPins,FloatPins,SamplingTime,SampleSize,SettlingTime,MainVoltage,AltVoltage,PowerPins,DisablePins,VoltageOutput,PcpStartLabel,PcpStopLabel,StartOfBodyFArgs,PrePatFArgs,PreTestFArgs,PostTestFArgs,PostPatFArgs,EndOfBodyFArgs,HspStartLabel,HspStopLabel,PcpCheckPatGen,CurrentClamp,HspCheckPatGen,HspResumePat,RelayMode,Util1Pins,Util0Pins,TestControl,SerializeMeas,MeasF,MeasFArgs,WaitFlagA,WaitFlagB,WaitFlagC,WaitFlagD,Validating_,Irange,PatternTimeout,PcpDisableAlarm,HspDisableAlarm',
|
317
|
+
proc_type: 'VBT',
|
318
|
+
proc_name: 'DCVIPowerSupply_T',
|
319
|
+
proc_called_as: 'Excel Macro',
|
320
|
+
wait_flag1: -2, # waitoff
|
321
|
+
wait_flag2: -2, # waitoff
|
322
|
+
wait_flag3: -2, # waitoff
|
323
|
+
wait_flag4: -2, # waitoff
|
248
324
|
}
|
325
|
+
|
249
326
|
}
|
250
327
|
|
251
328
|
# Generate the instance method definitions based on the above
|
@@ -129,7 +129,9 @@ module OrigenTesters
|
|
129
129
|
end
|
130
130
|
if sbin = set_result.find(:softbin)
|
131
131
|
o[:bin_s_num] = sbin.to_a[0] || o[:bin_s_num]
|
132
|
-
o[:bin_s_name]
|
132
|
+
if o[:bin_s_name].nil?
|
133
|
+
o[:bin_s_name] = bin_names[:soft][sbin.to_a[0]][:name]
|
134
|
+
end
|
133
135
|
end
|
134
136
|
end
|
135
137
|
delayed = on_fail.find(:delayed)
|
@@ -2,7 +2,7 @@ module OrigenTesters
|
|
2
2
|
module SmartestBasedTester
|
3
3
|
class Base
|
4
4
|
class TestMethod
|
5
|
-
FORMAT_TYPES = [:current, :voltage, :time, :string, :integer, :double, :boolean, :class, :list_strings, :list_classes]
|
5
|
+
FORMAT_TYPES = [:current, :voltage, :time, :frequency, :string, :integer, :double, :boolean, :class, :list_strings, :list_classes]
|
6
6
|
|
7
7
|
# Returns the object representing the test method library that the
|
8
8
|
# given test method is defined in
|
@@ -121,6 +121,7 @@ module OrigenTesters
|
|
121
121
|
end
|
122
122
|
|
123
123
|
def handle_val_type(val, type, attr)
|
124
|
+
return val if val == ''
|
124
125
|
case type
|
125
126
|
when :current, 'CURR'
|
126
127
|
"#{val}[A]"
|
@@ -115,16 +115,16 @@ module OrigenTesters
|
|
115
115
|
def add_bin_sheets(spreadsheet)
|
116
116
|
table = spreadsheet.table 'Software_Bins'
|
117
117
|
row = table.row
|
118
|
-
row.cell 'Software Bin'
|
119
118
|
row.cell 'Software Bin Name'
|
119
|
+
row.cell 'Software Bin'
|
120
120
|
row.cell 'Hardware Bin'
|
121
121
|
row.cell 'Result'
|
122
122
|
row.cell 'Color'
|
123
123
|
row.cell 'Priority'
|
124
124
|
@softbins.each do |sbin, attrs|
|
125
125
|
row = table.row
|
126
|
-
row.cell sbin
|
127
126
|
row.cell attrs[:name]
|
127
|
+
row.cell sbin
|
128
128
|
row.cell attrs[:bin]
|
129
129
|
row.cell attrs[:result]
|
130
130
|
row.cell attrs[:color]
|
@@ -134,13 +134,13 @@ module OrigenTesters
|
|
134
134
|
# Write out the bin table
|
135
135
|
table = spreadsheet.table 'Hardware_Bins'
|
136
136
|
row = table.row
|
137
|
-
row.cell 'Hardware Bin'
|
138
137
|
row.cell 'Hardware Bin Name'
|
138
|
+
row.cell 'Hardware Bin'
|
139
139
|
row.cell 'Result'
|
140
140
|
@bins.each do |bin, attrs|
|
141
141
|
row = table.row
|
142
|
-
row.cell bin
|
143
142
|
row.cell attrs[:name]
|
143
|
+
row.cell bin
|
144
144
|
row.cell attrs[:result]
|
145
145
|
end
|
146
146
|
end
|
@@ -47,6 +47,13 @@ module OrigenTesters
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
def custom_d(name, options = {})
|
51
|
+
name = "custom_d_#{name}".to_sym
|
52
|
+
if tester.v93k?
|
53
|
+
ti = test_methods.my_tml.test_d
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
50
57
|
def custom_hash(name, options = {})
|
51
58
|
name = "custom_hash_#{name}".to_sym
|
52
59
|
if tester.v93k? && tester.smt8?
|
@@ -129,6 +136,24 @@ module OrigenTesters
|
|
129
136
|
end
|
130
137
|
}
|
131
138
|
},
|
139
|
+
test_d: {
|
140
|
+
tester_state: [:string, 'CONNECTED', %w(CONNECTED UNCHANGED)],
|
141
|
+
test_name: [:string, 'Functional'],
|
142
|
+
current_arg: [:current, 1],
|
143
|
+
current_no_default: [:current, ''],
|
144
|
+
voltage_arg: [:voltage, 1.2],
|
145
|
+
voltage_no_default: [:voltage, ''],
|
146
|
+
time_arg: [:time, 10],
|
147
|
+
time_no_default: [:time, ''],
|
148
|
+
frequency_arg: [:frequency, 1_000_000],
|
149
|
+
frequency_no_default: [:frequency, ''],
|
150
|
+
integer_arg: [:integer, 5.22],
|
151
|
+
integer_no_default: [:integer, ''],
|
152
|
+
double_arg: [:double, '5.22'],
|
153
|
+
double_no_default: [:double, ''],
|
154
|
+
boolean_arg: [:boolean, true],
|
155
|
+
boolean_no_default: [:boolean, '']
|
156
|
+
},
|
132
157
|
test_hash: {
|
133
158
|
# Parameters can be defined with an underscored symbol as the name, this can be used
|
134
159
|
# if the C++ implementation follows the standard V93K convention of calling the attribute
|
@@ -508,13 +508,19 @@ module OrigenTesters
|
|
508
508
|
|
509
509
|
if tester.j750? || tester.uflex?
|
510
510
|
if tester.uflex?
|
511
|
-
|
512
|
-
|
511
|
+
if options[:pins] == :dcvi
|
512
|
+
ins = test_instances.dcvi_powersupply(name)
|
513
|
+
ins.set_wait_flags(:a) # set wait flag for tester handshake with patterns
|
514
|
+
ins.relay_mode = 1 # tlPowered - keep power on
|
515
|
+
else
|
516
|
+
ins = test_instances.functional(name)
|
517
|
+
ins.set_wait_flags(:a) if options[:duration] == :dynamic
|
518
|
+
ins.scale = options[:scale]
|
519
|
+
ins.units = options[:units]
|
520
|
+
end
|
513
521
|
ins.pin_levels = options.delete(:pin_levels) if options[:pin_levels]
|
514
522
|
ins.lo_limit = options[:lo_limit]
|
515
523
|
ins.hi_limit = options[:hi_limit]
|
516
|
-
ins.scale = options[:scale]
|
517
|
-
ins.units = options[:units]
|
518
524
|
ins.defer_limits = options[:defer_limits]
|
519
525
|
else
|
520
526
|
if options[:pins] == :hi_v
|
@@ -194,6 +194,7 @@ Flow.create do |options|
|
|
194
194
|
|
195
195
|
meas :bgap_voltage_meas, tnum: 1050, bin: 119, soft_bin: 2, hi_limit: 45, number: 5910
|
196
196
|
meas :bgap_voltage_meas1, number: 5920
|
197
|
+
meas :standby_current, pins: :dcvi, power_pins: :vdd, number: 5930
|
197
198
|
end
|
198
199
|
|
199
200
|
if tester.j750?
|
data/program/custom_tests.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: origen_testers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.52.
|
4
|
+
version: 0.52.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen McGinty
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: origen
|