Skip to main content

Generates verilogA testbench for verification of analog IPs (VLSI design)

Project description

vagen

What is vagen?

vagen was created mainly to generate verilogA stimulus for verification of complex analog IPs. However, it has wrappers for most of the verilogA reserved words, so it also generates verilogA models.

Instalation

You can install vagen by typing the command:

    pip3 install vagen

Example 1: Stimulus for verification of a DCDC

Let's assume that a stimulus with the following sequence is required:

  • VDD must rise from 0 to 5.0V in 10us.
  • After 10us, the clock signal (CLK) must start with a frequency of 4MHz. CLK domain is VDD.
  • After 1us, RST must rise. RST domain is VDD.
  • Wait for the positive edge of the signal READY when it crosses half of the domain voltage. READY domain is VDD.
  • A current of 100mA must be drawn from the in OUT with a rise time of 100ns.
  • After 10us, the bus CONFIG_VOUT[3:0] must be changed from 0 to 5. CONFIG_VOUT[3:0] domain is VDD.
  • After 20us, finishes the simulation.

The python code that generates this stimulus is shown below:

import vagen as va

#Create a module     
mod = va.HiLevelMod("DCDC_STML")

#Create pins
VDD = mod.vdc(name = "VDD", width = 1, direction = "inout")
OUT = mod.idc(name = "OUT", width = 1, direction = "inout")
CLK = mod.clock(mod.dig(name = "CLK", domain = VDD, width = 1, direction = "output", rise = 100e-15, fall = 100e-15))
RST = mod.dig(name = "RST", domain = VDD, width = 1, value = 0, direction = "output", rise = 100e-15, fall = 100e-15)
READY = mod.dig(name = "READY", domain = VDD, width = 1, direction = "input")
CONFIG_VOUT = mod.dig(name = "CONFIG_VOUT", domain = VDD, width = 4, value = 0, direction = "output", rise = 100e-15, fall = 100e-15)

#READY positive event
EVNT_READY = va.Cross(READY.diffHalfDomain, "rising")

#Sequence
mod.seq(True)(
    VDD.setRiseFall(10e-6, 10e-6),
    VDD.applyV(5.0),
    va.WaitUs(10), 
    CLK.on(4e6),
    va.WaitUs(1),
    RST.write(True),
    va.WaitSignal(EVNT_READY),
    OUT.setRiseFall(100e-9, 100e-9),
    OUT.applyI(100e-3), #Positive current enters the model
    va.WaitUs(10),
    CONFIG_VOUT.write(5),
    va.WaitUs(20),
    va.Finish()
)

#Save veriloga file
file = open('veriloga.va', 'w')
file.write(mod.getVA())
file.close()

Example 2: More than one sequence in the same veriloga

You can create a veriloga parameter called testSeq

seqPar = mod.par(name = "testSeq", value = 0)

And then use this parameter to select the sequence depending on the value

#sequence 1 
mod.seq(seqPar == 1)(
...
)

#sequence 2
mod.seq(seqPar == 2)(
...
)

Example 3: Model of a configurable resistor

As mentioned before, vagen can be used to generate models. As an example, the code below generates a veriloga model of a configurable resistor.

import vagen as va

#Create a module
mod = va.HiLevelMod("CONFIG_RES")

#Create pins
VDD = mod.electrical(name = "VDD", width = 1, direction = "inout")
IN1 = mod.electrical(name = "IN1", width = 1, direction = "inout")
IN2 = mod.electrical(name = "IN2", width = 1, direction = "inout")
CONFIG = mod.dig(name = "CONFIG", domain = VDD, width = 4, value = 0, inCap = 100e-15, direction = "input")

#Parameters
alfa = mod.par(name = "alfa", value = 10.0)

#Analog block
mod.analog(
    va.Branch(IN1, IN2).vCont(va.Branch(IN1, IN2).i*(va.Real(CONFIG.read(signed = False)) + 1)*alfa)
)

#Save veriloga file
file = open('veriloga.va', 'w')
file.write(mod.getVA())
file.close()

More examples

Extra examples will be added to examples folder

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vagen-0.0.1.tar.gz (38.1 kB view details)

Uploaded Source

Built Distribution

vagen-0.0.1-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file vagen-0.0.1.tar.gz.

File metadata

  • Download URL: vagen-0.0.1.tar.gz
  • Upload date:
  • Size: 38.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.2

File hashes

Hashes for vagen-0.0.1.tar.gz
Algorithm Hash digest
SHA256 6e8b7b588207a3bcd2b9b5622db49f0fc28d6962d11c858ac70111e27967d868
MD5 f314e54558ebb4a316096b80896eeb14
BLAKE2b-256 2b75d0fcc8146cd81eea79e3ab827aa8926d439e424088e9e285cf8d40b9c389

See more details on using hashes here.

File details

Details for the file vagen-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: vagen-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.2

File hashes

Hashes for vagen-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5b7e5a53de89e16fca8d04f043f669136ce3d002d955a4f643097b154a571c60
MD5 438606a6ea1970706fedfbab32df976a
BLAKE2b-256 2b879d46c458625752af93cf9c385f26c301b424f4d446b95457ffc21a5a49cf

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page