]> git.proxmox.com Git - mirror_edk2.git/blob - EmbeddedPkg/Universal/MmcDxe/Mmc.h
EmbeddedPkg/MmcDxe: Fix mixed EOL
[mirror_edk2.git] / EmbeddedPkg / Universal / MmcDxe / Mmc.h
1 /** @file
2 Main Header file for the MMC DXE driver
3
4 Copyright (c) 2011-2014, ARM Limited. All rights reserved.
5
6 This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #ifndef __MMC_H
17 #define __MMC_H
18
19 #include <Uefi.h>
20
21 #include <Protocol/DiskIo.h>
22 #include <Protocol/BlockIo.h>
23 #include <Protocol/DevicePath.h>
24 #include <Protocol/MmcHost.h>
25
26 #include <Library/UefiLib.h>
27 #include <Library/DebugLib.h>
28
29 #define MMC_TRACE(txt) DEBUG((EFI_D_BLKIO, "MMC: " txt "\n"))
30
31 #define MMC_IOBLOCKS_READ 0
32 #define MMC_IOBLOCKS_WRITE 1
33
34 #define MMC_OCR_POWERUP 0x80000000
35
36 #define MMC_CSD_GET_CCC(Response) (Response[2] >> 20)
37 #define MMC_CSD_GET_TRANSPEED(Response) (Response[3] & 0xFF)
38 #define MMC_CSD_GET_READBLLEN(Response) ((Response[2] >> 16) & 0xF)
39 #define MMC_CSD_GET_WRITEBLLEN(Response) ((Response[0] >> 22) & 0xF)
40 #define MMC_CSD_GET_FILEFORMAT(Response) ((Response[0] >> 10) & 0x3)
41 #define MMC_CSD_GET_FILEFORMATGRP(Response) ((Response[0] >> 15) & 0x1)
42 #define MMC_CSD_GET_DEVICESIZE(csd) (((Response[1] >> 30) & 0x3) | ((Response[2] & 0x3FF) << 2))
43 #define HC_MMC_CSD_GET_DEVICESIZE(Response) ((Response[1] >> 16) | ((Response[2] & 0x40) << 16));
44 #define MMC_CSD_GET_DEVICESIZEMULT(csd) ((Response[1] >> 15) & 0x7)
45
46 #define MMC_R0_READY_FOR_DATA (1 << 8)
47
48 #define MMC_R0_CURRENTSTATE(Response) ((Response[0] >> 9) & 0xF)
49
50 #define MMC_R0_STATE_IDLE 0
51 #define MMC_R0_STATE_READY 1
52 #define MMC_R0_STATE_IDENT 2
53 #define MMC_R0_STATE_STDBY 3
54 #define MMC_R0_STATE_TRAN 4
55 #define MMC_R0_STATE_DATA 5
56
57 typedef enum {
58 UNKNOWN_CARD,
59 MMC_CARD, //MMC card
60 MMC_CARD_HIGH, //MMC Card with High capacity
61 EMMC_CARD, //eMMC 4.41 card
62 SD_CARD, //SD 1.1 card
63 SD_CARD_2, //SD 2.0 or above standard card
64 SD_CARD_2_HIGH //SD 2.0 or above high capacity card
65 } CARD_TYPE;
66
67 typedef struct {
68 UINT32 Reserved0: 7; // 0
69 UINT32 V170_V195: 1; // 1.70V - 1.95V
70 UINT32 V200_V260: 7; // 2.00V - 2.60V
71 UINT32 V270_V360: 9; // 2.70V - 3.60V
72 UINT32 RESERVED_1: 5; // Reserved
73 UINT32 AccessMode: 2; // 00b (byte mode), 10b (sector mode)
74 UINT32 PowerUp: 1; // This bit is set to LOW if the card has not finished the power up routine
75 } OCR;
76
77 typedef struct {
78 UINT32 NOT_USED; // 1 [0:0]
79 UINT32 CRC; // CRC7 checksum [7:1]
80 UINT32 MDT; // Manufacturing date [19:8]
81 UINT32 RESERVED_1; // Reserved [23:20]
82 UINT32 PSN; // Product serial number [55:24]
83 UINT8 PRV; // Product revision [63:56]
84 UINT8 PNM[5]; // Product name [64:103]
85 UINT16 OID; // OEM/Application ID [119:104]
86 UINT8 MID; // Manufacturer ID [127:120]
87 } CID;
88
89 typedef struct {
90 UINT8 NOT_USED: 1; // Not used, always 1 [0:0]
91 UINT8 CRC: 7; // CRC [7:1]
92
93 UINT8 RESERVED_1: 2; // Reserved [9:8]
94 UINT8 FILE_FORMAT: 2; // File format [11:10]
95 UINT8 TMP_WRITE_PROTECT: 1; // Temporary write protection [12:12]
96 UINT8 PERM_WRITE_PROTECT: 1; // Permanent write protection [13:13]
97 UINT8 COPY: 1; // Copy flag (OTP) [14:14]
98 UINT8 FILE_FORMAT_GRP: 1; // File format group [15:15]
99
100 UINT16 RESERVED_2: 5; // Reserved [20:16]
101 UINT16 WRITE_BL_PARTIAL: 1; // Partial blocks for write allowed [21:21]
102 UINT16 WRITE_BL_LEN: 4; // Max. write data block length [25:22]
103 UINT16 R2W_FACTOR: 3; // Write speed factor [28:26]
104 UINT16 RESERVED_3: 2; // Reserved [30:29]
105 UINT16 WP_GRP_ENABLE: 1; // Write protect group enable [31:31]
106
107 UINT32 WP_GRP_SIZE: 7; // Write protect group size [38:32]
108 UINT32 SECTOR_SIZE: 7; // Erase sector size [45:39]
109 UINT32 ERASE_BLK_EN: 1; // Erase single block enable [46:46]
110 UINT32 C_SIZE_MULT: 3; // Device size multiplier [49:47]
111 UINT32 VDD_W_CURR_MAX: 3; // Max. write current @ VDD max [52:50]
112 UINT32 VDD_W_CURR_MIN: 3; // Max. write current @ VDD min [55:53]
113 UINT32 VDD_R_CURR_MAX: 3; // Max. read current @ VDD max [58:56]
114 UINT32 VDD_R_CURR_MIN: 3; // Max. read current @ VDD min [61:59]
115 UINT32 C_SIZELow2: 2; // Device size [63:62]
116
117 UINT32 C_SIZEHigh10: 10;// Device size [73:64]
118 UINT32 RESERVED_4: 2; // Reserved [75:74]
119 UINT32 DSR_IMP: 1; // DSR implemented [76:76]
120 UINT32 READ_BLK_MISALIGN: 1; // Read block misalignment [77:77]
121 UINT32 WRITE_BLK_MISALIGN: 1; // Write block misalignment [78:78]
122 UINT32 READ_BL_PARTIAL: 1; // Partial blocks for read allowed [79:79]
123 UINT32 READ_BL_LEN: 4; // Max. read data block length [83:80]
124 UINT32 CCC: 12;// Card command classes [95:84]
125
126 UINT8 TRAN_SPEED ; // Max. bus clock frequency [103:96]
127 UINT8 NSAC ; // Data read access-time 2 in CLK cycles (NSAC*100) [111:104]
128 UINT8 TAAC ; // Data read access-time 1 [119:112]
129
130 UINT8 RESERVED_5: 6; // Reserved [125:120]
131 UINT8 CSD_STRUCTURE: 2; // CSD structure [127:126]
132 } CSD;
133
134 typedef struct {
135 UINT16 RCA;
136 CARD_TYPE CardType;
137 OCR OCRData;
138 CID CIDData;
139 CSD CSDData;
140 } CARD_INFO;
141
142 typedef struct _MMC_HOST_INSTANCE {
143 UINTN Signature;
144 LIST_ENTRY Link;
145 EFI_HANDLE MmcHandle;
146 EFI_DEVICE_PATH_PROTOCOL *DevicePath;
147
148 MMC_STATE State;
149 EFI_BLOCK_IO_PROTOCOL BlockIo;
150 CARD_INFO CardInfo;
151 EFI_MMC_HOST_PROTOCOL *MmcHost;
152
153 BOOLEAN Initialized;
154 } MMC_HOST_INSTANCE;
155
156 #define MMC_HOST_INSTANCE_SIGNATURE SIGNATURE_32('m', 'm', 'c', 'h')
157 #define MMC_HOST_INSTANCE_FROM_BLOCK_IO_THIS(a) CR (a, MMC_HOST_INSTANCE, BlockIo, MMC_HOST_INSTANCE_SIGNATURE)
158 #define MMC_HOST_INSTANCE_FROM_LINK(a) CR (a, MMC_HOST_INSTANCE, Link, MMC_HOST_INSTANCE_SIGNATURE)
159
160
161 EFI_STATUS
162 EFIAPI
163 MmcGetDriverName (
164 IN EFI_COMPONENT_NAME_PROTOCOL *This,
165 IN CHAR8 *Language,
166 OUT CHAR16 **DriverName
167 );
168
169 EFI_STATUS
170 EFIAPI
171 MmcGetControllerName (
172 IN EFI_COMPONENT_NAME_PROTOCOL *This,
173 IN EFI_HANDLE ControllerHandle,
174 IN EFI_HANDLE ChildHandle OPTIONAL,
175 IN CHAR8 *Language,
176 OUT CHAR16 **ControllerName
177 );
178
179 extern EFI_COMPONENT_NAME_PROTOCOL gMmcComponentName;
180 extern EFI_COMPONENT_NAME2_PROTOCOL gMmcComponentName2;
181
182 extern EFI_DRIVER_DIAGNOSTICS2_PROTOCOL gMmcDriverDiagnostics2;
183
184 extern LIST_ENTRY mMmcHostPool;
185
186 /**
187 Reset the block device.
188
189 This function implements EFI_BLOCK_IO_PROTOCOL.Reset().
190 It resets the block device hardware.
191 ExtendedVerification is ignored in this implementation.
192
193 @param This Indicates a pointer to the calling context.
194 @param ExtendedVerification Indicates that the driver may perform a more exhaustive
195 verification operation of the device during reset.
196
197 @retval EFI_SUCCESS The block device was reset.
198 @retval EFI_DEVICE_ERROR The block device is not functioning correctly and could not be reset.
199
200 **/
201 EFI_STATUS
202 EFIAPI
203 MmcReset (
204 IN EFI_BLOCK_IO_PROTOCOL *This,
205 IN BOOLEAN ExtendedVerification
206 );
207
208 /**
209 Reads the requested number of blocks from the device.
210
211 This function implements EFI_BLOCK_IO_PROTOCOL.ReadBlocks().
212 It reads the requested number of blocks from the device.
213 All the blocks are read, or an error is returned.
214
215 @param This Indicates a pointer to the calling context.
216 @param MediaId The media ID that the read request is for.
217 @param Lba The starting logical block address to read from on the device.
218 @param BufferSize The size of the Buffer in bytes.
219 This must be a multiple of the intrinsic block size of the device.
220 @param Buffer A pointer to the destination buffer for the data. The caller is
221 responsible for either having implicit or explicit ownership of the buffer.
222
223 @retval EFI_SUCCESS The data was read correctly from the device.
224 @retval EFI_DEVICE_ERROR The device reported an error while attempting to perform the read operation.
225 @retval EFI_NO_MEDIA There is no media in the device.
226 @retval EFI_MEDIA_CHANGED The MediaId is not for the current media.
227 @retval EFI_BAD_BUFFER_SIZE The BufferSize parameter is not a multiple of the intrinsic block size of the device.
228 @retval EFI_INVALID_PARAMETER The read request contains LBAs that are not valid,
229 or the buffer is not on proper alignment.
230
231 **/
232 EFI_STATUS
233 EFIAPI
234 MmcReadBlocks (
235 IN EFI_BLOCK_IO_PROTOCOL *This,
236 IN UINT32 MediaId,
237 IN EFI_LBA Lba,
238 IN UINTN BufferSize,
239 OUT VOID *Buffer
240 );
241
242 /**
243 Writes a specified number of blocks to the device.
244
245 This function implements EFI_BLOCK_IO_PROTOCOL.WriteBlocks().
246 It writes a specified number of blocks to the device.
247 All blocks are written, or an error is returned.
248
249 @param This Indicates a pointer to the calling context.
250 @param MediaId The media ID that the write request is for.
251 @param Lba The starting logical block address to be written.
252 @param BufferSize The size of the Buffer in bytes.
253 This must be a multiple of the intrinsic block size of the device.
254 @param Buffer Pointer to the source buffer for the data.
255
256 @retval EFI_SUCCESS The data were written correctly to the device.
257 @retval EFI_WRITE_PROTECTED The device cannot be written to.
258 @retval EFI_NO_MEDIA There is no media in the device.
259 @retval EFI_MEDIA_CHANGED The MediaId is not for the current media.
260 @retval EFI_DEVICE_ERROR The device reported an error while attempting to perform the write operation.
261 @retval EFI_BAD_BUFFER_SIZE The BufferSize parameter is not a multiple of the intrinsic
262 block size of the device.
263 @retval EFI_INVALID_PARAMETER The write request contains LBAs that are not valid,
264 or the buffer is not on proper alignment.
265
266 **/
267 EFI_STATUS
268 EFIAPI
269 MmcWriteBlocks (
270 IN EFI_BLOCK_IO_PROTOCOL *This,
271 IN UINT32 MediaId,
272 IN EFI_LBA Lba,
273 IN UINTN BufferSize,
274 IN VOID *Buffer
275 );
276
277 /**
278 Flushes all modified data to a physical block device.
279
280 @param This Indicates a pointer to the calling context.
281
282 @retval EFI_SUCCESS All outstanding data were written correctly to the device.
283 @retval EFI_DEVICE_ERROR The device reported an error while attempting to write data.
284 @retval EFI_NO_MEDIA There is no media in the device.
285
286 **/
287 EFI_STATUS
288 EFIAPI
289 MmcFlushBlocks (
290 IN EFI_BLOCK_IO_PROTOCOL *This
291 );
292
293 EFI_STATUS
294 MmcNotifyState (
295 IN MMC_HOST_INSTANCE *MmcHostInstance,
296 IN MMC_STATE State
297 );
298
299 EFI_STATUS
300 InitializeMmcDevice (
301 IN MMC_HOST_INSTANCE *MmcHost
302 );
303
304 VOID
305 EFIAPI
306 CheckCardsCallback (
307 IN EFI_EVENT Event,
308 IN VOID *Context
309 );
310
311 VOID
312 PrintCSD (
313 IN UINT32* Csd
314 );
315
316 VOID
317 PrintRCA (
318 IN UINT32 Rca
319 );
320
321 VOID
322 PrintOCR (
323 IN UINT32 Ocr
324 );
325
326 VOID
327 PrintResponseR1 (
328 IN UINT32 Response
329 );
330
331 VOID
332 PrintCID (
333 IN UINT32* Cid
334 );
335
336 #endif