1 / 22

Dataflow Verilog

Dataflow Verilog. Motivation. Structural design can be cumbersome Lots of typing 32-bit busses & logic Structural designs are static At least in Verilog (not so for VHDL) Little or no parameterization possible. A Dataflow MUX – Version 1. module mux21(q, sel, a, b); input sel, a, b;

ianthe
Télécharger la présentation

Dataflow Verilog

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. Dataflow Verilog ECEn 224

  2. Motivation • Structural design can be cumbersome • Lots of typing • 32-bit busses & logic • Structural designs are static • At least in Verilog (not so for VHDL) • Little or no parameterization possible ECEn 224

  3. A Dataflow MUX – Version 1 module mux21(q, sel, a, b); input sel, a, b; output q; assign q = (~sel & a) | (sel & b); endmodule Much simpler, less typing, familiar C-like syntax. Synthesizer turns it into optimized gate-level design. ECEn 224

  4. A Dataflow MUX – Version 2 module mux21(q, sel, a, b); input sel, a, b; output q; assign q = sel ? b : a; endmodule Even simpler, uses C-like ternary ( ?: ) construct ECEn 224

  5. Dataflow Operators ECEn 224

  6. Bitwise vs. Logic Operators • Similar to C assign q = ((a<4’b1101) && ((c&4’b0011)!=0)) ? 1’b0:1’b1; “1101” Pseudo-code (not real Verilog): if (a<4’b1101 && (c&4’b0011) != 0) then q <= ‘0’; else q <= ‘1’; 4 4 < a 1 q 4 c 4 1 “0011” 4 Use &&, ||, ! for 1-bit quantities (results of comparisions) Use &, |, ~ for bit-by-bit logical operations ECEn 224

  7. Reduction Operators wire[3:0] x; wire z; assign z = &x; // Same as z = x[3] & x[2] & x[1] & x[0] ECEn 224

  8. Concatenation and Replication Operators wire[3:0] x, y; wire[7:0] z, q, w, t;wire[31:0] m, n; assign x = 4’b1100; assign y = 4’b0101; assign z = {x, x}; // z is 8’b11001100 assign q = {x, y}; // q is 8’b11000101 assign w = {4’b1101, y}; // w is 8’b11010101 assign t = {2{x}}; // same as {x, x} assign m = {{4{x}}, {2{q}}}; // m is 32’b11001100110011001100010111000101 ECEn 224

  9. Operator Precedence • Similar to C ECEn 224

  10. A Note on Matching Widths • This a valid 2:1 MUX statement: • But the following is not:Why? wire a, b, sel, q;assign q = (~sel & a) | (sel & b); wire[3:0] a, b, q;wire sel;assign q = (~sel & a) | (sel & b); ECEn 224

  11. More On Matching Wire Widths • This is an acceptable substitute: • It turns the sel and ~sel values into 4-bit versions for AND-ing and OR-ing • A more elegant version: wire[3:0] a, b, q;wire sel;assign q = ({4{~sel}}&a)|({4{sel}}&b); wire[3:0] a, b, q;wire sel;assign q = sel ? b: a; ECEn 224

  12. Design Example: A 2:4 Decoder module decode24(q, a); output[3:0] q; input[1:0] a; assign q = (4’b0001) << a;endmodule Can you see how to make a 3:8 or 4:16 decoder in the same fashion? ECEn 224

  13. Multi-bit DesignandParameterization ECEn 224

  14. A Dataflow MUX – Multi-Bit module mux21(q, sel, a, b); input sel; input[15:0] a, b; output[15:0] q; assign q = sel ? b : a; endmodule 16 0 1 a 16 q 16 b s Key Ideas: The predicate must evaluate to true or false (1 or 0) The parts getting assigned must be all same widths. ECEn 224

  15. A Dataflow MUX – Parameterized Width module mux21n(q, sel, a, b); parameter WID = 16; input sel; input[WID-1:0] a, b; output[WID-1:0] q; assign q = sel ? b : a; endmodule • By default, this is now a 16-bit wide MUX. • When instantiating, the default value of 16 can be overridden: mux21n M1(q, sel, a, b); // Instance a 16-bit version mux21n #(4) M0(q, sel, a, b); // Instance a 4-bit version Does this work for a 1-bit MUX? ECEn 224

  16. Using Parameterization • Careful planning often allows you to write one design which can be reused • Reuse is a common goal in design • Simplifies your work • Eliminates errors • Saves time later • Whenever possible, plan for reuse ECEn 224

  17. Parameterization Exercise • Design a 4:1 MUX that works with any size operands (arbitrary bit-width) • Either: • Build arbitrary bit-width 2:1 MUX • Structurally instance 3 of these to make a 4:1 MUX or • Write an arbitrary bit-width 4:1 MUX using the ?: operator ECEn 224

  18. 4:1 MUX – Method 1 module mux41n(q, sel, a, b, c, d); parameter WID=16; input[1:0] sel; input[WID-1:0] a, b, c, d; output[WID-1:0] q; wire[WID-1:0] tmp1, tmp2; mux21n #(WID) M0(tmp1, sel[0], a, b); mux21n #(WID) M1(tmp2, sel[0], c, d); mux21n #(WID) M2(q, sel[1], tmp1, tmp2); endmodule If the mux21n cells are parameterizable for bit-width this works… If not, it doesn’t work… ECEn 224

  19. 4:1 MUX – Method 2 module mux41(q, sel, a, b, c, d); parameter WID=16; input[1:0] sel; input[WID-1:0] a, b, c, d; output[WID-1:0] q; assign q = (sel==2'b00) ? a: (sel==1) ? b: (sel==2’b10) ? c: d; endmodule Cascaded ?: operators form an if-then-else structure Note how sel can be compared to bit patterns (2’b00) or to numbers (1) ECEn 224

  20. Behavioral Verilog ECEn 224

  21. Used for Sequential Circuits andCombinational Circuits module dff(clk, d, q); input clk, d; output reg q; always @(posedge clk) q <= d; endmodule You can use this as a DFF for your design. Figure out how to parameterize it for arbitrary input/output widths Remainder of behavioral design not covered in this class… ECEn 224

  22. Conclusion • With what you know… • You can do reasonable designs • Must structurally instance all storage elements (flip flops) • Behavioral Design • A number of nuances with respect to timing semantics • Not recommended beyond simple FF’s for this class • You will learn full range of behavioral design in later courses ECEn 224

More Related