]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.h
MdeModulePkg/SdMmcPciHcDxe: Add an optional parameter in NotifyPhase
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / SdMmcPciHcDxe / SdMmcPciHci.h
CommitLineData
48555339
FT
1/** @file\r
2\r
3 Provides some data structure definitions used by the SD/MMC host controller driver.\r
4\r
5Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
9http://opensource.org/licenses/bsd-license.php\r
10\r
11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef _SD_MMC_PCI_HCI_H_\r
17#define _SD_MMC_PCI_HCI_H_\r
18\r
19//\r
20// SD Host Controller SlotInfo Register Offset\r
21//\r
22#define SD_MMC_HC_SLOT_OFFSET 0x40\r
23\r
24#define SD_MMC_HC_MAX_SLOT 6\r
25\r
26//\r
27// SD Host Controller MMIO Register Offset\r
28//\r
29#define SD_MMC_HC_SDMA_ADDR 0x00\r
30#define SD_MMC_HC_ARG2 0x00\r
31#define SD_MMC_HC_BLK_SIZE 0x04\r
32#define SD_MMC_HC_BLK_COUNT 0x06\r
33#define SD_MMC_HC_ARG1 0x08\r
34#define SD_MMC_HC_TRANS_MOD 0x0C\r
35#define SD_MMC_HC_COMMAND 0x0E\r
36#define SD_MMC_HC_RESPONSE 0x10\r
37#define SD_MMC_HC_BUF_DAT_PORT 0x20\r
38#define SD_MMC_HC_PRESENT_STATE 0x24\r
39#define SD_MMC_HC_HOST_CTRL1 0x28\r
40#define SD_MMC_HC_POWER_CTRL 0x29\r
41#define SD_MMC_HC_BLK_GAP_CTRL 0x2A\r
42#define SD_MMC_HC_WAKEUP_CTRL 0x2B\r
43#define SD_MMC_HC_CLOCK_CTRL 0x2C\r
44#define SD_MMC_HC_TIMEOUT_CTRL 0x2E\r
45#define SD_MMC_HC_SW_RST 0x2F\r
46#define SD_MMC_HC_NOR_INT_STS 0x30\r
47#define SD_MMC_HC_ERR_INT_STS 0x32\r
48#define SD_MMC_HC_NOR_INT_STS_EN 0x34\r
49#define SD_MMC_HC_ERR_INT_STS_EN 0x36\r
50#define SD_MMC_HC_NOR_INT_SIG_EN 0x38\r
51#define SD_MMC_HC_ERR_INT_SIG_EN 0x3A\r
52#define SD_MMC_HC_AUTO_CMD_ERR_STS 0x3C\r
53#define SD_MMC_HC_HOST_CTRL2 0x3E\r
54#define SD_MMC_HC_CAP 0x40\r
55#define SD_MMC_HC_MAX_CURRENT_CAP 0x48\r
56#define SD_MMC_HC_FORCE_EVT_AUTO_CMD 0x50\r
57#define SD_MMC_HC_FORCE_EVT_ERR_INT 0x52\r
58#define SD_MMC_HC_ADMA_ERR_STS 0x54\r
59#define SD_MMC_HC_ADMA_SYS_ADDR 0x58\r
60#define SD_MMC_HC_PRESET_VAL 0x60\r
61#define SD_MMC_HC_SHARED_BUS_CTRL 0xE0\r
62#define SD_MMC_HC_SLOT_INT_STS 0xFC\r
63#define SD_MMC_HC_CTRL_VER 0xFE\r
64\r
65//\r
66// The transfer modes supported by SD Host Controller\r
67// Simplified Spec 3.0 Table 1-2\r
68//\r
69typedef enum {\r
70 SdMmcNoData,\r
71 SdMmcPioMode,\r
72 SdMmcSdmaMode,\r
73 SdMmcAdmaMode\r
74} SD_MMC_HC_TRANSFER_MODE;\r
75\r
76//\r
77// The maximum data length of each descriptor line\r
78//\r
79#define ADMA_MAX_DATA_PER_LINE 0x10000\r
80\r
81typedef struct {\r
82 UINT32 Valid:1;\r
83 UINT32 End:1;\r
84 UINT32 Int:1;\r
85 UINT32 Reserved:1;\r
86 UINT32 Act:2;\r
87 UINT32 Reserved1:10;\r
88 UINT32 Length:16;\r
89 UINT32 Address;\r
90} SD_MMC_HC_ADMA_DESC_LINE;\r
91\r
92#define SD_MMC_SDMA_BOUNDARY 512 * 1024\r
93#define SD_MMC_SDMA_ROUND_UP(x, n) (((x) + n) & ~(n - 1))\r
94\r
95typedef struct {\r
96 UINT8 FirstBar:3; // bit 0:2\r
97 UINT8 Reserved:1; // bit 3\r
98 UINT8 SlotNum:3; // bit 4:6\r
99 UINT8 Reserved1:1; // bit 7\r
100} SD_MMC_HC_SLOT_INFO;\r
101\r
102typedef struct {\r
103 UINT32 TimeoutFreq:6; // bit 0:5\r
104 UINT32 Reserved:1; // bit 6\r
105 UINT32 TimeoutUnit:1; // bit 7\r
106 UINT32 BaseClkFreq:8; // bit 8:15\r
107 UINT32 MaxBlkLen:2; // bit 16:17\r
108 UINT32 BusWidth8:1; // bit 18\r
109 UINT32 Adma2:1; // bit 19\r
110 UINT32 Reserved2:1; // bit 20\r
111 UINT32 HighSpeed:1; // bit 21\r
112 UINT32 Sdma:1; // bit 22\r
113 UINT32 SuspRes:1; // bit 23\r
114 UINT32 Voltage33:1; // bit 24\r
115 UINT32 Voltage30:1; // bit 25\r
116 UINT32 Voltage18:1; // bit 26\r
117 UINT32 Reserved3:1; // bit 27\r
118 UINT32 SysBus64:1; // bit 28\r
119 UINT32 AsyncInt:1; // bit 29\r
120 UINT32 SlotType:2; // bit 30:31\r
121 UINT32 Sdr50:1; // bit 32\r
122 UINT32 Sdr104:1; // bit 33\r
123 UINT32 Ddr50:1; // bit 34\r
124 UINT32 Reserved4:1; // bit 35\r
125 UINT32 DriverTypeA:1; // bit 36\r
126 UINT32 DriverTypeC:1; // bit 37\r
127 UINT32 DriverTypeD:1; // bit 38\r
128 UINT32 DriverType4:1; // bit 39\r
129 UINT32 TimerCount:4; // bit 40:43\r
130 UINT32 Reserved5:1; // bit 44\r
131 UINT32 TuningSDR50:1; // bit 45\r
132 UINT32 RetuningMod:2; // bit 46:47\r
133 UINT32 ClkMultiplier:8; // bit 48:55\r
134 UINT32 Reserved6:7; // bit 56:62\r
135 UINT32 Hs400:1; // bit 63\r
136} SD_MMC_HC_SLOT_CAP;\r
137\r
bdf038cc
JB
138//\r
139// SD Host controller version\r
140//\r
141#define SD_MMC_HC_CTRL_VER_100 0x00\r
142#define SD_MMC_HC_CTRL_VER_200 0x01\r
143#define SD_MMC_HC_CTRL_VER_300 0x02\r
144#define SD_MMC_HC_CTRL_VER_400 0x03\r
145#define SD_MMC_HC_CTRL_VER_410 0x04\r
146#define SD_MMC_HC_CTRL_VER_420 0x05\r
147\r
48555339
FT
148/**\r
149 Dump the content of SD/MMC host controller's Capability Register.\r
150\r
151 @param[in] Slot The slot number of the SD card to send the command to.\r
152 @param[in] Capability The buffer to store the capability data.\r
153\r
154**/\r
155VOID\r
156DumpCapabilityReg (\r
157 IN UINT8 Slot,\r
158 IN SD_MMC_HC_SLOT_CAP *Capability\r
159 );\r
160\r
161/**\r
162 Read SlotInfo register from SD/MMC host controller pci config space.\r
163\r
164 @param[in] PciIo The PCI IO protocol instance.\r
165 @param[out] FirstBar The buffer to store the first BAR value.\r
166 @param[out] SlotNum The buffer to store the supported slot number.\r
167\r
168 @retval EFI_SUCCESS The operation succeeds.\r
169 @retval Others The operation fails.\r
170\r
171**/\r
172EFI_STATUS\r
173EFIAPI\r
174SdMmcHcGetSlotInfo (\r
175 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
176 OUT UINT8 *FirstBar,\r
177 OUT UINT8 *SlotNum\r
178 );\r
179\r
180/**\r
181 Read/Write specified SD/MMC host controller mmio register.\r
182\r
183 @param[in] PciIo The PCI IO protocol instance.\r
184 @param[in] BarIndex The BAR index of the standard PCI Configuration\r
185 header to use as the base address for the memory\r
186 operation to perform.\r
187 @param[in] Offset The offset within the selected BAR to start the\r
188 memory operation.\r
189 @param[in] Read A boolean to indicate it's read or write operation.\r
190 @param[in] Count The width of the mmio register in bytes.\r
191 Must be 1, 2 , 4 or 8 bytes.\r
192 @param[in, out] Data For read operations, the destination buffer to store\r
193 the results. For write operations, the source buffer\r
194 to write data from. The caller is responsible for\r
195 having ownership of the data buffer and ensuring its\r
196 size not less than Count bytes.\r
197\r
198 @retval EFI_INVALID_PARAMETER The PciIo or Data is NULL or the Count is not valid.\r
199 @retval EFI_SUCCESS The read/write operation succeeds.\r
200 @retval Others The read/write operation fails.\r
201\r
202**/\r
203EFI_STATUS\r
204EFIAPI\r
205SdMmcHcRwMmio (\r
206 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
207 IN UINT8 BarIndex,\r
208 IN UINT32 Offset,\r
209 IN BOOLEAN Read,\r
210 IN UINT8 Count,\r
211 IN OUT VOID *Data\r
212 );\r
213\r
214/**\r
215 Do OR operation with the value of the specified SD/MMC host controller mmio register.\r
216\r
217 @param[in] PciIo The PCI IO protocol instance.\r
218 @param[in] BarIndex The BAR index of the standard PCI Configuration\r
219 header to use as the base address for the memory\r
220 operation to perform.\r
221 @param[in] Offset The offset within the selected BAR to start the\r
222 memory operation.\r
223 @param[in] Count The width of the mmio register in bytes.\r
224 Must be 1, 2 , 4 or 8 bytes.\r
225 @param[in] OrData The pointer to the data used to do OR operation.\r
226 The caller is responsible for having ownership of\r
227 the data buffer and ensuring its size not less than\r
228 Count bytes.\r
229\r
230 @retval EFI_INVALID_PARAMETER The PciIo or OrData is NULL or the Count is not valid.\r
231 @retval EFI_SUCCESS The OR operation succeeds.\r
232 @retval Others The OR operation fails.\r
233\r
234**/\r
235EFI_STATUS\r
236EFIAPI\r
237SdMmcHcOrMmio (\r
238 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
239 IN UINT8 BarIndex,\r
240 IN UINT32 Offset,\r
241 IN UINT8 Count,\r
242 IN VOID *OrData\r
243 );\r
244\r
245/**\r
246 Do AND operation with the value of the specified SD/MMC host controller mmio register.\r
247\r
248 @param[in] PciIo The PCI IO protocol instance.\r
249 @param[in] BarIndex The BAR index of the standard PCI Configuration\r
250 header to use as the base address for the memory\r
251 operation to perform.\r
252 @param[in] Offset The offset within the selected BAR to start the\r
253 memory operation.\r
254 @param[in] Count The width of the mmio register in bytes.\r
255 Must be 1, 2 , 4 or 8 bytes.\r
256 @param[in] AndData The pointer to the data used to do AND operation.\r
257 The caller is responsible for having ownership of\r
258 the data buffer and ensuring its size not less than\r
259 Count bytes.\r
260\r
261 @retval EFI_INVALID_PARAMETER The PciIo or AndData is NULL or the Count is not valid.\r
262 @retval EFI_SUCCESS The AND operation succeeds.\r
263 @retval Others The AND operation fails.\r
264\r
265**/\r
266EFI_STATUS\r
267EFIAPI\r
268SdMmcHcAndMmio (\r
269 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
270 IN UINT8 BarIndex,\r
271 IN UINT32 Offset,\r
272 IN UINT8 Count,\r
273 IN VOID *AndData\r
274 );\r
275\r
276/**\r
277 Wait for the value of the specified MMIO register set to the test value.\r
278\r
279 @param[in] PciIo The PCI IO protocol instance.\r
280 @param[in] BarIndex The BAR index of the standard PCI Configuration\r
281 header to use as the base address for the memory\r
282 operation to perform.\r
283 @param[in] Offset The offset within the selected BAR to start the\r
284 memory operation.\r
285 @param[in] Count The width of the mmio register in bytes.\r
286 Must be 1, 2, 4 or 8 bytes.\r
287 @param[in] MaskValue The mask value of memory.\r
288 @param[in] TestValue The test value of memory.\r
289 @param[in] Timeout The time out value for wait memory set, uses 1\r
290 microsecond as a unit.\r
291\r
292 @retval EFI_TIMEOUT The MMIO register hasn't expected value in timeout\r
293 range.\r
294 @retval EFI_SUCCESS The MMIO register has expected value.\r
295 @retval Others The MMIO operation fails.\r
296\r
297**/\r
298EFI_STATUS\r
299EFIAPI\r
300SdMmcHcWaitMmioSet (\r
301 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
302 IN UINT8 BarIndex,\r
303 IN UINT32 Offset,\r
304 IN UINT8 Count,\r
305 IN UINT64 MaskValue,\r
306 IN UINT64 TestValue,\r
307 IN UINT64 Timeout\r
308 );\r
309\r
48555339
FT
310/**\r
311 Set all interrupt status bits in Normal and Error Interrupt Status Enable\r
312 register.\r
313\r
314 @param[in] PciIo The PCI IO protocol instance.\r
315 @param[in] Slot The slot number of the SD card to send the command to.\r
316\r
317 @retval EFI_SUCCESS The operation executes successfully.\r
318 @retval Others The operation fails.\r
319\r
320**/\r
321EFI_STATUS\r
322SdMmcHcEnableInterrupt (\r
323 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
324 IN UINT8 Slot\r
325 );\r
326\r
327/**\r
328 Get the capability data from the specified slot.\r
329\r
330 @param[in] PciIo The PCI IO protocol instance.\r
331 @param[in] Slot The slot number of the SD card to send the command to.\r
332 @param[out] Capability The buffer to store the capability data.\r
333\r
334 @retval EFI_SUCCESS The operation executes successfully.\r
335 @retval Others The operation fails.\r
336\r
337**/\r
338EFI_STATUS\r
339SdMmcHcGetCapability (\r
340 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
341 IN UINT8 Slot,\r
342 OUT SD_MMC_HC_SLOT_CAP *Capability\r
343 );\r
344\r
345/**\r
346 Get the maximum current capability data from the specified slot.\r
347\r
348 @param[in] PciIo The PCI IO protocol instance.\r
349 @param[in] Slot The slot number of the SD card to send the command to.\r
350 @param[out] MaxCurrent The buffer to store the maximum current capability data.\r
351\r
352 @retval EFI_SUCCESS The operation executes successfully.\r
353 @retval Others The operation fails.\r
354\r
355**/\r
356EFI_STATUS\r
357SdMmcHcGetMaxCurrent (\r
358 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
359 IN UINT8 Slot,\r
360 OUT UINT64 *MaxCurrent\r
361 );\r
362\r
363/**\r
364 Detect whether there is a SD/MMC card attached at the specified SD/MMC host controller\r
365 slot.\r
366\r
367 Refer to SD Host Controller Simplified spec 3.0 Section 3.1 for details.\r
368\r
369 @param[in] PciIo The PCI IO protocol instance.\r
370 @param[in] Slot The slot number of the SD card to send the command to.\r
371 @param[out] MediaPresent The pointer to the media present boolean value.\r
372\r
373 @retval EFI_SUCCESS There is no media change happened.\r
374 @retval EFI_MEDIA_CHANGED There is media change happened.\r
375 @retval Others The detection fails.\r
376\r
377**/\r
378EFI_STATUS\r
379SdMmcHcCardDetect (\r
380 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
381 IN UINT8 Slot,\r
382 OUT BOOLEAN *MediaPresent\r
383 );\r
384\r
385/**\r
386 Stop SD/MMC card clock.\r
387\r
388 Refer to SD Host Controller Simplified spec 3.0 Section 3.2.2 for details.\r
389\r
390 @param[in] PciIo The PCI IO protocol instance.\r
391 @param[in] Slot The slot number of the SD card to send the command to.\r
392\r
393 @retval EFI_SUCCESS Succeed to stop SD/MMC clock.\r
394 @retval Others Fail to stop SD/MMC clock.\r
395\r
396**/\r
397EFI_STATUS\r
398SdMmcHcStopClock (\r
399 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
400 IN UINT8 Slot\r
401 );\r
402\r
403/**\r
404 SD/MMC card clock supply.\r
405\r
406 Refer to SD Host Controller Simplified spec 3.0 Section 3.2.1 for details.\r
407\r
408 @param[in] PciIo The PCI IO protocol instance.\r
409 @param[in] Slot The slot number of the SD card to send the command to.\r
410 @param[in] ClockFreq The max clock frequency to be set. The unit is KHz.\r
411 @param[in] Capability The capability of the slot.\r
412\r
413 @retval EFI_SUCCESS The clock is supplied successfully.\r
414 @retval Others The clock isn't supplied successfully.\r
415\r
416**/\r
417EFI_STATUS\r
418SdMmcHcClockSupply (\r
419 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
420 IN UINT8 Slot,\r
421 IN UINT64 ClockFreq,\r
422 IN SD_MMC_HC_SLOT_CAP Capability\r
423 );\r
424\r
425/**\r
426 SD/MMC bus power control.\r
427\r
428 Refer to SD Host Controller Simplified spec 3.0 Section 3.3 for details.\r
429\r
430 @param[in] PciIo The PCI IO protocol instance.\r
431 @param[in] Slot The slot number of the SD card to send the command to.\r
432 @param[in] PowerCtrl The value setting to the power control register.\r
433\r
434 @retval TRUE There is a SD/MMC card attached.\r
435 @retval FALSE There is no a SD/MMC card attached.\r
436\r
437**/\r
438EFI_STATUS\r
439SdMmcHcPowerControl (\r
440 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
441 IN UINT8 Slot,\r
442 IN UINT8 PowerCtrl\r
443 );\r
444\r
445/**\r
446 Set the SD/MMC bus width.\r
447\r
448 Refer to SD Host Controller Simplified spec 3.0 Section 3.4 for details.\r
449\r
450 @param[in] PciIo The PCI IO protocol instance.\r
451 @param[in] Slot The slot number of the SD card to send the command to.\r
452 @param[in] BusWidth The bus width used by the SD/MMC device, it must be 1, 4 or 8.\r
453\r
454 @retval EFI_SUCCESS The bus width is set successfully.\r
455 @retval Others The bus width isn't set successfully.\r
456\r
457**/\r
458EFI_STATUS\r
459SdMmcHcSetBusWidth (\r
460 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
461 IN UINT8 Slot,\r
462 IN UINT16 BusWidth\r
463 );\r
464\r
465/**\r
466 Supply SD/MMC card with lowest clock frequency at initialization.\r
467\r
468 @param[in] PciIo The PCI IO protocol instance.\r
469 @param[in] Slot The slot number of the SD card to send the command to.\r
470 @param[in] Capability The capability of the slot.\r
471\r
472 @retval EFI_SUCCESS The clock is supplied successfully.\r
473 @retval Others The clock isn't supplied successfully.\r
474\r
475**/\r
476EFI_STATUS\r
477SdMmcHcInitClockFreq (\r
478 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
479 IN UINT8 Slot,\r
480 IN SD_MMC_HC_SLOT_CAP Capability\r
481 );\r
482\r
483/**\r
484 Supply SD/MMC card with maximum voltage at initialization.\r
485\r
486 Refer to SD Host Controller Simplified spec 3.0 Section 3.3 for details.\r
487\r
488 @param[in] PciIo The PCI IO protocol instance.\r
489 @param[in] Slot The slot number of the SD card to send the command to.\r
490 @param[in] Capability The capability of the slot.\r
491\r
492 @retval EFI_SUCCESS The voltage is supplied successfully.\r
493 @retval Others The voltage isn't supplied successfully.\r
494\r
495**/\r
496EFI_STATUS\r
497SdMmcHcInitPowerVoltage (\r
498 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
499 IN UINT8 Slot,\r
500 IN SD_MMC_HC_SLOT_CAP Capability\r
501 );\r
502\r
503/**\r
504 Initialize the Timeout Control register with most conservative value at initialization.\r
505\r
506 Refer to SD Host Controller Simplified spec 3.0 Section 2.2.15 for details.\r
507\r
508 @param[in] PciIo The PCI IO protocol instance.\r
509 @param[in] Slot The slot number of the SD card to send the command to.\r
510\r
511 @retval EFI_SUCCESS The timeout control register is configured successfully.\r
512 @retval Others The timeout control register isn't configured successfully.\r
513\r
514**/\r
515EFI_STATUS\r
516SdMmcHcInitTimeoutCtrl (\r
517 IN EFI_PCI_IO_PROTOCOL *PciIo,\r
518 IN UINT8 Slot\r
519 );\r
520\r
48555339 521#endif\r