Class: OrigenTesters::Test::Interface
- Inherits:
-
Object
- Object
- OrigenTesters::Test::Interface
- Includes:
- Charz, ProgramGenerators
- Defined in:
- lib/origen_testers/test/interface.rb
Constant Summary
Constants included from ProgramGenerators
Instance Attribute Summary collapse
-
#environment ⇒ Object
readonly
Returns the value of attribute environment.
-
#include_additional_prb2_test ⇒ Object
Returns the value of attribute include_additional_prb2_test.
Attributes included from Charz
#charz_profiles, #charz_routines, #charz_session, #charz_stack, #eof_charz_tests, #eof_charz_tests_group_name, #skip_group_eof_charz_tests
Instance Method Summary collapse
- #ac_specset(sheet_name, expression, options = {}) ⇒ Object
-
#add_ac_specs(ss, expression, options = {}) ⇒ Object
Adds new AC Spec object(s) to the given Specset.
- #add_charz ⇒ Object
-
#add_dc_specs(ss, expression, options = {}) ⇒ Object
Adds new DC Spec object(s) to the given Specset.
- #block_loop(name, options) ⇒ Object
-
#collect_ac_specs(ssname, edge, options = {}) ⇒ Object
Collects AC Spec object(s) from the given expression and adds them to the given Specset.
-
#collect_dc_specs(ssname, level, options = {}) ⇒ Object
Collects DC Spec object(s) from the given expression and adds them to the given Specset.
- #dc_specset(sheet_name, expression, options = {}) ⇒ Object
-
#edge(category, pin, options = {}) ⇒ Object
Assign relevant edges in preparation for edgeset/timeset sheet generation.
- #edge_collection ⇒ Object
- #edgeset(sheet_name, options = {}) ⇒ Object
- #func(name, options = {}) ⇒ Object
- #func_with_charz(name, options = {}) ⇒ Object
- #func_with_comment(name, options = {}) ⇒ Object
- #global_spec(var, options = {}) ⇒ Object
- #group(name, options = {}) ⇒ Object
-
#if_job(*jobs) ⇒ Object
(also: #if_jobs)
Test that the block form of flow control methods like this can be overridden by an interface.
-
#initialize(options = {}) ⇒ Interface
constructor
Options passed to Flow.create and Library.create will be passed in here, use as desired to configure your interface.
- #job_def(jname, options = {}) ⇒ Object
- #level_collection ⇒ Object
- #levelset(sheet_name, options = {}) ⇒ Object
- #log(msg) ⇒ Object
- #meas(name, options = {}) ⇒ Object
- #meas_multi_limits(name, options = {}) ⇒ Object
- #mto_memory(name, options = {}) ⇒ Object
- #nop(options = {}) ⇒ Object
-
#or_ids(options = {}) ⇒ Object
OR 2 IDS together into 1 flag.
- #para(name, options = {}) ⇒ Object
-
#pin_level_se(category, options = {}) ⇒ Object
Assign relevant single-ended pin levels in preparation for levelset sheet generation.
-
#pinmap(name, options = {}) ⇒ Object
Assign relevant pins for pinmap sheet generation.
- #por(options = {}) ⇒ Object
-
#pwr_level(category, options = {}) ⇒ Object
Assign relevant power supply levels in preparation for levelset sheet generation.
- #reference(reference, options = {}) ⇒ Object
- #timeset(sheet_name, options = {}) ⇒ Object
Methods included from Charz
#add_charz_profile, #add_charz_routine, #charz_active?, #charz_off, #charz_on, #charz_only?, #charz_pause, #charz_resume, #create_charz_routine, #generate_eof_charz_tests, #insert_charz_tests, #set_conditional_charz_id
Methods included from ProgramGenerators
#_load_generator, #pre_initialize, #tester
Methods included from Interface
#add_description!, #add_flow_enable, #add_flow_enable=, #add_meta!, #all_pattern_references, #app_identifier, #atp, #clean_referenced_patterns, #clear_pattern_references, #clear_top_level_flow, #close, #comment, #comments, #compile, #consume_comments, #context_changed?, #context_or_parameter_changed?, #descriptions, #discard_comments, #discard_top_level_flow, #flow_generator, #generating_sub_program?, #identity_map, #import, #merge_pattern_references, #on_program_completion, #parameter_changed?, #pattern_references, #pattern_references_name, #pattern_references_name=, #platform, #record_pattern_reference, #referenced_patterns, #render, #resources_mode, #resources_mode?, resources_mode?, #set_top_level_flow, #test, #top_level_flow, #unique_test_names, #unique_test_names=, with_resources_mode, write=, #write?, write?, #write_files
Methods included from ATP::FlowAPI
#atp, #atp=, #hi_limit, #limit, #lo_limit
Constructor Details
#initialize(options = {}) ⇒ Interface
Options passed to Flow.create and Library.create will be passed in here, use as desired to configure your interface
12 13 14 15 |
# File 'lib/origen_testers/test/interface.rb', line 12 def initialize( = {}) @environment = [:environment] add_charz end |
Instance Attribute Details
#environment ⇒ Object (readonly)
Returns the value of attribute environment.
8 9 10 |
# File 'lib/origen_testers/test/interface.rb', line 8 def environment @environment end |
#include_additional_prb2_test ⇒ Object
Returns the value of attribute include_additional_prb2_test.
7 8 9 |
# File 'lib/origen_testers/test/interface.rb', line 7 def include_additional_prb2_test @include_additional_prb2_test end |
Instance Method Details
#ac_specset(sheet_name, expression, options = {}) ⇒ Object
467 468 469 470 471 472 473 474 475 |
# File 'lib/origen_testers/test/interface.rb', line 467 def ac_specset(sheet_name, expression, = {}) = { specset: :default, nom: { typ: nil } }.merge() ss = ac_specsets(sheet_name) add_ac_specs(ss, expression, ) end |
#add_ac_specs(ss, expression, options = {}) ⇒ Object
Adds new AC Spec object(s) to the given Specset
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 |
# File 'lib/origen_testers/test/interface.rb', line 495 def add_ac_specs(ss, expression, = {}) = { specset: :default }.merge() return unless expression.is_a? String # collect all variable names within the expression vars = expression.scan(/[a-zA-Z][\w]+/).map(&:to_sym) vars.each do |var| next if var =~ /^(d0_edge|d1_edge|d2_edge|d3_edge|c1_edge|c2_edge)$/ # The substitutions below are used for backward compatibility next if var =~ /^(d_on|d_data|d_ret|d_off|c_open|c_close)$/ next if var =~ /^(nS|uS|mS|S)$/i next if ss.ac_specsets.key?([:specset]) && ss.ac_specsets[[:specset]].include?(var) ss.add(var, ) end end |
#add_charz ⇒ Object
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 |
# File 'lib/origen_testers/test/interface.rb', line 17 def add_charz add_charz_routine :routine1 do |routine| routine.name = '_cz__rt1' end add_charz_routine :routine2 do |routine| routine.name = '_cz__rt2' end add_charz_routine :routine3 do |routine| routine.name = '_cz__rt3' end add_charz_routine :routine4 do |routine| routine.name = '_cz__rt4' end add_charz_routine :routine5 do |routine| routine.name = '_cz__rt5' end add_charz_routine :routine6 do |routine| routine.name = '_cz__rt6' end add_charz_profile :cz do |profile| profile.routines = [:routine3] end add_charz_profile :cz_only do |profile| profile.charz_only = true profile.routines = [:routine1] end add_charz_profile :simple_gates do |profile| profile.flags = :my_flag profile.enables = :my_enable profile.routines = [:routine1] end add_charz_profile :complex_gates do |profile| profile.flags = { ['$MyFlag1'] => [:routine1, :routine2], ['$MyFlag2'] => [:routine3], '$MyFlag3' => :routine4 } profile.enables = { ['$MyEnable1'] => [:routine1], ['$MyEnable2'] => [:routine2, :routine3], '$MyEnable3' => :routine5 } profile.routines = [:routine1, :routine2, :routine3, :routine4, :routine5, :routine6] end end |
#add_dc_specs(ss, expression, options = {}) ⇒ Object
Adds new DC Spec object(s) to the given Specset
598 599 600 601 602 603 604 605 606 607 608 609 610 |
# File 'lib/origen_testers/test/interface.rb', line 598 def add_dc_specs(ss, expression, = {}) = { specset: :default }.merge() return unless expression.is_a? String vars = expression.scan(/[a-zA-Z][\w]+/).map(&:to_sym) vars.each do |var| next if var =~ /^(nA|uA|mA|A|nV|uV|mV|V)$/i ss.add(var, ) end end |
#block_loop(name, options) ⇒ Object
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/origen_testers/test/interface.rb', line 199 def block_loop(name, ) if [:by_block] if tester.j750? || tester.uflex? test_instances.group do |group| group.name = name $dut.blocks.each_with_index do |block, i| yield block, i, group end end elsif tester.v93k? flow.group name, do $dut.blocks.each_with_index do |block, i| yield block, i end end end else yield end end |
#collect_ac_specs(ssname, edge, options = {}) ⇒ Object
Collects AC Spec object(s) from the given expression and adds them to the given Specset
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 |
# File 'lib/origen_testers/test/interface.rb', line 478 def collect_ac_specs(ssname, edge, = {}) = { nom: { typ: nil } }.merge() # Create a Specsets object from the UFlex program generator API ss = ac_specsets(ssname.to_sym) add_ac_specs(ss, edge.clk_per, ) add_ac_specs(ss, edge.d0_edge, ) add_ac_specs(ss, edge.d1_edge, ) add_ac_specs(ss, edge.d2_edge, ) add_ac_specs(ss, edge.d3_edge, ) add_ac_specs(ss, edge.c1_edge, ) add_ac_specs(ss, edge.c2_edge, ) end |
#collect_dc_specs(ssname, level, options = {}) ⇒ Object
Collects DC Spec object(s) from the given expression and adds them to the given Specset
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 |
# File 'lib/origen_testers/test/interface.rb', line 571 def collect_dc_specs(ssname, level, = {}) = { nom: { typ: nil }, min: { min: nil }, max: { max: nil } }.merge() # Create a Specsets object from the UFlex program generator API ss = dc_specsets(ssname.to_sym) if level.respond_to?(:vmain) add_dc_specs(ss, level.vmain, ) add_dc_specs(ss, level.valt, ) add_dc_specs(ss, level.ifold, ) elsif level.respond_to?(:vil) add_dc_specs(ss, level.vil, ) add_dc_specs(ss, level.vih, ) add_dc_specs(ss, level.vol, ) add_dc_specs(ss, level.voh, ) add_dc_specs(ss, level.vcl, ) add_dc_specs(ss, level.vch, ) add_dc_specs(ss, level.vt, ) add_dc_specs(ss, level.voutlotyp, ) add_dc_specs(ss, level.vouthityp, ) end end |
#dc_specset(sheet_name, expression, options = {}) ⇒ Object
559 560 561 562 563 564 565 566 567 568 |
# File 'lib/origen_testers/test/interface.rb', line 559 def dc_specset(sheet_name, expression, = {}) = { min: { min: nil }, nom: { typ: nil }, max: { max: nil } }.merge() ss = dc_specsets(sheet_name.to_sym) add_dc_specs(ss, expression, ) end |
#edge(category, pin, options = {}) ⇒ Object
Assign relevant edges in preparation for edgeset/timeset sheet generation
416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/origen_testers/test/interface.rb', line 416 def edge(category, pin, = {}) = { d_src: 'PAT', # source of the channel drive data (e.g. pattern, drive_hi, drive_lo, etc.) d_fmt: 'NR', # drive data format (NR, RL, RH, etc.) d0_edge: '', # time at which the input drive is turned on d1_edge: '', # time of the initial data drive edge d2_edge: '', # time of the return format data drive edge d3_edge: '', # time at which the input drive is turned off c_mode: 'Edge', # output compare mode c1_edge: '', # time of the initial output compare edge c2_edge: '', # time of the final output compare edge (window compare) t_res: 'Machine', # timing resolution (possibly ATE-specific) clk_per: '' # clock period equation - for use with MCG }.merge() @edge_collection = edges @edge_collection.add(category, pin, ) end |
#edge_collection ⇒ Object
435 436 437 |
# File 'lib/origen_testers/test/interface.rb', line 435 def edge_collection @edge_collection end |
#edgeset(sheet_name, options = {}) ⇒ Object
439 440 441 442 443 444 445 446 447 448 449 450 451 452 |
# File 'lib/origen_testers/test/interface.rb', line 439 def edgeset(sheet_name, = {}) = { edgeset: :es_default, period: 'cycle', # tester cycle period t_mode: 'Machine' # edgeset timing mode (possibly ATE-specific) }.merge() edgeset = .delete(:edgeset) pin = .delete(:pin) edge = .delete(:edge) @edgeset = edgesets(sheet_name, ) @edgeset.add(edgeset, pin, edge, ) collect_ac_specs(@edgeset.es[edgeset].spec_sheet, edge) end |
#func(name, options = {}) ⇒ Object
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 |
# File 'lib/origen_testers/test/interface.rb', line 72 def func(name, = {}) = { duration: :static }.merge() number = [:number] if tester.j750? || tester.uflex? block_loop(name, ) do |block, i, group| [:number] = number + i if number && i ins = test_instances.functional(name) ins.set_wait_flags(:a) if [:duration] == :dynamic ins.pin_levels = .delete(:pin_levels) if [:pin_levels] if group pname = "#{name}_b#{i}_pset" patsets.add(pname, [{ pattern: "#{name}_b#{i}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname flow.test(group, ) if i == 0 else pname = "#{name}_pset" patsets.add(pname, [{ pattern: "#{name}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname if [:cz_setup] flow.cz(ins, [:cz_setup], ) else flow.test(ins, ) end end end elsif tester.v93k? block_loop(name, ) do |block, i| [:number] = number + i if number && i tm = test_methods.ac_tml.ac_test.functional_test ts = test_suites.run(name, ) ts.test_method = tm if tester.smt8? ts.spec = .delete(:pin_levels) if [:pin_levels] ts.spec ||= 'specs.Nominal' else ts.levels = .delete(:pin_levels) if [:pin_levels] end if block ts.pattern = "#{name}_b#{i}" else ts.pattern = name.to_s # if options[:cz_setup] # flow.cz(ins, options[:cz_setup], options) # else # end end flow.test ts, end end end |
#func_with_charz(name, options = {}) ⇒ Object
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 |
# File 'lib/origen_testers/test/interface.rb', line 129 def func_with_charz(name, = {}) = { duration: :static }.merge() if tester.v93k? if tester.smt7? tm = test_methods.ac_tml.ac_test.functional_test ts = test_suites.run(name, ) ts.test_method = tm ts.pattern = 'charz_example' test_level_charz = false if [:charz] charz_on(*[:charz]) test_level_charz = true end unless charz_only? && ![:charz_test] [:parent_test_name] = name set_conditional_charz_id() flow.test ts, end unless [:charz_test] insert_charz_tests(.merge(parent_test_name: name, charz_test: true)) do || charz_name = :"#{name}_#{charz_routines[[:current_routine]].name}" func_with_charz(charz_name, ) end end charz_off if test_level_charz else fail 'Only SMT7 is Implemented for Charz' end else fail "Tester #{tester.name} Not Yet Implemented for Charz" end end |
#func_with_comment(name, options = {}) ⇒ Object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/origen_testers/test/interface.rb', line 169 def func_with_comment(name, = {}) if tester.v93k? = { duration: :static }.merge() number = [:number] block_loop(name, ) do |block, i| [:number] = number + i if number && i tm = test_methods.ac_tml.ac_test.functional_test ts = test_suites.run(name, ) ts.test_method = tm ts.levels = .delete(:pin_levels) if [:pin_levels] ts.comment = .delete(:comment) || flow.active_description if block ts.pattern = "#{name}_b#{i}" else ts.pattern = name.to_s # if options[:cz_setup] # flow.cz(ins, options[:cz_setup], options) # else # end end flow.test ts, end else func(name, ) end end |
#global_spec(var, options = {}) ⇒ Object
612 613 614 615 616 617 618 619 620 |
# File 'lib/origen_testers/test/interface.rb', line 612 def global_spec(var, = {}) = { job: nil, value: nil, comment: nil }.merge() global_specs('SpecsGlobal').add(var, job: [:job], value: [:value], comment: [:comment]) end |
#group(name, options = {}) ⇒ Object
378 379 380 381 382 |
# File 'lib/origen_testers/test/interface.rb', line 378 def group(name, = {}) flow.group name, do |group| yield group end end |
#if_job(*jobs) ⇒ Object Also known as: if_jobs
Test that the block form of flow control methods like this can be overridden by an interface
57 58 59 60 61 |
# File 'lib/origen_testers/test/interface.rb', line 57 def if_job(*jobs) jobs = jobs.flatten jobs.delete(:prb9) super end |
#job_def(jname, options = {}) ⇒ Object
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
# File 'lib/origen_testers/test/interface.rb', line 622 def job_def(jname, = {}) = { pinmap: pinmap_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, instances: test_instance_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, flows: flow_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, ac_specs: ac_specset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, dc_specs: dc_specset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, patsets: patset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, patgroups: patgroup_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, bintables: [], cz: [], test_procs: [], mix_sig_timing: [], wave_defs: [], psets: [], sigs_port_map: [], fract_bus: [], comment: nil }.merge() program_jobs('Jobs').add(jname, ) end |
#level_collection ⇒ Object
546 547 548 |
# File 'lib/origen_testers/test/interface.rb', line 546 def level_collection @level_collection end |
#levelset(sheet_name, options = {}) ⇒ Object
550 551 552 553 554 555 556 557 |
# File 'lib/origen_testers/test/interface.rb', line 550 def levelset(sheet_name, = {}) pin = .delete(:pin) level = .delete(:level) @levelset = levelsets(sheet_name) @levelset.add(sheet_name, pin, level, ) collect_dc_specs(@levelset.spec_sheet, level) end |
#log(msg) ⇒ Object
64 65 66 67 68 69 70 |
# File 'lib/origen_testers/test/interface.rb', line 64 def log(msg) if tester.j750? || tester.uflex? flow.logprint(msg) else flow.log(msg) end end |
#meas(name, options = {}) ⇒ Object
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 |
# File 'lib/origen_testers/test/interface.rb', line 313 def meas(name, = {}) = { duration: :static }.merge() name = "meas_#{name}" unless name.to_s =~ /meas/ if tester.j750? || tester.uflex? if tester.uflex? ins = test_instances.functional(name) ins.set_wait_flags(:a) if [:duration] == :dynamic ins.pin_levels = .delete(:pin_levels) if [:pin_levels] ins.lo_limit = [:lo_limit] ins.hi_limit = [:hi_limit] ins.scale = [:scale] ins.units = [:units] ins.defer_limits = [:defer_limits] else if [:pins] == :hi_v ins = test_instances.board_pmu(name) elsif [:pins] == :power ins = test_instances.powersupply(name) else ins = test_instances.pin_pmu(name) end ins.set_wait_flags(:a) if [:duration] == :dynamic ins.pin_levels = .delete(:pin_levels) if [:pin_levels] ins.lo_limit = [:lo_limit] ins.hi_limit = [:hi_limit] end pname = "#{name}_pset" patsets.add(pname, [{ pattern: "#{name}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname if [:cz_setup] flow.cz(ins, [:cz_setup], ) else flow.test(ins, ) end elsif tester.v93k? tm = test_methods.dc_tml.dc_test.general_pmu ts = test_suites.run(name, ) ts.test_method = tm if tester.smt8? ts.spec = .delete(:pin_levels) if [:pin_levels] ts.spec ||= 'specs.Nominal' else ts.levels = .delete(:pin_levels) if [:pin_levels] end ts.lo_limit = [:lo_limit] if [:lo_limit] ts.hi_limit = [:hi_limit] if [:hi_limit] ts.pattern = name.to_s # if options[:cz_setup] # flow.cz(ins, options[:cz_setup], options) # else # use_limit_params = [:lo_limit, :hi_limit, :scale, :units] # define options to strip for flow.test # options_use_limit = options.dup # duplicate, as modifying options directly, even an assigned copy modifies original # flow.test(ins, options.reject! { |k, _| use_limit_params.include? k }) # set up test skipping use-limit options # flow.use_limit(name, options_use_limit) if options_use_limit[:hi_limit] || options_use_limit[:lo_limit] # Only use use-limit if limits present in flow # end flow.test ts, end def group(name, = {}) flow.group name, do |group| yield group end end #################################################### ####### UltraFLEX Pinmap Stuff #################### #################################################### # Assign relevant pins for pinmap sheet generation def pinmap(name, = {}) pinmap = pinmaps("#{name}") Origen.top_level.add_pin_group :JTAG, :tdi, :tdo, :tms Origen.top_level.power_pin_groups.keys.each do |grp_key| pinmap.add_power_pin(grp_key, type: 'Power', comment: "# #{grp_key}") end Origen.top_level.virtual_pins.keys.each do |util_pin| upin = Origen.top_level.virtual_pins(util_pin) case upin.type when :virtual_pin pinmap.add_utility_pin(upin.name, type: 'Utility', comment: "# #{util_pin}") when :ate_ch pinmap.add_utility_pin(upin.name, type: 'I/O', comment: "# #{util_pin}") end end Origen.top_level.pin.keys.each do |pkey| pinmap.add_pin(Origen.top_level.pin(pkey).name, type: 'I/O', comment: "# #{pkey}") end Origen.top_level.pin_groups.keys.sort.each do |gkey| # Do not include pins that are aliased to themselves Origen.top_level.pin(gkey).each do |pin| pinmap.add_group_pin(gkey, Origen.top_level.pin(pin.id).name, type: 'I/O', comment: "# #{gkey}") end end end # Assign relevant edges in preparation for edgeset/timeset sheet generation def edge(category, pin, = {}) = { d_src: 'PAT', # source of the channel drive data (e.g. pattern, drive_hi, drive_lo, etc.) d_fmt: 'NR', # drive data format (NR, RL, RH, etc.) d0_edge: '', # time at which the input drive is turned on d1_edge: '', # time of the initial data drive edge d2_edge: '', # time of the return format data drive edge d3_edge: '', # time at which the input drive is turned off c_mode: 'Edge', # output compare mode c1_edge: '', # time of the initial output compare edge c2_edge: '', # time of the final output compare edge (window compare) t_res: 'Machine', # timing resolution (possibly ATE-specific) clk_per: '' # clock period equation - for use with MCG }.merge() @edge_collection = edges @edge_collection.add(category, pin, ) end def edge_collection @edge_collection end def edgeset(sheet_name, = {}) = { edgeset: :es_default, period: 'cycle', # tester cycle period t_mode: 'Machine' # edgeset timing mode (possibly ATE-specific) }.merge() edgeset = .delete(:edgeset) pin = .delete(:pin) edge = .delete(:edge) @edgeset = edgesets(sheet_name, ) @edgeset.add(edgeset, pin, edge, ) collect_ac_specs(@edgeset.es[edgeset].spec_sheet, edge) end def timeset(sheet_name, = {}) = { timeset: :default, master_ts: :default }.merge() timeset = .delete(:timeset) pin = .delete(:pin) eset = .delete(:eset) @timeset = timesets(sheet_name, ) @timeset.add(timeset, pin, eset, ) end def ac_specset(sheet_name, expression, = {}) = { specset: :default, nom: { typ: nil } }.merge() ss = ac_specsets(sheet_name) add_ac_specs(ss, expression, ) end # Collects AC Spec object(s) from the given expression and adds them to the given Specset def collect_ac_specs(ssname, edge, = {}) = { nom: { typ: nil } }.merge() # Create a Specsets object from the UFlex program generator API ss = ac_specsets(ssname.to_sym) add_ac_specs(ss, edge.clk_per, ) add_ac_specs(ss, edge.d0_edge, ) add_ac_specs(ss, edge.d1_edge, ) add_ac_specs(ss, edge.d2_edge, ) add_ac_specs(ss, edge.d3_edge, ) add_ac_specs(ss, edge.c1_edge, ) add_ac_specs(ss, edge.c2_edge, ) end # Adds new AC Spec object(s) to the given Specset def add_ac_specs(ss, expression, = {}) = { specset: :default }.merge() return unless expression.is_a? String # collect all variable names within the expression vars = expression.scan(/[a-zA-Z][\w]+/).map(&:to_sym) vars.each do |var| next if var =~ /^(d0_edge|d1_edge|d2_edge|d3_edge|c1_edge|c2_edge)$/ # The substitutions below are used for backward compatibility next if var =~ /^(d_on|d_data|d_ret|d_off|c_open|c_close)$/ next if var =~ /^(nS|uS|mS|S)$/i next if ss.ac_specsets.key?([:specset]) && ss.ac_specsets[[:specset]].include?(var) ss.add(var, ) end end # Assign relevant power supply levels in preparation for levelset sheet generation def pwr_level(category, = {}) = { vmain: 1.8, # Main supply voltage valt: 1.8, # Alternate supply voltage ifold: 1, # Supply clamp current delay: 0 # Supply power-up delay }.merge() @level_collection = levels @level_collection.add_power_level(category, ) end # Assign relevant single-ended pin levels in preparation for levelset sheet generation def pin_level_se(category, = {}) = { vil: 0, # Input drive low vih: 1.8, # Input drive high vol: 1.0, # Output compare low voh: 0.8, # Output compare high vcl: -1, # Voltage clamp low vch: 2.5, # Voltage clamp high vt: 0.9, # Termination voltage voutlotyp: 0, # vouthityp: 0, # dmode: 'Largeswing-VT' # Driver mode }.merge() @level_collection = levels @level_collection.add_se_pin_level(category, ) end def level_collection @level_collection end def levelset(sheet_name, = {}) pin = .delete(:pin) level = .delete(:level) @levelset = levelsets(sheet_name) @levelset.add(sheet_name, pin, level, ) collect_dc_specs(@levelset.spec_sheet, level) end def dc_specset(sheet_name, expression, = {}) = { min: { min: nil }, nom: { typ: nil }, max: { max: nil } }.merge() ss = dc_specsets(sheet_name.to_sym) add_dc_specs(ss, expression, ) end # Collects DC Spec object(s) from the given expression and adds them to the given Specset def collect_dc_specs(ssname, level, = {}) = { nom: { typ: nil }, min: { min: nil }, max: { max: nil } }.merge() # Create a Specsets object from the UFlex program generator API ss = dc_specsets(ssname.to_sym) if level.respond_to?(:vmain) add_dc_specs(ss, level.vmain, ) add_dc_specs(ss, level.valt, ) add_dc_specs(ss, level.ifold, ) elsif level.respond_to?(:vil) add_dc_specs(ss, level.vil, ) add_dc_specs(ss, level.vih, ) add_dc_specs(ss, level.vol, ) add_dc_specs(ss, level.voh, ) add_dc_specs(ss, level.vcl, ) add_dc_specs(ss, level.vch, ) add_dc_specs(ss, level.vt, ) add_dc_specs(ss, level.voutlotyp, ) add_dc_specs(ss, level.vouthityp, ) end end # Adds new DC Spec object(s) to the given Specset def add_dc_specs(ss, expression, = {}) = { specset: :default }.merge() return unless expression.is_a? String vars = expression.scan(/[a-zA-Z][\w]+/).map(&:to_sym) vars.each do |var| next if var =~ /^(nA|uA|mA|A|nV|uV|mV|V)$/i ss.add(var, ) end end def global_spec(var, = {}) = { job: nil, value: nil, comment: nil }.merge() global_specs('SpecsGlobal').add(var, job: [:job], value: [:value], comment: [:comment]) end def job_def(jname, = {}) = { pinmap: pinmap_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, instances: test_instance_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, flows: flow_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, ac_specs: ac_specset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, dc_specs: dc_specset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, patsets: patset_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, patgroups: patgroup_sheets.map { |k, v| v.filename.gsub(/\.txt$/, '') }, bintables: [], cz: [], test_procs: [], mix_sig_timing: [], wave_defs: [], psets: [], sigs_port_map: [], fract_bus: [], comment: nil }.merge() program_jobs('Jobs').add(jname, ) end def reference(reference, = {}) = { comment: nil }.merge() references('Refs').add(reference, ) end end |
#meas_multi_limits(name, options = {}) ⇒ Object
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 |
# File 'lib/origen_testers/test/interface.rb', line 288 def meas_multi_limits(name, = {}) = { duration: :static }.merge() name = "measmulti_#{name}" unless name.to_s =~ /measmulti/ if tester.uflex? ins = test_instances.functional(name) ins.set_wait_flags(:a) if [:duration] == :dynamic ins.pin_levels = .delete(:pin_levels) if [:pin_levels] ins.defer_limits = [:defer_limits] # some made up sub test limits [:sub_tests] = [sub_test('limit1', lo: 0, hi: 7), sub_test('limit2', lo: 3, hi: 8)] pname = "#{name}_pset" patsets.add(pname, [{ pattern: "#{name}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname flow.test(ins, ) end end |
#mto_memory(name, options = {}) ⇒ Object
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 |
# File 'lib/origen_testers/test/interface.rb', line 257 def mto_memory(name, = {}) = { duration: :static }.merge() if tester.j750? block_loop(name, ) do |block, i, group| ins = test_instances.mto_memory(name) ins.set_wait_flags(:a) if [:duration] == :dynamic ins.pin_levels = .delete(:pin_levels) if [:pin_levels] if group pname = "#{name}_b#{i}_pset" patsets.add(pname, [{ pattern: "#{name}_b#{i}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname flow.test(group, ) if i == 0 else pname = "#{name}_pset" patsets.add(pname, [{ pattern: "#{name}.PAT" }, { pattern: 'nvm_global_subs.PAT', start_label: 'subr' }]) ins.pattern = pname if [:cz_setup] flow.cz(ins, [:cz_setup], ) else flow.test(ins, ) end end end end end |
#nop(options = {}) ⇒ Object
253 254 255 |
# File 'lib/origen_testers/test/interface.rb', line 253 def nop( = {}) flow.nop end |
#or_ids(options = {}) ⇒ Object
OR 2 IDS together into 1 flag
249 250 251 |
# File 'lib/origen_testers/test/interface.rb', line 249 def or_ids( = {}) flow.or_flags([:id1], [:id2], ) end |
#para(name, options = {}) ⇒ Object
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 |
# File 'lib/origen_testers/test/interface.rb', line 231 def para(name, = {}) = { high_voltage: false }.merge() if tester.j750? if .delete(:high_voltage) ins = test_instances.bpmu(name) else ins = test_instances.ppmu(name) end ins.dc_category = 'NVM_PARA' flow.test(ins, ) patsets.add("#{name}_pset", pattern: "#{name}.PAT") end end |
#pin_level_se(category, options = {}) ⇒ Object
Assign relevant single-ended pin levels in preparation for levelset sheet generation
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
# File 'lib/origen_testers/test/interface.rb', line 528 def pin_level_se(category, = {}) = { vil: 0, # Input drive low vih: 1.8, # Input drive high vol: 1.0, # Output compare low voh: 0.8, # Output compare high vcl: -1, # Voltage clamp low vch: 2.5, # Voltage clamp high vt: 0.9, # Termination voltage voutlotyp: 0, # vouthityp: 0, # dmode: 'Largeswing-VT' # Driver mode }.merge() @level_collection = levels @level_collection.add_se_pin_level(category, ) end |
#pinmap(name, options = {}) ⇒ Object
Assign relevant pins for pinmap sheet generation
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
# File 'lib/origen_testers/test/interface.rb', line 389 def pinmap(name, = {}) pinmap = pinmaps("#{name}") Origen.top_level.add_pin_group :JTAG, :tdi, :tdo, :tms Origen.top_level.power_pin_groups.keys.each do |grp_key| pinmap.add_power_pin(grp_key, type: 'Power', comment: "# #{grp_key}") end Origen.top_level.virtual_pins.keys.each do |util_pin| upin = Origen.top_level.virtual_pins(util_pin) case upin.type when :virtual_pin pinmap.add_utility_pin(upin.name, type: 'Utility', comment: "# #{util_pin}") when :ate_ch pinmap.add_utility_pin(upin.name, type: 'I/O', comment: "# #{util_pin}") end end Origen.top_level.pin.keys.each do |pkey| pinmap.add_pin(Origen.top_level.pin(pkey).name, type: 'I/O', comment: "# #{pkey}") end Origen.top_level.pin_groups.keys.sort.each do |gkey| # Do not include pins that are aliased to themselves Origen.top_level.pin(gkey).each do |pin| pinmap.add_group_pin(gkey, Origen.top_level.pin(pin.id).name, type: 'I/O', comment: "# #{gkey}") end end end |
#por(options = {}) ⇒ Object
220 221 222 223 224 225 226 227 228 229 |
# File 'lib/origen_testers/test/interface.rb', line 220 def por( = {}) = { instance_not_available: true }.merge() if tester.j750? || tester.uflex? flow.test('por_ins', ) else func('por_ins', ) end end |
#pwr_level(category, options = {}) ⇒ Object
Assign relevant power supply levels in preparation for levelset sheet generation
515 516 517 518 519 520 521 522 523 524 525 |
# File 'lib/origen_testers/test/interface.rb', line 515 def pwr_level(category, = {}) = { vmain: 1.8, # Main supply voltage valt: 1.8, # Alternate supply voltage ifold: 1, # Supply clamp current delay: 0 # Supply power-up delay }.merge() @level_collection = levels @level_collection.add_power_level(category, ) end |
#reference(reference, options = {}) ⇒ Object
645 646 647 648 649 650 651 |
# File 'lib/origen_testers/test/interface.rb', line 645 def reference(reference, = {}) = { comment: nil }.merge() references('Refs').add(reference, ) end |
#timeset(sheet_name, options = {}) ⇒ Object
454 455 456 457 458 459 460 461 462 463 464 465 |
# File 'lib/origen_testers/test/interface.rb', line 454 def timeset(sheet_name, = {}) = { timeset: :default, master_ts: :default }.merge() timeset = .delete(:timeset) pin = .delete(:pin) eset = .delete(:eset) @timeset = timesets(sheet_name, ) @timeset.add(timeset, pin, eset, ) end |