검색 전체 메뉴
PDF
맨 위로
OA 학술지
Design Approach with Higher Levels of Abstraction: Implementing Heterogeneous Multiplication Server Farms
  • 비영리 CC BY-NC
  • 비영리 CC BY-NC
ABSTRACT
Design Approach with Higher Levels of Abstraction: Implementing Heterogeneous Multiplication Server Farms
KEYWORD
Embedded systems , Electronic system level , Multiplication server farm , SystemVerilog
  • I. INTRODUCTION

      >  A. Motivation

    Electronic system level (ESL) design includes hardware and software interactions with higher levels of abstraction for system-level transactions. ESL methodologies have evolved from algorithmic modeling, such as architectural explorations, and proving concepts as supplementary techniques, such as design of embedded systems, system-level test bench development, hardware/software co-simulation, and highlevel synthesis of ASIC/FPGA designs. Efficient ESL design includes the ability to proceed from the concept to the optimal implementation of architectural functionality, as well as verification. As one of the most evolved ESL languages, Bluespec SystemVerilog (BSV) has introduced to the system hardware architects a new way to simplify implementing complicated control logic while at the same time not losing control over the architecture and efficiency of the design. According to [1], a reduction of over 50% in time can be achieved in verifying a design and fewer than 50% of the bugs can be found compared to traditional register transfer level (RTL) design. BSV differs from traditional Verilog or VHDL, or even from SystemVerilog in many aspects. Instead of using the traditional procedural statements, which implement concurrency such as always, BSV uses statements named rules that refer to fully synthesizable behavior. BSV enables better overall system generation than via traditional ways since all instances such as methods, rules, modules, interfaces, and functions are regarded as first-class objects. This means that the objects can be used as arguments in other objects.

      >  B. Related Work

    This work is an extended version of a conference proceeding version [2]. In this version I explain the multiplier architecture, points on extracting a higher level of abstraction, and the reorder buffer more in detail. To build a server farm in the traditional way, a hardware finite state machine must be defined in HDL, which costs time and effort [3]. In the high-level abstraction languages such as BSV however, it is much simpler to define the state machine logic. At this point, I experimentally implemented server farms using BSV with a few existing Verilog IP logics such as multipliers and random number generators, to build the multiplication server farms. I first discuss the custom designed modified Booth multiplier, and then I discuss how to utilize the IPs in the BSV test bench program. Next, after considering how I achieved the higher levels of abstraction, I present the random number generator and the architecture of the server farms, and finally discuss the results.

    II. MODIFIED BOOTH MULTIPLIER WITH FULL-CUSTOM LAYOUT

      >  A. Modified Booth Multiplier

    Fig. 1 presents the custom layout of the modified Booth multiplier. In order to accommodate a fast clock frequency, I used 2-stage pipeline architecture. In the Wallace tree module I used a 4:2 carry save adder (CSA) for a regular layout. The multiplier can perform 2’s complement-represented multiplication in 9.5 ns with LG 0.6 μm 3-metal Nwell CMOS technology. The multiplier is composed of 9115 transistors and occupies 1135 × 1545 μm2 in the die size [4]. The IP was also written in Verilog HDL for reuse in the BSV ESL design.

      >  B. PP-Generation Block

    The partial product (PP) generation block includes the Booth encoder. According to the modified Booth’s algorithm, a variation of multiplicand (A) among [+2A, +1A, 0A, -1A, -2A] must be chosen in reference to the last three digits of the multiplier input (B). +{1,2}/-{1,2} operation is implemented by shift or inversion. To reduce the area, I customized the size of the multiplexors using a weak pull-up pMOS transistor. In Fig. 2, instead of using a complementary MOS transistor system, I used nMOS switches only, in order to reduce the size needed. To prevent the side-effect of using only nMOS, I appended a weak pMOS pull-up transistor between the input and output of the buffer so that the multiplexer output maintains both strong high and low.

      >  C. Wallace Tree

    The 9 pieces of partial products generated are handled by 4:2 CSAs. The reason I chose the 4:2 CSA structure was that 4:2 structure shows good regularity compared to the 3:2 structured types. I also used the sign-generation method to avoid unnecessary calculations incurred by the sign bits in the Wallace tree.

      >  D. Carry Chain Adder

    The carry vector and the sum vector are first stored in buffers, which were designed with a master/slave structure. In the next clock cycle, the register outputs are transferred into the 33-bit adder blocks. I used carry chain adders as the basic adder cell. The final addition results are transmitted through output buffers to the pads.

      >  E. IP Wrapping to SystemVerilog

    Verilog transformed hardware uses wires and registers to define thee input and output signals of a module. The BSV utilizes an object-oriented programming interface­based design to connect between modules. I adopted the BSV concept of a method to define input arguments of a method and return the value of a method to build an appropriate wrapper for thee modified Booth multiplier IP. I used the “import BVI” mechanism to create a wrapper around the RTL module so that the IP looks like a BSV module. Instead of ports, the wrapped module uses methods and interfaces.

    III. HIGHER LEVELS OF ABSTRACTION

      >  A. Strong Type System

    Languages with a higher level of abstraction such as Haskell suggest a strong type system [5]. Every single type in every expression is determined before compile time, which leads to safe code. In such languages, a program in which a Boolean number is divided by ann integer fails to be compiled. This characteristic is recommended because it is better to catch this kind of error during compile time rather than having a dead lock during execution time. BSV complies with the Haskell type system and every keyword belongs to a specific type. Therefore, during compile time, the compiler is able to recognize such errors, by which the system designer can save time.

      >  B. Guarded Command Language

    BSV also adopts the characteristics of guarded commanded language invented by Dijkstra and introduced in [6]. Since this language is rather a theory than a physical language, there is no specific compiler. The theory makes the programming concept succinctly integrated, so that we can easily determine the correctness of the program using Hoare logic [7].

    Guarded command means that commands used inn programs are guarded, as the name implies. The guard is a proposition, and it must be true before executing the commands. If the guard is false, the command is not executed. Guarded command easily helps prove whether a program satisfies a certain specification or not, as shown in Fig. 3.

      >  C. IP Wrapping to BSV

    To extract the highest level of abstraction existing, I transformed the custom designed multiplier into Verilog HDL, which is shown in Fig. 4. Then I created the wrapper module to be used in the Bluespec simulator. With respect to reusing a well-defined IP inn higher-level system design, this is the most favorable benefit of implementation in a high level of abstraction. The inputs and outputs should be defined as methods and interfaces using import “BVI” as shown in Fig. 5.

    IV. IMPLEMENTATION OF SERVER FARMS

      >  A. Multiplication Server Farms

    A server farm or server cluster is a collection of computer servers with an arbiter to accomplish server needs far beyond the capability of one machine. The arbiter allocates incoming jobs to any server that becomes available and sends the result back to its caller. I implemented two multiplication server farms, one for simple paper-and-pencil pipelined multipliers and the other for the modified Booth multiplier, which I described in Section II-A (Fig. 6). In the test bench, the arbitration controller sends the same random jobs to each farm, and checks to see if the corresponding results returned from each multiplication farm are correct. For both servers, the time required to complete each job depends on the value of thee multiplicand and the multiplier, so it remains uncertain whether results will be available in the order the jobs were started. However, the arbiter should return the results to its caller in the order the jobs were received. Therefore, a reorder buffer that fits this specification is required.

      >  B. Reorder Buffers

    Reorder buffers should be considered for out-of-order job executions. Inn BSV, the reorder buffer is implemented in the library package as a reusable parameterized IP. The concept with multiple update ports is shown in Fig. 7 [8]. The IP named completion buffer provides the function of reorder buffers. The interface of the IP offers three methods. The reserve method allows thee caller to reserve a slot inn the buffer, returning a token holding the identity of the slot.

    When a job finishes, the complete method allows the result to be stored in the reorder buffer. The drain method returns results in the order where the tokens were assigned from the first. In this way, the results of swiftly completed jobs can wait in the buffer until a time-consuming job ahead of them finishes.

      >  C. Random Number Generator

    The public Advanced Encryption Standard (AES) crypto-graphic algorithm to achieve a National Institute of Standards and Technology-recommended secure random number generator [9] was reused and described with Verilog HDL. Thanks to Drimer et al. [10], I was able to utilize the fastest AES Verilog HDL module to make the random number generator. As shown in Fig. 8, complex and repetitive permutations enable the ciphering algorithm applicable to random number generation.

    According to the cipher theory, encrypted data with enough high security density behave as random numbers because after the repetitive permutation, data retain the characteristics of whitening. I then devised a wrapper for the AES Verilog IP to fit in the BSV test bench program. The test bench program instantiates 2 multiplication server farms and dispatches the same jobs to each farm. I utilized the technique to use the fully filled first-in-first-outs to evenly distribute the data elements one at a time. The test result is shown in Fig. 9. As you can see, the multiplication server farm accomplishes consecutive jobs in the order the data were received.

    V. CONCLUSIONS

    ESL methodologies have evolved from algorithmic modeling such as architectural explorations and proving concepts as supplementary techniques such as design of embedded systems, system level test bench development, hardware/software co-simulation, and high-level synthesis of ASIC/FPGA designs. To rapidly prototype the multiplication server farms, simple pipelined multipliers and modified Booth multipliers are implemented together with input buffers and reorder buffers, each for out-of-order completion. An AES cryptographic function module is reused to produce random number test vectors. By means of the BSV, I was able to utilize a higher system level of abstraction than the traditional HDLs to attain multiplication server farms with two farms. If I parameterize the number of farms and the number of multipliers, I could obtain additional server farms with ease, while it would have taken several times more time and effort to build the same implementation using Verilog or VHDL.

참고문헌
  • 1. Bluespec System Verilog Reference Guide, Revision 2012 [Internet] google
  • 2. Moon S. 2012 “System Verilog-based approach of a design of multiplication server farms” [in Proceedings of the 4th International Conference on Ubiquitous and Future Networks] P.478-479 google
  • 3. Moon S. 2011 “Design of an FPGA-based IP using SPARTAN-3E embedded system” [Journal of Maritime Information and Communication Sciences] Vol.9 P.428-430 google
  • 4. Moon S., Moon B., Lee Y. 2001 “Design of a full-custom 17b*17b multiplier and its efficient test methodology” [Journal of Korea Information and Communication Society] Vol.26 P.362-368 google
  • 5. Lipovaca M. 2011 Learn You A Haskell for Great Good: A Beginner’s Guide. google
  • 6. Guarded command language [Internet] google
  • 7. Hoare logic [Internet] google
  • 8. Dave N. 2004 “Designing a reorder buffer in Bluespec” [in Proceedings of the 2nd ACM and IEEE International Conference on Formal Methods and Models for Co-Design] P.93-102 google
  • 9. Keller S. S. NIST-recommended random number generator based on ANSI X9.31 appendix A.2.4 using the 3-key triple DES and AES algorithms [Internet] google
  • 10. Drimer S., Guneysu T., Parr C. 2010 “DSPs, BRAMs, and a pinch of logic: extended recipes for AES on FPGAs” [ACM Transactions on Reconfigurable Technology and Systems] Vol.3 google cross ref
이미지 / 테이블
  • [ Fig. 1. ]  Custom layout of modified Booth multiplier.
    Custom layout of modified Booth multiplier.
  • [ Fig. 2. ]  Size-reduced structure of n-to-1 multiplexer. VDD: virtual device driver, PMOS: p-channel metal oxide semiconductor.
    Size-reduced structure of n-to-1 multiplexer. VDD: virtual device driver, PMOS: p-channel metal oxide semiconductor.
  • [ Fig. 3. ]  Some examples of guarded command language.
    Some examples of guarded command language.
  • [ Fig. 4. ]  Verilog-description of the modified Booth multiplier
    Verilog-description of the modified Booth multiplier
  • [ Fig. 5. ]  Implemented wrapper of interfaces, modules, and methods with Bluespec.
    Implemented wrapper of interfaces, modules, and methods with Bluespec.
  • [ Fig. 6. ]  Top level block diagram of thee multiplication server farm and the test bench.
    Top level block diagram of thee multiplication server farm and the test bench.
  • [ Fig. 7. ]  Buffer reordering concept with multiple update ports. ALU: arithmetic­logic unit, MEM: memory.
    Buffer reordering concept with multiple update ports. ALU: arithmetic­logic unit, MEM: memory.
  • [ Fig. 8. ]  Advanced Encryption Standard ciphering core block diagram.
    Advanced Encryption Standard ciphering core block diagram.
  • [ Fig. 9. ]  Multiplication server farm test results.
    Multiplication server farm test results.
(우)06579 서울시 서초구 반포대로 201(반포동)
Tel. 02-537-6389 | Fax. 02-590-0571 | 문의 : oak2014@korea.kr
Copyright(c) National Library of Korea. All rights reserved.