chiffre a confjgurable hardware fault injection framework
play

Chiffre : A Confjgurable Hardware Fault Injection Framework for - PowerPoint PPT Presentation

IBM T. J. Watson Research Center Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems Schuyler Eldridge Alper Buyuktosunoglu Pradip Bose 2 nd Workshop on Computer Architecture Research with RISC-V Motivation: Selective


  1. IBM T. J. Watson Research Center Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems Schuyler Eldridge Alper Buyuktosunoglu Pradip Bose 2 nd Workshop on Computer Architecture Research with RISC-V

  2. Motivation: Selective Latch Hardening [1] CARRV ’18 2/15 techniques to tolerate soft errors in processor cores. In Design Automation Conference (DAC) , 2016. E. Cheng, S. Mirkhani, L. G. Szafaryn, C.-Y. Cher, H. Cho, K. Skadron, M. R. Stan, K. Lilja, J. A. Abraham, P. Bose, et al. Clear: Cross-layer exploration for architecting resilience: Combining hardware and software [2] M. Maniatakos, N. Karimi, C. Tirumurti, A. Jas, and Y. Makris. Instruction-level impact analysis of low-level faults in a modern microprocessor controller. IEEE Trans. Computers , 60(9):1260–1273, 2011. injection experiments at speed. Given a hardware design, which latches require hardening? However, there is no existing automated, open-source workflow for enabling The CLEAR methodology [2] A manually instrumented Illinois Verilog Model [1] directly into a hardware description work well: Some of them? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Diffjcult to fjnd! All of them? . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Power/Area expensive! Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems A closed-form solution is impractical, however, empirical approaches that inject

  3. Manual or Automated Verilog Instrumentation is Doable… .scan_en(scan_en), .scan_clk(scan_clk), CARRV ’18 3/15 endmodule end y <= not_x; always @( posedge clk) begin assign not_x = ~x_faulty; // Right hand side replacement .scan_in(scan_in), .scan_out(scan_out) ); MyInjector injector( .clock(clock), .in(x), .out(x_faulty), wire x_faulty; wire not_x; reg x, y; ); module MyModule( input clk, Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems _ _ , input scan_en, input scan_clk , input scan_in, output scan_out

  4. … Except for All the Corner Cases! genvar i; generate `ifdef MYDEFINE task , function disable Name collisions The diffjculty lies in the complexity of the language In software, we’d just use a compiler… 4/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  5. LLVM – A Modern Compiler 1 Frontend converts a high level language to an Intermediate Representation 2 The LLVM compiler optimizes the program 3 A backend emits a binary Figure: LLVM Compiler Flow 5/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems Software Libraries x86 GPU foo.x86 foo.gpu

  6. FIRRTL – A Modern Circuit Compiler (Emitting Verilog) UCB/EECS-2016-9, EECS Department, University of California, Berkeley, Feb 2016. CARRV ’18 6/15 Figure: LLVM Compiler Flow 1 Frontend converts a high level Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems P. S. Li, A. M. Izraelevitz, and J. Bachrach. Specifjcation for the fjrrtl language. Technical Report [1] 3 A backend emits Verilog circuit 2 The FIRRTL compiler optimizes the language to the FIRRTL IR[1] Software Libraries Inline Compile Annotations Verilog foo.v

  7. Chiffre– Automated Fault Injection Instrumentation 1 Chisel [1] frontend emits fault annotations 2 FIRRTL transforms add fault injectors, scan chain 3 The existing backend emits Verilog [1] J. Bachrach, H. Vo, B. Richards, Y. Lee, A. Waterman, R. Aviz ̆ ienis, J. Wawrzynek, and K. Asanović. Chisel: Constructing hardware in a scala embedded language. In 49th ACM/EDAC/IEEE Design Automation Conference (DAC), 2012 . Figure: Chiffre Flow 7/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  8. Chiffre Framework Overview 1 Chiffre Chisel CARRV ’18 8/15 Utility 3 Chiffre Scan Chain Transforms 2 Chiffre FIRRTL library Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems - How is my design affected by low voltage operation? What circuit components - What in my design is amenable to approximate computing? should I inject in? Chiffre Chiffre Chiffre Chiffre Chisel scanChain.bin Annotations FIRRTL Scan Chain Library Transforms Utility scanChain.json FIRRTL design.scala Chisel Compiler Compiler FPGA design.v

  9. Chiffre Chisel Library val x = Reg ( UInt (1.W)) CARRV ’18 9/15 } isFaulty(z, ”main”, classOf[ inject.CycleInjector32 ]) isFaulty(y, ”main”, classOf[ inject.StuckAt ]) isFaulty(x, ”main”, classOf[ inject.LfsrInjector32 ]) val z = Reg ( UInt (8.W)) val y = Reg ( UInt (4.W)) val io = IO ( new Bundle {}) import chisel3._ class MyModule extends Module with ChiffreInjectee { /* A module with faulty components */ } /* MyController body with scan chain logic not shown */ lazy val scanId = ”main” val io = IO ( new Bundle {}) class MyController extends Module with ChiffreController { /* A controller for injectors on the ”main” scan chain */ import chiffre._ Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  10. Chiffre FIRRTL Transforms (a) Chiffre Flow (b) Chiffre Instrumentation More details in the paper… 10/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  11. Chiffre Scan Chain Utility Given a scan chain description, set all confjgurable fjelds More details in the paper… 11/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  12. Fault Injection Experiments Enabled by Chiffre (c) Self injection CARRV ’18 12/15 We provide an example RoCC injector, LeChiffre , in the Chiffre Chisel Library (b) External injection (a) Internal injection Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems Fault LeChiffre LeChiffre Rocket Rocket Rocket Controller RoCC RoCC Chip Chip Chip

  13. Example of Self Injection: Rocket “Jailbreak” j done CARRV ’18 13/15 More information in our open-source test : faulty-cycle.S ret done: li a0, 1 fail: li a0, 0 Use LeChiffre to self-inject into the cycle CSR pass: goto fail bgt a0, a1, pass rdcycle a1 rdcycle a0 test: ;;; (This violates the RISC-V specification!) ;;; Test that passes if the cycle counter decreases Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  14. Future Work SRAM injection Improved scan chain (or network), like Strober [1], MIDAS [2], FireSim [3] Fault injection experiment automation Recording/quantifying injection effects [1] D. Kim, A. Izraelevitz, C. Celio, H. Kim, B. Zimmer, Y. Lee, J. Bachrach, and K. Asanović. Strober: fast and accurate sample-based energy simulation for arbitrary rtl. In Proceedings of the 43rd International Symposium on Computer Architecture (ISCA) , 2016. [2] D. Kim, C. Celio, D. Biancolin, J. Bachrach, and A. Krste. Evaluation of risc-v rtl with fpga-accelerated simulation. In 1st Workshop on Computer Architecture Research with RISC-V (CARRV) , 2017. [3] S. Karandikar, H. Mao, D. Kim, D. Biancolin, A. Amid, D. Lee, N. Pemberton, E. Amaro, C. Schmidt, A. Chopra, Q. Huang, K. Kovacs, B. Nikolic, R. Katz, J. Bachrach, and K. Asanović. Firesim: Fpga-accelerated cycle-exact scale-out system simulation in the public cloud. In Proceedings of the 45th International Symposium on Computer Architecture (ISCA) , 2018. 14/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

  15. Open-source Availability Chiffre is open-source (alpha) software/hardware! Apache v2 License https://github.com/IBM/chiffre Acknowledgments This research was developed with funding from the Defense Advanced Research Projects Agency (DARPA). The views, opinions and/or fjndings expressed are those of the authors and should not be interpreted as representing the offjcial views or policies of the Department of Defense or the U.S. Government. This document is Approved for Public Release, Distribution Unlimited. 15/15 CARRV ’18 Chiffre : A Confjgurable Hardware Fault Injection Framework for RISC-V Systems

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend