Class: OrigenSim::Simulator

Inherits:
Object
  • Object
show all
Includes:
Origen::PersistentCallbacks
Defined in:
lib/origen_sim/simulator.rb

Overview

Responsible for managing and communicating with the simulator process, a single instance of this class is instantiated as OrigenSim.simulator

Constant Summary collapse

VENDORS =
[:icarus, :cadence]

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#configurationObject (readonly) Also known as: config

Returns the value of attribute configuration.



11
12
13
# File 'lib/origen_sim/simulator.rb', line 11

def configuration
  @configuration
end

#failedObject (readonly)

Returns the value of attribute failed.



11
12
13
# File 'lib/origen_sim/simulator.rb', line 11

def failed
  @failed
end

#socketObject (readonly)

Returns the value of attribute socket.



11
12
13
# File 'lib/origen_sim/simulator.rb', line 11

def socket
  @socket
end

Instance Method Details

#artifacts_dirObject



52
53
54
55
56
57
58
# File 'lib/origen_sim/simulator.rb', line 52

def artifacts_dir
  @artifacts_dir ||= begin
    d = "#{Origen.root}/simulation/#{id}/artifacts"
    FileUtils.mkdir_p(d)
    d
  end
end

#before_pattern(name) ⇒ Object

Called before every pattern is generated, but we only use it the first time it is called to kick off the simulator process if the current tester is an OrigenSim::Tester



297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
# File 'lib/origen_sim/simulator.rb', line 297

def before_pattern(name)
  if simulation_tester?
    unless @enabled
      # When running pattern back-to-back, only want to launch the simulator the
      # first time
      unless socket
        start
      end
    end
    # Set the current pattern name in the simulation
    put("a^#{name.sub(/\..*/, '')}")
    @pattern_count ||= 0
    if @pattern_count > 0
      c = error_count
      if c > 0
        Origen.log.error "The simulation currently has #{c} error(s)!"
      else
        Origen.log.success 'There are no simulation errors yet!'
      end
    end
    @pattern_count += 1
  end
end

#compiled_dirObject

Returns the directory where the compiled simulation object lives, this should be checked into your Origen app’s repository



62
63
64
65
66
67
68
# File 'lib/origen_sim/simulator.rb', line 62

def compiled_dir
  @compiled_dir ||= begin
    d = "#{Origen.root}/simulation/#{id}/#{config[:vendor]}"
    FileUtils.mkdir_p(d)
    d
  end
end

#configure(options) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/origen_sim/simulator.rb', line 25

def configure(options)
  fail 'A vendor must be supplied, e.g. OrigenSim::Tester.new(vendor: :icarus)' unless options[:vendor]
  unless VENDORS.include?(options[:vendor])
    fail "Unknown vendor #{options[:vendor]}, valid values are: #{VENDORS.map { |v| ':' + v.to_s }.join(', ')}"
  end
  unless options[:rtl_top]
    fail "The name of the file containing the DUT top-level must be supplied, e.g. OrigenSim::Tester.new(rtl_top: 'my_ip')" unless options[:rtl_top]
  end
  @configuration = options
  @tmp_dir = nil
end

#cycle(number_of_cycles) ⇒ Object



394
395
396
# File 'lib/origen_sim/simulator.rb', line 394

def cycle(number_of_cycles)
  put("3^#{number_of_cycles}")
end

#define_pinsObject

Tells the simulator about the pins in the current device so that it can set up internal handles to efficiently access them



351
352
353
354
355
356
357
358
# File 'lib/origen_sim/simulator.rb', line 351

def define_pins
  dut.rtl_pins.each_with_index do |(name, pin), i|
    unless pin.tie_off
      pin.simulation_index = i
      put("0^#{pin.id}^#{i}^#{pin.drive_wave.index}^#{pin.compare_wave.index}")
    end
  end
end

#define_wavesObject



376
377
378
379
380
381
382
383
# File 'lib/origen_sim/simulator.rb', line 376

def define_waves
  dut.timeset.drive_waves.each_with_index do |wave, i|
    put("6^#{i}^0^#{wave_to_str(wave)}")
  end
  dut.timeset.compare_waves.each_with_index do |wave, i|
    put("6^#{i}^1^#{wave_to_str(wave)}")
  end
end

#end_simulationObject



385
386
387
# File 'lib/origen_sim/simulator.rb', line 385

def end_simulation
  put('8^')
end

#error_countObject

Returns the current simulation error count



409
410
411
# File 'lib/origen_sim/simulator.rb', line 409

def error_count
  peek('origen.debug.errors')
end

#getObject

Get a message from the simulator, will block until one is received



283
284
285
# File 'lib/origen_sim/simulator.rb', line 283

def get
  socket.readline
end

#idObject

The ID assigned to the current simulation target, falls back to to the Origen target name if an :id option is not supplied when instantiating the tester



40
41
42
# File 'lib/origen_sim/simulator.rb', line 40

def id
  config[:id] || Origen.target.name
end

#interactive_shutdownObject



500
501
502
# File 'lib/origen_sim/simulator.rb', line 500

def interactive_shutdown
  @interactive_mode = true
end


181
182
183
184
185
186
187
188
189
190
# File 'lib/origen_sim/simulator.rb', line 181

def link_artifacts
  done = "#{run_dir}/.artifacts_linked"
  unless File.exist?(done)
    Dir.foreach(artifacts_dir) do |item|
      next if item == '.' || item == '..'
      FileUtils.ln_s("#{artifacts_dir}/#{item}", "#{run_dir}/#{item}") unless File.exist?("#{run_dir}/#{item}")
    end
    FileUtils.touch(done)
  end
end

#log_messages=(val) ⇒ Object

When set to true the simulator will log all messages it receives, note that this must be run in conjunction with -d supplied to the Origen command to actually see the messages



17
18
19
20
21
22
23
# File 'lib/origen_sim/simulator.rb', line 17

def log_messages=(val)
  if val
    put('d^1')
  else
    put('d^0')
  end
end

#on_origen_shutdownObject



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
# File 'lib/origen_sim/simulator.rb', line 520

def on_origen_shutdown
  if @enabled
    unless @interactive_mode
      Origen.log.debug 'Shutting down simulator...'
      unless @failed_to_start
        c = error_count
        if c > 0
          @failed = true
          Origen.log.error "The simulation failed with #{c} errors!"
        end
      end
    end
    stop
    unless @interactive_mode
      if failed
        Origen.app.stats.report_fail
      else
        Origen.app.stats.report_pass
      end
    end
    if view_wave_command
      puts
      puts 'To view the simulation run the following command:'
      puts
      puts "  #{view_wave_command}"
      puts
    end
  end
ensure
  Process.kill(15, pid) if @enabled && running?
end

#on_timeset_changedObject

This will be called automatically whenever tester.set_timeset has been called



338
339
340
341
342
343
344
345
346
347
# File 'lib/origen_sim/simulator.rb', line 338

def on_timeset_changed
  # Important that this is done first, since it is used to clear the pin
  # and wave definitions in the bridge
  set_period(dut.current_timeset_period)
  # Clear pins and waves
  define_pins
  define_waves
  # Apply the pin reset values / re-apply the existing states
  put_all_pin_states
end

#pattern_generated(path) ⇒ Object

This will be called at the end of every pattern, make sure the simulator is not running behind before potentially moving onto another pattern



290
291
292
# File 'lib/origen_sim/simulator.rb', line 290

def pattern_generated(path)
  sync_up if simulation_tester?
end

#peek(net) ⇒ Object

Returns the current value of the given net, or nil if the given path does not resolve to a valid node



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
# File 'lib/origen_sim/simulator.rb', line 415

def peek(net)
  # The Verilog spec does not specify that underlying VPI put method should
  # handle a part select, so some simulators do not handle it. Therefore we
  # deal with it here to ensure cross simulator compatibility.

  # http://rubular.com/r/eTVGzrYmXQ
  if net =~ /(.*)\[(\d+):?(\.\.)?(\d*)\]$/
    net = Regexp.last_match(1)
    msb = Regexp.last_match(2).to_i
    lsb = Regexp.last_match(4)
    lsb = lsb.empty? ? nil : lsb.to_i
  end

  sync_up
  put("9^#{clean(net)}")

  m = get.strip
  if m == 'FAIL'
    return nil
  else
    m = m.to_i
    if msb
      # Setting a range of bits
      if lsb
        m[msb..lsb]
      else
        m[msb]
      end
    else
      m
    end
  end
end

#pidObject

Returns the pid of the simulator process



253
254
255
256
257
258
259
# File 'lib/origen_sim/simulator.rb', line 253

def pid
  return @pid if @pid_set
  @pid = File.readlines(pid_file).first.strip.to_i if File.exist?(pid_file)
  @pid ||= 0
  @pid_set = true
  @pid
end

#pid_dirObject



78
79
80
81
82
83
84
# File 'lib/origen_sim/simulator.rb', line 78

def pid_dir
  @pid_dir ||= begin
    d = "#{Origen.root}/tmp/origen_sim/pids"
    FileUtils.mkdir_p(d)
    d
  end
end

#pid_fileObject



261
262
263
# File 'lib/origen_sim/simulator.rb', line 261

def pid_file
  "#{Origen.root}/tmp/origen_sim/pids/#{socket_number}"
end

#poke(net, value) ⇒ Object

Forces the given value to the given net. Note that no error checking is done and no error will be communicated if an illegal net is supplied. The user should follow up with a peek if they want to verify that the poke was applied.



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
# File 'lib/origen_sim/simulator.rb', line 453

def poke(net, value)
  # The Verilog spec does not specify that underlying VPI put method should
  # handle a part select, so some simulators do not handle it. Therefore we
  # deal with it here to ensure cross simulator compatibility.

  # http://rubular.com/r/eTVGzrYmXQ
  if net =~ /(.*)\[(\d+):?(\.\.)?(\d*)\]$/
    path = Regexp.last_match(1)
    msb = Regexp.last_match(2).to_i
    lsb = Regexp.last_match(4)
    lsb = lsb.empty? ? nil : lsb.to_i

    v = peek(path)
    return nil unless v

    # Setting a range of bits
    if lsb
      upper = v >> (msb + 1)
      # Make sure value does not overflow
      value = value[(msb - lsb)..0]
      if lsb == 0
        value = (upper << (msb + 1)) | value
      else
        lower = v[(lsb - 1)..0]
        value = (upper << (msb + 1)) |
                (value << lsb) | lower
      end

    # Setting a single bit
    else
      if msb == 0
        upper = v >> 1
        value = (upper << 1) | value[0]
      else
        lower = v[(msb - 1)..0]
        upper = v >> (msb + 1)
        value = (upper << (msb + 1)) |
                (value[0] << msb) | lower
      end
    end
    net = path
  end

  sync_up
  put("b^#{clean(net)}^#{value}")
end

#put(msg) ⇒ Object

Send the given message string to the simulator



277
278
279
# File 'lib/origen_sim/simulator.rb', line 277

def put(msg)
  socket.write(msg + "\n") if socket
end

#put_all_pin_statesObject

Applies the current state of all pins to the simulation



329
330
331
332
333
334
# File 'lib/origen_sim/simulator.rb', line 329

def put_all_pin_states
  dut.rtl_pins.each do |name, pin|
    pin.reset_simulator_state
    pin.update_simulation
  end
end

#run_cmdObject



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
# File 'lib/origen_sim/simulator.rb', line 118

def run_cmd
  case config[:vendor]
  when :icarus
    cmd = configuration[:vvp] || 'vvp'
    cmd += " -M#{compiled_dir} -morigen #{compiled_dir}/dut.vvp +socket+#{socket_id}"

  when :cadence
    input_file = "#{tmp_dir}/#{id}.tcl"
    unless File.exist?(input_file)
      Origen.app.runner.launch action:            :compile,
                               files:             "#{Origen.root!}/templates/probe.tcl.erb",
                               output:            tmp_dir,
                               check_for_changes: false,
                               quiet:             true,
                               options:           { dir: wave_dir, force: config[:force], setup: config[:setup], depth: :all },
                               output_file_name:  "#{id}.tcl"
    end
    input_file_fast = "#{tmp_dir}/#{id}_fast.tcl"
    if $use_fast_probe_depth
      fast_probe_depth = config[:fast_probe_depth] || 1
      Origen.app.runner.launch action:            :compile,
                               files:             "#{Origen.root!}/templates/probe.tcl.erb",
                               output:            tmp_dir,
                               check_for_changes: false,
                               quiet:             true,
                               options:           { dir: wave_dir, force: config[:force], setup: config[:setup], depth: fast_probe_depth },
                               output_file_name:  "#{id}_fast.tcl"
    end
    wave_dir  # Ensure this exists since it won't be referenced above if the
    # input file is already generated

    cmd = configuration[:irun] || 'irun'
    cmd += " -r origen -snapshot origen +socket+#{socket_id}"
    cmd += $use_fast_probe_depth ? " -input #{input_file_fast}" : " -input #{input_file}"
    cmd += " -nclibdirpath #{compiled_dir}"
  end
  cmd
end

#run_dirObject



172
173
174
175
176
177
178
179
# File 'lib/origen_sim/simulator.rb', line 172

def run_dir
  case config[:vendor]
  when :icarus
    wave_dir
  else
    tmp_dir
  end
end

#running?Boolean

Returns true if the simulator process is running

Returns:

  • (Boolean)


266
267
268
269
270
271
272
273
274
# File 'lib/origen_sim/simulator.rb', line 266

def running?
  return false if pid == 0
  begin
    Process.getpgid(pid)
    true
  rescue Errno::ESRCH
    false
  end
end

#set_period(period_in_ns) ⇒ Object



389
390
391
392
# File 'lib/origen_sim/simulator.rb', line 389

def set_period(period_in_ns)
  period_in_ns = period_in_ns * (config[:time_factor] || 1)
  put("1^#{period_in_ns}")
end

#simulation_tester?Boolean

Returns:

  • (Boolean)


560
561
562
# File 'lib/origen_sim/simulator.rb', line 560

def simulation_tester?
  (tester && tester.is_a?(OrigenSim::Tester))
end

#socket_idObject



552
553
554
# File 'lib/origen_sim/simulator.rb', line 552

def socket_id
  @socket_id ||= "/tmp/#{socket_number}.sock"
end

#socket_numberObject



556
557
558
# File 'lib/origen_sim/simulator.rb', line 556

def socket_number
  @socket_number ||= (Process.pid.to_s + Time.now.to_f.to_s).sub('.', '')
end

#startObject

Starts up the simulator process



193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# File 'lib/origen_sim/simulator.rb', line 193

def start
  server = UNIXServer.new(socket_id)
  verbose = Origen.debugger_enabled?
  link_artifacts
  cmd = run_cmd + ' & echo \$!'

  launch_simulator = %(
    require 'open3'

    Dir.chdir '#{run_dir}' do
      Open3.popen3('#{cmd}') do |stdin, stdout, stderr, thread|
        pid = stdout.gets.strip
        File.open '#{pid_dir}/#{socket_number}', 'w' do |f|
          f.puts pid
        end
        threads = []
        threads << Thread.new do
          until (line = stdout.gets).nil?
            puts line if #{verbose ? 'true' : 'false'}
          end
        end
        threads << Thread.new do
          until (line = stderr.gets).nil?
            puts line
          end
        end
        threads.each(&:join)
      end
    end
  )

  simulator_parent_process = spawn("ruby -e \"#{launch_simulator}\"")
  Process.detach(simulator_parent_process)

  timeout_connection(config[:startup_timeout] || 15) do
    @socket = server.accept
    @connection_established = true
    if @connection_timed_out
      @failed_to_start = true
      Origen.log.error 'Simulator failed to respond'
      @failed = true
      exit
    end
  end
  data = get
  unless data.strip == 'READY!'
    @failed_to_start = true
    fail "The simulator didn't start properly!"
  end
  @enabled = true
  # Tick the simulation on, this seems to be required since any VPI puts operations before
  # the simulation has started are not applied.
  # Note that this is not setting a tester timeset, so the application will still have to
  # do that before generating any vectors.
  set_period(100)
  cycle(1)
  Origen.listeners_for(:simulation_startup).each(&:simulation_startup)
end

#stopObject

Stop the simulator



505
506
507
508
509
510
511
512
513
514
515
516
517
518
# File 'lib/origen_sim/simulator.rb', line 505

def stop
  Origen.listeners_for(:simulation_shutdown).each(&:simulation_shutdown)
  ended = Time.now
  end_simulation
  # Give the simulator a few seconds to shut down, otherwise kill it
  sleep 1 while running? && (Time.now - ended) < 5
  Process.kill(15, pid) if running?
  sleep 0.1
  # Leave the pid file around if we couldn't verify the simulator
  # has stopped
  FileUtils.rm_f(pid_file) if File.exist?(pid_file) && !running?
  @socket.close if @socket
  File.unlink(socket_id) if File.exist?(socket_id)
end

#syncObject



578
579
580
581
582
583
584
# File 'lib/origen_sim/simulator.rb', line 578

def sync
  put('f')
  @sync_active = true
  yield
  put('g')
  @sync_active = false
end

#sync_active?Boolean

Returns:

  • (Boolean)


586
587
588
# File 'lib/origen_sim/simulator.rb', line 586

def sync_active?
  @sync_active
end

#sync_upObject

Blocks the Origen process until the simulator indicates that it has processed all operations up to this point



400
401
402
403
404
405
406
# File 'lib/origen_sim/simulator.rb', line 400

def sync_up
  put('7^')
  data = get
  unless data.strip == 'OK!'
    fail 'Origen and the simulator are out of sync!'
  end
end

#timeout_connection(wait_in_s) ⇒ Object



564
565
566
567
568
569
570
571
572
573
574
575
576
# File 'lib/origen_sim/simulator.rb', line 564

def timeout_connection(wait_in_s)
  @connection_timed_out = false
  t = Thread.new do
    sleep wait_in_s
    # If the Verilog process has not established a connection yet, then make one to
    # release our process and then exit
    unless @connection_established
      @connection_timed_out = true
      UNIXSocket.new(socket_id).puts(message)
    end
  end
  yield
end

#tmp_dirObject



44
45
46
47
48
49
50
# File 'lib/origen_sim/simulator.rb', line 44

def tmp_dir
  @tmp_dir ||= begin
    d = "#{Origen.root}/tmp/origen_sim/#{id}/#{config[:vendor]}"
    FileUtils.mkdir_p(d)
    d
  end
end

#view_wave_commandObject



157
158
159
160
161
162
163
164
165
166
167
168
169
170
# File 'lib/origen_sim/simulator.rb', line 157

def view_wave_command
  cmd = nil
  case config[:vendor]
  when :cadence
    edir = Pathname.new(wave_config_dir).relative_path_from(Pathname.pwd)
    cmd = "cd #{edir} && "
    cmd += configuration[:simvision] || 'simvision'
    dir = Pathname.new(wave_dir).relative_path_from(edir.expand_path)
    cmd += " #{dir}/#{id}.dsn #{dir}/#{id}.trn"
    f = Pathname.new(wave_config_file).relative_path_from(edir.expand_path)
    cmd += " -input #{f} &"
  end
  cmd
end

#wave_config_dirObject



86
87
88
89
90
91
92
# File 'lib/origen_sim/simulator.rb', line 86

def wave_config_dir
  @wave_config_dir ||= begin
    d = "#{Origen.root}/config/waves/#{id}"
    FileUtils.mkdir_p(d)
    d
  end
end

#wave_config_fileObject



94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/origen_sim/simulator.rb', line 94

def wave_config_file
  @wave_config_file ||= begin
    f = "#{wave_config_dir}/#{User.current.id}.svcf"
    unless File.exist?(f)
      # Take a default wave if one has been set up
      d = "#{wave_config_dir}/default.svcf"
      if File.exist?(d)
        FileUtils.cp(d, f)
      else
        # Otherwise seed it with the latest existing setup by someone else
        d = Dir.glob("#{wave_config_dir}/*.svcf").max { |a, b| File.ctime(a) <=> File.ctime(b) }
        if d
          FileUtils.cp(d, f)
        else
          # We tried our best, start from scratch
          d = "#{Origen.root!}/templates/empty.svcf"
          FileUtils.cp(d, f)
        end
      end
    end
    f
  end
end

#wave_dirObject



70
71
72
73
74
75
76
# File 'lib/origen_sim/simulator.rb', line 70

def wave_dir
  @wave_dir ||= begin
    d = "#{Origen.root}/waves/#{id}"
    FileUtils.mkdir_p(d)
    d
  end
end

#wave_to_str(wave) ⇒ Object



360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
# File 'lib/origen_sim/simulator.rb', line 360

def wave_to_str(wave)
  wave.evaluated_events.map do |time, data|
    time = time * (config[:time_factor] || 1)
    if data == :x
      data = 'X'
    elsif data == :data
      data = wave.drive? ? 'D' : 'C'
    end
    if data == 'C'
      "#{time}_#{data}_#{time + (config[:time_factor] || 1)}_X"
    else
      "#{time}_#{data}"
    end
  end.join('_')
end

#write_comment(comment) ⇒ Object



321
322
323
324
325
326
# File 'lib/origen_sim/simulator.rb', line 321

def write_comment(comment)
  # Not sure what the limiting factor here is, the comment memory in the test bench should
  # be able to handle 1024 / 8 length strings, but any bigger than this hangs the simulation
  comment = comment[0..96]
  put("c^#{comment}")
end