Friday, April 25, 2008

Lock-Unlock Hard Disk

Index
  1. About Locking-Unlocking Capability of Hard Disk
  2. Unbreakable Security
  3. Detail of Security Feature of ATA
  4. ATA Utility: About The Utility
  5. ATA Utility: Requirement to Run The Utility
  6. ATA Utility: How to Use This Utility - 1
  7. ATA Utility: How to Use This Utility - 2
  8. ATA Utility: Download ATA Utility

1 comment:

  1. Hi,

    How to generalize below indicated "coverpoint" code for any number of chain (32, 64 and 128 etc). Cover point should have a bin for each selected chain. Please note that RHS is using one-hot coding.

    Thanks in advance,
    Pradeep

    dut_chainsel_cov: coverpoint TxnPacket.chain_selected iff (Opcode == 'h13) {

    bins none_of_the_chain_selected = {'h0};
    bins chain_0_selected = {8'h1};
    bins chain_1_selected = {8'h2};
    bins chain_2_selected = {8'h4};
    bins chain_3_selected = {8'h8};
    bins chain_4_selected = {8'h10};
    bins chain_5_selected = {8'h20};
    bins chain_6_selected = {8'h40};
    bins chain_7_selected = {8'h80};

    }

    ReplyDelete