HOME       UP       PREV       FURTHER NOTES       NEXT (Typical macroscopic performance equations: SRAM example.)  

RTL Power Estimation by Static Analysis (ie Without Simulation)

Post RTL synthesis we have a netlist and can use approximate models (based on Rent's rule) for wire lengths provided sufficient hierarchy exists (perhaps five or more levels). We can either use the natural hierarchy of the RTL input design or we can apply a clustering/clique finding algorithms to determine a rough placement floorplan without doing a full place and route.

Pre RTL synthesis we can readily collect the following certainties (and hence the static power (ignoring drive strength selection and power gating))

Random logic complexity can be modelled in gate-equivalent units. These might count a ripple-carry adder stage as 4 gates, a multiplexor as 3 gates per bit and a D-type flip-flop as 6 gates.

    module CTR16( 
      input mainclk, 
      input din, input cen,
      output o); 
 
      reg [3:0] count, oldcount; // D-types
 
      always @(posedge mainclk) begin
          if (cen) count <= count + 1;    // ALU
          if (din) oldcount <= count; // Wiring
          end

     assign o = count[3] ^ count[1]; // Combinational

   endmodule

But the following dynamic quantities require heuristic estimates:

DRAM power generally comes from a different budget (off chip) and can only really be estimated by dynamic modelling on a real or virtual platform. But note that for small embedded devices, the DRAM static power in its PCB track drivers can dominate DRAM dynamic power.


39: (C) 2008-18, DJ Greaves, University of Cambridge, Computer Laboratory.