1 / 7

ECE 368 Simple VHDL Synthesis Examples

ECE 368 Simple VHDL Synthesis Examples. Shantanu Dutt ECE Dept. Univ. of Illinois at Chicago. Block_n. Block_2. Block_3. I 0. I 0. I 0. I 0. I 1. I 1. I 1. I 1. +. +. +. Daisy-chain structure. I/Ps. I/Ps. Datapath when cond1=false and cond2=true. I/Ps. I/Ps.

ebirney
Download Presentation

ECE 368 Simple VHDL Synthesis Examples

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ECE 368Simple VHDL Synthesis Examples Shantanu Dutt ECE Dept. Univ. of Illinois at Chicago

  2. Block_n Block_2 Block_3 I0 I0 I0 I0 I1 I1 I1 I1 + + + Daisy-chain structure I/Ps I/Ps Datapath when cond1=false and cond2=true I/Ps I/Ps If-then-else synthesis if cond1 then Block_1 elsif cond2 then Block_2 elsif cond3 then Block3 ……. else Block_n Combinational Synthesis – Expensive, High Power but Fast Current o/ps Mux Mux Mux Mux Mux Block_1 I/Ps I/Ps Final o/p of if-then-else sequence cond1 cond2 cond3 I/Ps • A lower power variation also possible where I/Ps to blocks come via transparent latches that are enabled by the same bits that are selects for the corresponding muxes • This avoids signal transitions (that cause dynamic power consumption) in blocks that do not need to be executed. Also, power gating can be used where the Vdd to only that block is enabled for which the mux is enabled; Vdd to all other blocks is “turned off”.

  3. Register File 1 Register File 2 Register File k ALU k ALU 1 ALU 2 If-then-else synthesis (contd) if cond1 then Block_1 elsif cond2 then Block_2 elsif cond3 then Block3 ……. else Block_n Datapath Sequential Synthesis – Slow, but Inexpensive (reuse of FUs) and Low Power ~ cond1 & ……… & ~ cond_n-1 & cond_n Decode • Range of options: • k=1 is slowest:most “sharing” of resources/FUs  thus least parallelism but least expensive • k = max # of parallel operations in any of the n blocks is fastest but most expensive, but less than fully combinational approach as there is FU sharing between blockd • E.g., will need at most 2 adders if there are at most 2 parallel additions in any block, and will need at least 1 adder (this will sequentialize any 2 parallel additions in a block) • With any level of FU sharing need an FSM controller to orchestrate sharing and timing of different operations and register loads. ~ cond1 & cond2 cond1 Block1 exec. Block 2 exec. Block n exec. State for seq. statement foll. If-then-else Sequence of states for executing the different blocks by controlling the datapath via control signals

  4. Block_n Block_2 Block_1 I/Ps I/Ps I/Ps Mutually exclusive (by defn. of “case” st.) Case statement synthesis case expression is when choice1 => Block_1 when choice2 => Block_2 ……. when others => Block_n end case; Combinational Synthesis – Expensive, High Power but Fast Datapath when choice 2 is activated • Faster than if-then-else synthesis if the larger Case mux uses 2-level logic or the large Mux is designed using D&C using 2:1 Muxes. In the latter case, we get a (log n)-delay synthesis versus n-delay in the case of if-then-else, where n = # of choices in a case statement or n = (# of conditions/blocks incl. final “else”, if any) in an if-then-else statement • Can also do a low power version where only the selected block will process I/Ps via transparent latches enabled by the choice-logic o/ps (only one set of set of latches will be enabled corresponding to the block to be selected) and/or will have its Vdd enabled. • Can also do a less expensive (and low power) version which is partially sequential and controlled by an FSM as in the if-then-else statement Mux Final o/p of case statement select signal Encoder (n: log n) others choice1 choice2 I/Ps (expression value)

  5. x != 1 x=1 Next action Wait Statement Synthesis Issues wait until (X=‘1’); Next action; Note: Syn. Design Compiler/Vision does not synthesize this wait statement possible synthesis Qx != 1 Qx Dx 1 poss. synth. wait until (X’event and X=‘1’); Next action; Qx=1 X ResetX ResetX =1 Next action

  6. Cntr=n cntr_en=1 [Cntr <- n] Cntr != 0 Cntdn=1 cntr_en=1 [Cntr <- Cntr-1] Cntr=0 Next action Wait Statement Synthesis Issues wait for some_time; Cannot be synthesized. In order to describe a similar “wait-for-time effect” that can be synthesized, you need to describe it as an FSM state that self-loops until a counter (set or reset at an earlier state) reaches a count vaue that translates to the desired wait time needed (this will be based on the clock speed). no synth = wait for n+2 cc’s;

  7. ld_r2 = 1 [R2 <- R2+R1] Control Loops • for loops, while loops, etc. can be synthesized as “looping FSMs” controlling a datapath • Example: • R2 := 0; R1 := X; AC = 1; • While (AC < 100000) loop • R2 := R2 + R1; • AC := AC*R2; • End loop; • Synthesizing a for loop w/ n iterations: Initialize counter & then check its value after counting up every “iteration” of the FSM’s loop (or count down from an initial value of n and check for 0) Datapath for statements In while loop: FSM for while loop; assumes 1 cc for each FU operation: R1 Initialize State (AC, R1, R2, etc.) ld_r1 + Test State LT = 0 R2 ld_r2 LT = 1 * 105 AC ld_ac [AC <- AC*R2] ld_ac = 1 Comparator LT State after while loop LT = 1  AC < 105 LT = 0  AC > 105

More Related