OpenCores
URL https://opencores.org/ocsvn/sdhc-sc-core/sdhc-sc-core/trunk

Subversion Repositories sdhc-sc-core

[/] [sdhc-sc-core/] [trunk/] [grpSdVerification/] [unitSdCardModel/] [src/] [SdCommand.sv] - Diff between revs 184 and 185

Show entire file | Details | Blame | View Log

Rev 184 Rev 185
?rev1line?
?rev2line?
 
// SDHC-SC-Core
 
// Secure Digital High Capacity Self Configuring Core
 
//
 
// (C) Copyright 2010, Rainer Kastl
 
// All rights reserved.
 
//
 
// Redistribution and use in source and binary forms, with or without
 
// modification, are permitted provided that the following conditions are met:
 
//     * Redistributions of source code must retain the above copyright
 
//       notice, this list of conditions and the following disclaimer.
 
//     * Redistributions in binary form must reproduce the above copyright
 
//       notice, this list of conditions and the following disclaimer in the
 
//       documentation and/or other materials provided with the distribution.
 
//     * Neither the name of the  nor the
 
//       names of its contributors may be used to endorse or promote products
 
//       derived from this software without specific prior written permission.
 
//
 
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  "AS IS" AND
 
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
// DISCLAIMED. IN NO EVENT SHALL  BE LIABLE FOR ANY
 
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
//
 
// File        : SdCommand.sv
 
// Owner       : Rainer Kastl
 
// Description : Classes and types describing the commands of the SD spec
 
// Links       :
 
//
 
 
 
`ifndef SDCOMMAND
 
`define SDCOMMAND
 
 
 
`include "SDCommandArg.sv";
 
`include "SdCardState.sv";
 
`include "SDCID.sv";
 
`include "SDOCR.sv";
 
`include "SdBFM.sv";
 
 
 
typedef logic[15:0] RCA_t;
 
 
 
typedef enum {
 
         cSdCmdGoIdleState = 0,
 
         cSdCmdAllSendCID = 2,
 
         cSdCmdSendRelAdr = 3,
 
         cSdCmdSetDSR = 4, // [31:16] DSR
 
         cSdCmdSwitchFuntion = 6,
 
         cSdCmdSelCard = 7, // [31:16] RCA
 
         cSdCmdSendIfCond = 8, // [31:12] reserved, [11:8] supply voltage, [7:0] check pattern
 
         cSdCmdSendCSD = 9, // [31:16] RCA
 
         cSdCmdSendCID = 10, // [31:16] RCA
 
         cSdCmdStopTrans = 12,
 
         cSdCmdSendStatus = 13, // [31:16] RCA
 
         cSdCmdReadSingleBlock = 17,
 
         cSdCmdWriteSingleBlock = 24,
 
         cSdCmdNextIsACMD = 55 // [31:16] RCA
 
} SDCommandId;
 
 
 
typedef enum {
 
        cSdCmdACMD41 = 41,
 
        cSdCmdSendSCR = 51,
 
        cSdCmdSetBusWidth = 6
 
} SDAppCommandId;
 
 
 
const SDCommandArg cSdArgACMD41HCS = 'b01000000111111111000000000000000;
 
 
 
typedef logic[5:0] SdCommandId;
 
const logic cSdTransbitToHost = 0;
 
 
 
class DefaultSdResponse extends SdBusTransToken;
 
 
 
        function new(SdCommandId id, SDCommandArg arg);
 
                this.transbit = cSdTransbitToHost;
 
                this.id = id;
 
                this.arg = arg;
 
                this.crc = calcCrcOfToken();
 
        endfunction
 
 
 
endclass
 
 
 
class SDCommandR7 extends DefaultSdResponse;
 
 
 
        function new(SDCommandArg arg);
 
                super.new(cSdCmdSendIfCond, arg);
 
        endfunction
 
 
 
endclass
 
 
 
class SDCommandR1 extends DefaultSdResponse;
 
 
 
        function new(int id, SdCardModelState state);
 
                super.new(id, state.get());
 
        endfunction
 
 
 
endclass
 
 
 
class SDCommandR3 extends DefaultSdResponse;
 
 
 
        function new(SDOCR ocr);
 
                super.new('b111111, ocr.get());
 
                this.crc = 'b111111;
 
        endfunction
 
 
 
endclass
 
 
 
class SDCommandR2 extends SdBusTrans;
 
        local SDCID cid;
 
 
 
        function new();
 
                this.cid = new();
 
                assert(this.cid.randomize());
 
        endfunction
 
 
 
        virtual function SdBusTransData packToData();
 
                SdBusTransData data;
 
                SdCommandId id = 'b111111;
 
                cidreg_t creg = cid.get();
 
 
 
                data = { >> {cSdTransbitToHost, id, creg}};
 
                return data;
 
        endfunction
 
 
 
        virtual function void unpackFromData(ref SdBusTransData data);
 
                Logger log = new();
 
                log.error("SDCommandR2::unpackFromData not implemented");
 
        endfunction
 
 
 
endclass
 
 
 
function SDCommandArg getArgFromRcaAndState(RCA_t rca, SdCardModelState state);
 
        SDCommandArg arg;
 
        arg[31:16] = rca;
 
        arg[15] = state.ComCrcError;
 
        arg[14] = state.IllegalCommand;
 
        arg[13] = state.Error;
 
        arg[12:9] = state.state;
 
        arg[8] = state.ReadyForData;
 
        arg[7:6] = 0;
 
        arg[5] = state.AppCmd;
 
        arg[4] = 0;
 
        arg[3] = state.AkeSeqError;
 
        arg[2:0] = 0;
 
        return arg;
 
endfunction
 
 
 
class SDCommandR6 extends DefaultSdResponse;
 
 
 
        function new(RCA_t rca, SdCardModelState state);
 
                super.new(cSdCmdSendRelAdr, getArgFromRcaAndState(rca, state));
 
        endfunction
 
 
 
endclass
 
 
 
`endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.