From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-x22b.google.com (mail-pf0-x22b.google.com [IPv6:2607:f8b0:400e:c00::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 7B64881D69 for ; Tue, 8 Nov 2016 07:21:57 -0800 (PST) Received: by mail-pf0-x22b.google.com with SMTP id d2so109742126pfd.0 for ; Tue, 08 Nov 2016 07:22:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=LALEHSIDuM3tmTVCw9A2d281tutZZSEuRrv915qI7mc=; b=VoyrQxVYXgGvG2dslQKQ1TUoEMj4Hx/E0GRiI/OqWHiiHjMLp7gEgyJfq0NlPBgJUG ksfyil8RRRAQTz4hoHkLUq/eSErYbNm+vDzQ1Ss+VF+w9P/wSSunCc9siYf58xC07QJp EmIxUjQwBbrDV7FOW2l4XVosICNFZrlOhaBhc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=LALEHSIDuM3tmTVCw9A2d281tutZZSEuRrv915qI7mc=; b=BfjJj6gelxRmlQzOLJWHSgYlqq9GFk8yyr761hHOhenYqGHjRu93vKMnJA4gw1exXq NN7ZJP4yAcjvJZKQJiqSTkNLAP41EqzTCTM+Cy3k0TP8+x59GppP47k8OmQCKsFLUa+z wONQ5morNvw4775sPuj9gVACjw6Ja7Gc9fgU57e7YKwZCAEpRD6hLOXe9EPq6ceGG8im xKz0wuieglalLTNnmzBQ3lr364YGfXavBSmt2OMbGMcie3eK0IuK/s+568g4VQKVjxM/ yQs6kzq5bgwFk9k9tDHoilb6IVpcL+Q9t16r/JaSKb/ZjRCfyjCS2RDwnHi1ktSlxz86 8+Jg== X-Gm-Message-State: ABUngvenygYQDu02k7HshSaaXHghdgqab3RH5SOYiCU2gIa0sEUG6Jgc15SqfvSjsjNFqp0R X-Received: by 10.98.58.81 with SMTP id h78mr24494271pfa.50.1478618520431; Tue, 08 Nov 2016 07:22:00 -0800 (PST) Received: from localhost.localdomain ([45.56.159.76]) by smtp.gmail.com with ESMTPSA id g10sm7971804pac.14.2016.11.08.07.21.55 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 08 Nov 2016 07:21:59 -0800 (PST) From: Haojian Zhuang To: ryan.harkin@linaro.org, edk2-devel@lists.01.org, leif.lindholm@linaro.org, ard.biesheuvel@linaro.org Cc: Haojian Zhuang Date: Tue, 8 Nov 2016 23:21:08 +0800 Message-Id: <1478618476-12608-4-git-send-email-haojian.zhuang@linaro.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1478618476-12608-1-git-send-email-haojian.zhuang@linaro.org> References: <1478618476-12608-1-git-send-email-haojian.zhuang@linaro.org> Subject: [PATCH v4 03/11] MmcDxe: add SPEC_VERS field in CSD structure X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Nov 2016 15:21:57 -0000 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Haojian Zhuang --- EmbeddedPkg/Universal/MmcDxe/Mmc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/EmbeddedPkg/Universal/MmcDxe/Mmc.h b/EmbeddedPkg/Universal/MmcDxe/Mmc.h index 4f132c6..8f30a9a 100644 --- a/EmbeddedPkg/Universal/MmcDxe/Mmc.h +++ b/EmbeddedPkg/Universal/MmcDxe/Mmc.h @@ -128,7 +128,8 @@ typedef struct { UINT8 NSAC ; // Data read access-time 2 in CLK cycles (NSAC*100) [111:104] UINT8 TAAC ; // Data read access-time 1 [119:112] - UINT8 RESERVED_5: 6; // Reserved [125:120] + UINT8 RESERVED_5: 2; // Reserved [121:120] + UINT8 SPEC_VERS: 4; // System specification version [125:122] UINT8 CSD_STRUCTURE: 2; // CSD structure [127:126] } CSD; -- 2.7.4