Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Nandy

  1. N

    signals crossing from one voltage domain to another voltage domain

    V1OFF to LevelShifter(V1ON) violates the power rule. Any signal from power off domain should drive isolation cell first.
  2. N

    signals crossing from one voltage domain to another voltage domain

    Level shifter and Isolation should never be powered off. For V1, there should be two domains, V1ON, and V1OFF, and the same for V2. So it is something like V1OFF->Isolation(V1ON)->LevelShifter(V1ON/V2ON)->V2OFF Nandy NanDigits Design Automation
  3. N

    [AHB] What signal of AHB-Lite might be connected to FIFO's EMPTY output?

    You can create another AHB address for empty signal polling. So FIFO data write uses one AHB address(Or maybe a serial of addresses), polling EMPTY signal uses another AHB address.
  4. N

    signals crossing from one voltage domain to another voltage domain

    V1-> Level Shifter -> Isolation->V2 would violate power rule. When V1 is off, Level Shifter has cell driven by power down block directly. If V2 can be powered off as well, then V2->Isolation->Level Shifter->V1
  5. N

    signals crossing from one voltage domain to another voltage domain

    It should be V1->Isolation->LevelShifter->V2. Normal practice is to combine Isolation and LevelShifter called enable-level-shifter.
  6. N

    flipflops without reset

    Comparing with reset flipflops, non-reset flipflops are smaller and less power consuming. Normally, datapath uses non-reset flops. State machines flops use reset flops. One good thing to use all reset flops in a design is you have less trouble to trace 'x' propagation issue in gate level simulation.
  7. N

    What would you do to solve non-equivalence in timing ECO?

    Thanks for pointing out. Actually for timing ECO case, it's enough to compare D pins. In full function comparing mode, two flop instances should be selected and compared. Check the image for flop to flop equivalence check.
  8. N

    What would you do to solve non-equivalence in timing ECO?

    This is a real case. A timing ECO iteration added an extra inverter somewhere in the design. Hundreds of inverters/buffers have been added, it's impossible to check one by one to see which inverter is the extra one. Debugging with Formal tools shows lots of support points causing the mismatches...
  9. N

    Cadence Conformal ECO flow - library domains issue

    Hi ivb1991, Gates On the Fly can handle your case. The patches keep the library cells from revised netlist (reference netlist in GOF) You can use this script example # eco.pl read_library("art.90nm.lib"); read_design("-ref", "reference.gv"); # Resynthesized netlist read_design("-imp"...
  10. N

    Functional eco automation - is there any new tools for it?

    Thanks RCircuit! It's helpful. Technology is always our first focus.
  11. N

    Functional eco automation - is there any new tools for it?

    The simplest script would be: read_library("art.90nm.lib"); read_design("-ref", "reference.gv"); read_design("-imp", "implementation.gv"); fix_modules("mod1", "mod2"); # all modules that have been modified set_top("topmod"); write_verilog("eco_verilog.v"); Please check this link for...
  12. N

    Functional eco automation - is there any new tools for it?

    RCircuit, please send email to support@nandigits.com for license, pasting your MAC address.
  13. N

    Functional eco automation - is there any new tools for it?

    Gates On the Fly from NanDigits has a new release to do automatic functional ECO. You only need input netlist under ECO and reference netlist, and tell the tool which modules have been changed. The tool will figure out the minimum gate patch to fix the netlist under ECO. It's fast and efficient.
  14. N

    Digital circuit... Post layout power estimation

    You may have 'x' propagation in gate level simulation. You can use a initialization code to suppress 'x' generation. Check this out. https://www.nandigits.com/use_case_remove_x_in_gate_simulation.htm
  15. N

    rc command to report D pins of DFF

    Netlist ECO tool Gates On the Fly can do the job easily. You can use perl compatible script like following to add an AND gate to each D pin of each flop. my @ffs = get_cells("-type", "ff", "-hier"); # Get all flops foreach my $ff (@ffs){ my @dpins = get_pins("-input", "-data", $ff)...

Part and Inventory Search

Back
Top