]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/IoMmuDxe/AmdSevIoMmu.c
bc57de5b572b6048b6be7a4954ca1ca149a078df
[mirror_edk2.git] / OvmfPkg / IoMmuDxe / AmdSevIoMmu.c
1 /** @file
2
3 The protocol provides support to allocate, free, map and umap a DMA buffer
4 for bus master (e.g PciHostBridge). When SEV is enabled, the DMA operations
5 must be performed on unencrypted buffer hence we use a bounce buffer to map
6 the guest buffer into an unencrypted DMA buffer.
7
8 Copyright (c) 2017, AMD Inc. All rights reserved.<BR>
9 Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
10
11 This program and the accompanying materials are licensed and made available
12 under the terms and conditions of the BSD License which accompanies this
13 distribution. The full text of the license may be found at
14 http://opensource.org/licenses/bsd-license.php
15
16 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
17 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
18
19 **/
20
21 #include "AmdSevIoMmu.h"
22
23 #define MAP_INFO_SIG SIGNATURE_64 ('M', 'A', 'P', '_', 'I', 'N', 'F', 'O')
24
25 typedef struct {
26 UINT64 Signature;
27 LIST_ENTRY Link;
28 EDKII_IOMMU_OPERATION Operation;
29 UINTN NumberOfBytes;
30 UINTN NumberOfPages;
31 EFI_PHYSICAL_ADDRESS CryptedAddress;
32 EFI_PHYSICAL_ADDRESS PlainTextAddress;
33 } MAP_INFO;
34
35 //
36 // List of MAP_INFO structures recycled by Unmap().
37 //
38 // Recycled MAP_INFO structures are equally good for future recycling and
39 // freeing.
40 //
41 STATIC LIST_ENTRY mRecycledMapInfos = INITIALIZE_LIST_HEAD_VARIABLE (
42 mRecycledMapInfos
43 );
44
45 #define COMMON_BUFFER_SIG SIGNATURE_64 ('C', 'M', 'N', 'B', 'U', 'F', 'F', 'R')
46
47 //
48 // ASCII names for EDKII_IOMMU_OPERATION constants, for debug logging.
49 //
50 STATIC CONST CHAR8 * CONST
51 mBusMasterOperationName[EdkiiIoMmuOperationMaximum] = {
52 "Read",
53 "Write",
54 "CommonBuffer",
55 "Read64",
56 "Write64",
57 "CommonBuffer64"
58 };
59
60 //
61 // The following structure enables Map() and Unmap() to perform in-place
62 // decryption and encryption, respectively, for BusMasterCommonBuffer[64]
63 // operations, without dynamic memory allocation or release.
64 //
65 // Both COMMON_BUFFER_HEADER and COMMON_BUFFER_HEADER.StashBuffer are allocated
66 // by AllocateBuffer() and released by FreeBuffer().
67 //
68 #pragma pack (1)
69 typedef struct {
70 UINT64 Signature;
71
72 //
73 // Always allocated from EfiBootServicesData type memory, and always
74 // encrypted.
75 //
76 VOID *StashBuffer;
77
78 //
79 // Followed by the actual common buffer, starting at the next page.
80 //
81 } COMMON_BUFFER_HEADER;
82 #pragma pack ()
83
84 /**
85 Provides the controller-specific addresses required to access system memory
86 from a DMA bus master. On SEV guest, the DMA operations must be performed on
87 shared buffer hence we allocate a bounce buffer to map the HostAddress to a
88 DeviceAddress. The Encryption attribute is removed from the DeviceAddress
89 buffer.
90
91 @param This The protocol instance pointer.
92 @param Operation Indicates if the bus master is going to read or
93 write to system memory.
94 @param HostAddress The system memory address to map to the PCI
95 controller.
96 @param NumberOfBytes On input the number of bytes to map. On output
97 the number of bytes that were mapped.
98 @param DeviceAddress The resulting map address for the bus master
99 PCI controller to use to access the hosts
100 HostAddress.
101 @param Mapping A resulting value to pass to Unmap().
102
103 @retval EFI_SUCCESS The range was mapped for the returned
104 NumberOfBytes.
105 @retval EFI_UNSUPPORTED The HostAddress cannot be mapped as a common
106 buffer.
107 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
108 @retval EFI_OUT_OF_RESOURCES The request could not be completed due to a
109 lack of resources.
110 @retval EFI_DEVICE_ERROR The system hardware could not map the requested
111 address.
112
113 **/
114 EFI_STATUS
115 EFIAPI
116 IoMmuMap (
117 IN EDKII_IOMMU_PROTOCOL *This,
118 IN EDKII_IOMMU_OPERATION Operation,
119 IN VOID *HostAddress,
120 IN OUT UINTN *NumberOfBytes,
121 OUT EFI_PHYSICAL_ADDRESS *DeviceAddress,
122 OUT VOID **Mapping
123 )
124 {
125 EFI_STATUS Status;
126 LIST_ENTRY *RecycledMapInfo;
127 MAP_INFO *MapInfo;
128 EFI_ALLOCATE_TYPE AllocateType;
129 COMMON_BUFFER_HEADER *CommonBufferHeader;
130 VOID *DecryptionSource;
131
132 DEBUG ((
133 DEBUG_VERBOSE,
134 "%a: Operation=%a Host=0x%p Bytes=0x%Lx\n",
135 __FUNCTION__,
136 ((Operation >= 0 &&
137 Operation < ARRAY_SIZE (mBusMasterOperationName)) ?
138 mBusMasterOperationName[Operation] :
139 "Invalid"),
140 HostAddress,
141 (UINT64)((NumberOfBytes == NULL) ? 0 : *NumberOfBytes)
142 ));
143
144 if (HostAddress == NULL || NumberOfBytes == NULL || DeviceAddress == NULL ||
145 Mapping == NULL) {
146 return EFI_INVALID_PARAMETER;
147 }
148
149 //
150 // Allocate a MAP_INFO structure to remember the mapping when Unmap() is
151 // called later.
152 //
153 RecycledMapInfo = GetFirstNode (&mRecycledMapInfos);
154 if (RecycledMapInfo == &mRecycledMapInfos) {
155 //
156 // No recycled MAP_INFO structure, allocate a new one.
157 //
158 MapInfo = AllocatePool (sizeof (MAP_INFO));
159 if (MapInfo == NULL) {
160 Status = EFI_OUT_OF_RESOURCES;
161 goto Failed;
162 }
163 } else {
164 MapInfo = CR (RecycledMapInfo, MAP_INFO, Link, MAP_INFO_SIG);
165 RemoveEntryList (RecycledMapInfo);
166 }
167
168 //
169 // Initialize the MAP_INFO structure, except the PlainTextAddress field
170 //
171 ZeroMem (&MapInfo->Link, sizeof MapInfo->Link);
172 MapInfo->Signature = MAP_INFO_SIG;
173 MapInfo->Operation = Operation;
174 MapInfo->NumberOfBytes = *NumberOfBytes;
175 MapInfo->NumberOfPages = EFI_SIZE_TO_PAGES (MapInfo->NumberOfBytes);
176 MapInfo->CryptedAddress = (UINTN)HostAddress;
177
178 //
179 // In the switch statement below, we point "MapInfo->PlainTextAddress" to the
180 // plaintext buffer, according to Operation. We also set "DecryptionSource".
181 //
182 MapInfo->PlainTextAddress = MAX_ADDRESS;
183 AllocateType = AllocateAnyPages;
184 DecryptionSource = (VOID *)(UINTN)MapInfo->CryptedAddress;
185 switch (Operation) {
186 //
187 // For BusMasterRead[64] and BusMasterWrite[64] operations, a bounce buffer
188 // is necessary regardless of whether the original (crypted) buffer crosses
189 // the 4GB limit or not -- we have to allocate a separate plaintext buffer.
190 // The only variable is whether the plaintext buffer should be under 4GB.
191 //
192 case EdkiiIoMmuOperationBusMasterRead:
193 case EdkiiIoMmuOperationBusMasterWrite:
194 MapInfo->PlainTextAddress = BASE_4GB - 1;
195 AllocateType = AllocateMaxAddress;
196 //
197 // fall through
198 //
199 case EdkiiIoMmuOperationBusMasterRead64:
200 case EdkiiIoMmuOperationBusMasterWrite64:
201 //
202 // Allocate the implicit plaintext bounce buffer.
203 //
204 Status = gBS->AllocatePages (
205 AllocateType,
206 EfiBootServicesData,
207 MapInfo->NumberOfPages,
208 &MapInfo->PlainTextAddress
209 );
210 if (EFI_ERROR (Status)) {
211 goto FreeMapInfo;
212 }
213 break;
214
215 //
216 // For BusMasterCommonBuffer[64] operations, a to-be-plaintext buffer and a
217 // stash buffer (for in-place decryption) have been allocated already, with
218 // AllocateBuffer(). We only check whether the address of the to-be-plaintext
219 // buffer is low enough for the requested operation.
220 //
221 case EdkiiIoMmuOperationBusMasterCommonBuffer:
222 if ((MapInfo->CryptedAddress > BASE_4GB) ||
223 (EFI_PAGES_TO_SIZE (MapInfo->NumberOfPages) >
224 BASE_4GB - MapInfo->CryptedAddress)) {
225 //
226 // CommonBuffer operations cannot be remapped. If the common buffer is
227 // above 4GB, then it is not possible to generate a mapping, so return an
228 // error.
229 //
230 Status = EFI_UNSUPPORTED;
231 goto FreeMapInfo;
232 }
233 //
234 // fall through
235 //
236 case EdkiiIoMmuOperationBusMasterCommonBuffer64:
237 //
238 // The buffer at MapInfo->CryptedAddress comes from AllocateBuffer().
239 //
240 MapInfo->PlainTextAddress = MapInfo->CryptedAddress;
241 //
242 // Stash the crypted data.
243 //
244 CommonBufferHeader = (COMMON_BUFFER_HEADER *)(
245 (UINTN)MapInfo->CryptedAddress - EFI_PAGE_SIZE
246 );
247 ASSERT (CommonBufferHeader->Signature == COMMON_BUFFER_SIG);
248 CopyMem (
249 CommonBufferHeader->StashBuffer,
250 (VOID *)(UINTN)MapInfo->CryptedAddress,
251 MapInfo->NumberOfBytes
252 );
253 //
254 // Point "DecryptionSource" to the stash buffer so that we decrypt
255 // it to the original location, after the switch statement.
256 //
257 DecryptionSource = CommonBufferHeader->StashBuffer;
258 break;
259
260 default:
261 //
262 // Operation is invalid
263 //
264 Status = EFI_INVALID_PARAMETER;
265 goto FreeMapInfo;
266 }
267
268 //
269 // Clear the memory encryption mask on the plaintext buffer.
270 //
271 Status = MemEncryptSevClearPageEncMask (
272 0,
273 MapInfo->PlainTextAddress,
274 MapInfo->NumberOfPages,
275 TRUE
276 );
277 ASSERT_EFI_ERROR (Status);
278 if (EFI_ERROR (Status)) {
279 CpuDeadLoop ();
280 }
281
282 //
283 // If this is a read operation from the Bus Master's point of view,
284 // then copy the contents of the real buffer into the mapped buffer
285 // so the Bus Master can read the contents of the real buffer.
286 //
287 // For BusMasterCommonBuffer[64] operations, the CopyMem() below will decrypt
288 // the original data (from the stash buffer) back to the original location.
289 //
290 if (Operation == EdkiiIoMmuOperationBusMasterRead ||
291 Operation == EdkiiIoMmuOperationBusMasterRead64 ||
292 Operation == EdkiiIoMmuOperationBusMasterCommonBuffer ||
293 Operation == EdkiiIoMmuOperationBusMasterCommonBuffer64) {
294 CopyMem (
295 (VOID *) (UINTN) MapInfo->PlainTextAddress,
296 DecryptionSource,
297 MapInfo->NumberOfBytes
298 );
299 }
300
301 //
302 // Populate output parameters.
303 //
304 *DeviceAddress = MapInfo->PlainTextAddress;
305 *Mapping = MapInfo;
306
307 DEBUG ((
308 DEBUG_VERBOSE,
309 "%a: Mapping=0x%p Device(PlainText)=0x%Lx Crypted=0x%Lx Pages=0x%Lx\n",
310 __FUNCTION__,
311 MapInfo,
312 MapInfo->PlainTextAddress,
313 MapInfo->CryptedAddress,
314 (UINT64)MapInfo->NumberOfPages
315 ));
316
317 return EFI_SUCCESS;
318
319 FreeMapInfo:
320 FreePool (MapInfo);
321
322 Failed:
323 *NumberOfBytes = 0;
324 return Status;
325 }
326
327 /**
328 Completes the Map() operation and releases any corresponding resources.
329
330 @param This The protocol instance pointer.
331 @param Mapping The mapping value returned from Map().
332
333 @retval EFI_SUCCESS The range was unmapped.
334 @retval EFI_INVALID_PARAMETER Mapping is not a value that was returned by
335 Map().
336 @retval EFI_DEVICE_ERROR The data was not committed to the target system
337 memory.
338 **/
339 EFI_STATUS
340 EFIAPI
341 IoMmuUnmap (
342 IN EDKII_IOMMU_PROTOCOL *This,
343 IN VOID *Mapping
344 )
345 {
346 MAP_INFO *MapInfo;
347 EFI_STATUS Status;
348 COMMON_BUFFER_HEADER *CommonBufferHeader;
349 VOID *EncryptionTarget;
350
351 DEBUG ((DEBUG_VERBOSE, "%a: Mapping=0x%p\n", __FUNCTION__, Mapping));
352
353 if (Mapping == NULL) {
354 return EFI_INVALID_PARAMETER;
355 }
356
357 MapInfo = (MAP_INFO *)Mapping;
358
359 //
360 // set CommonBufferHeader to suppress incorrect compiler/analyzer warnings
361 //
362 CommonBufferHeader = NULL;
363
364 //
365 // For BusMasterWrite[64] operations and BusMasterCommonBuffer[64] operations
366 // we have to encrypt the results, ultimately to the original place (i.e.,
367 // "MapInfo->CryptedAddress").
368 //
369 // For BusMasterCommonBuffer[64] operations however, this encryption has to
370 // land in-place, so divert the encryption to the stash buffer first.
371 //
372 EncryptionTarget = (VOID *)(UINTN)MapInfo->CryptedAddress;
373
374 switch (MapInfo->Operation) {
375 case EdkiiIoMmuOperationBusMasterCommonBuffer:
376 case EdkiiIoMmuOperationBusMasterCommonBuffer64:
377 ASSERT (MapInfo->PlainTextAddress == MapInfo->CryptedAddress);
378
379 CommonBufferHeader = (COMMON_BUFFER_HEADER *)(
380 (UINTN)MapInfo->PlainTextAddress - EFI_PAGE_SIZE
381 );
382 ASSERT (CommonBufferHeader->Signature == COMMON_BUFFER_SIG);
383 EncryptionTarget = CommonBufferHeader->StashBuffer;
384 //
385 // fall through
386 //
387
388 case EdkiiIoMmuOperationBusMasterWrite:
389 case EdkiiIoMmuOperationBusMasterWrite64:
390 CopyMem (
391 EncryptionTarget,
392 (VOID *) (UINTN) MapInfo->PlainTextAddress,
393 MapInfo->NumberOfBytes
394 );
395 break;
396
397 default:
398 //
399 // nothing to encrypt after BusMasterRead[64] operations
400 //
401 break;
402 }
403
404 //
405 // Restore the memory encryption mask on the area we used to hold the
406 // plaintext.
407 //
408 Status = MemEncryptSevSetPageEncMask (
409 0,
410 MapInfo->PlainTextAddress,
411 MapInfo->NumberOfPages,
412 TRUE
413 );
414 ASSERT_EFI_ERROR (Status);
415 if (EFI_ERROR (Status)) {
416 CpuDeadLoop ();
417 }
418
419 //
420 // For BusMasterCommonBuffer[64] operations, copy the stashed data to the
421 // original (now encrypted) location.
422 //
423 // For all other operations, fill the late bounce buffer (which existed as
424 // plaintext at some point) with zeros, and then release it.
425 //
426 if (MapInfo->Operation == EdkiiIoMmuOperationBusMasterCommonBuffer ||
427 MapInfo->Operation == EdkiiIoMmuOperationBusMasterCommonBuffer64) {
428 CopyMem (
429 (VOID *)(UINTN)MapInfo->CryptedAddress,
430 CommonBufferHeader->StashBuffer,
431 MapInfo->NumberOfBytes
432 );
433
434 //
435 // Recycle the MAP_INFO structure.
436 //
437 InsertTailList (&mRecycledMapInfos, &MapInfo->Link);
438 } else {
439 ZeroMem (
440 (VOID *)(UINTN)MapInfo->PlainTextAddress,
441 EFI_PAGES_TO_SIZE (MapInfo->NumberOfPages)
442 );
443 gBS->FreePages (MapInfo->PlainTextAddress, MapInfo->NumberOfPages);
444
445 //
446 // Free the MAP_INFO structure.
447 //
448 FreePool (MapInfo);
449 }
450
451 return EFI_SUCCESS;
452 }
453
454 /**
455 Allocates pages that are suitable for an OperationBusMasterCommonBuffer or
456 OperationBusMasterCommonBuffer64 mapping.
457
458 @param This The protocol instance pointer.
459 @param Type This parameter is not used and must be ignored.
460 @param MemoryType The type of memory to allocate,
461 EfiBootServicesData or EfiRuntimeServicesData.
462 @param Pages The number of pages to allocate.
463 @param HostAddress A pointer to store the base system memory
464 address of the allocated range.
465 @param Attributes The requested bit mask of attributes for the
466 allocated range.
467
468 @retval EFI_SUCCESS The requested memory pages were allocated.
469 @retval EFI_UNSUPPORTED Attributes is unsupported. The only legal
470 attribute bits are MEMORY_WRITE_COMBINE and
471 MEMORY_CACHED.
472 @retval EFI_INVALID_PARAMETER One or more parameters are invalid.
473 @retval EFI_OUT_OF_RESOURCES The memory pages could not be allocated.
474
475 **/
476 EFI_STATUS
477 EFIAPI
478 IoMmuAllocateBuffer (
479 IN EDKII_IOMMU_PROTOCOL *This,
480 IN EFI_ALLOCATE_TYPE Type,
481 IN EFI_MEMORY_TYPE MemoryType,
482 IN UINTN Pages,
483 IN OUT VOID **HostAddress,
484 IN UINT64 Attributes
485 )
486 {
487 EFI_STATUS Status;
488 EFI_PHYSICAL_ADDRESS PhysicalAddress;
489 VOID *StashBuffer;
490 UINTN CommonBufferPages;
491 COMMON_BUFFER_HEADER *CommonBufferHeader;
492
493 DEBUG ((
494 DEBUG_VERBOSE,
495 "%a: MemoryType=%u Pages=0x%Lx Attributes=0x%Lx\n",
496 __FUNCTION__,
497 (UINT32)MemoryType,
498 (UINT64)Pages,
499 Attributes
500 ));
501
502 //
503 // Validate Attributes
504 //
505 if ((Attributes & EDKII_IOMMU_ATTRIBUTE_INVALID_FOR_ALLOCATE_BUFFER) != 0) {
506 return EFI_UNSUPPORTED;
507 }
508
509 //
510 // Check for invalid inputs
511 //
512 if (HostAddress == NULL) {
513 return EFI_INVALID_PARAMETER;
514 }
515
516 //
517 // The only valid memory types are EfiBootServicesData and
518 // EfiRuntimeServicesData
519 //
520 if (MemoryType != EfiBootServicesData &&
521 MemoryType != EfiRuntimeServicesData) {
522 return EFI_INVALID_PARAMETER;
523 }
524
525 //
526 // We'll need a header page for the COMMON_BUFFER_HEADER structure.
527 //
528 if (Pages > MAX_UINTN - 1) {
529 return EFI_OUT_OF_RESOURCES;
530 }
531 CommonBufferPages = Pages + 1;
532
533 //
534 // Allocate the stash in EfiBootServicesData type memory.
535 //
536 // Map() will temporarily save encrypted data in the stash for
537 // BusMasterCommonBuffer[64] operations, so the data can be decrypted to the
538 // original location.
539 //
540 // Unmap() will temporarily save plaintext data in the stash for
541 // BusMasterCommonBuffer[64] operations, so the data can be encrypted to the
542 // original location.
543 //
544 // StashBuffer always resides in encrypted memory.
545 //
546 StashBuffer = AllocatePages (Pages);
547 if (StashBuffer == NULL) {
548 return EFI_OUT_OF_RESOURCES;
549 }
550
551 PhysicalAddress = (UINTN)-1;
552 if ((Attributes & EDKII_IOMMU_ATTRIBUTE_DUAL_ADDRESS_CYCLE) == 0) {
553 //
554 // Limit allocations to memory below 4GB
555 //
556 PhysicalAddress = SIZE_4GB - 1;
557 }
558 Status = gBS->AllocatePages (
559 AllocateMaxAddress,
560 MemoryType,
561 CommonBufferPages,
562 &PhysicalAddress
563 );
564 if (EFI_ERROR (Status)) {
565 goto FreeStashBuffer;
566 }
567
568 CommonBufferHeader = (VOID *)(UINTN)PhysicalAddress;
569 PhysicalAddress += EFI_PAGE_SIZE;
570
571 CommonBufferHeader->Signature = COMMON_BUFFER_SIG;
572 CommonBufferHeader->StashBuffer = StashBuffer;
573
574 *HostAddress = (VOID *)(UINTN)PhysicalAddress;
575
576 DEBUG ((
577 DEBUG_VERBOSE,
578 "%a: Host=0x%Lx Stash=0x%p\n",
579 __FUNCTION__,
580 PhysicalAddress,
581 StashBuffer
582 ));
583 return EFI_SUCCESS;
584
585 FreeStashBuffer:
586 FreePages (StashBuffer, Pages);
587 return Status;
588 }
589
590 /**
591 Frees memory that was allocated with AllocateBuffer().
592
593 @param This The protocol instance pointer.
594 @param Pages The number of pages to free.
595 @param HostAddress The base system memory address of the allocated
596 range.
597
598 @retval EFI_SUCCESS The requested memory pages were freed.
599 @retval EFI_INVALID_PARAMETER The memory range specified by HostAddress and
600 Pages was not allocated with AllocateBuffer().
601
602 **/
603 EFI_STATUS
604 EFIAPI
605 IoMmuFreeBuffer (
606 IN EDKII_IOMMU_PROTOCOL *This,
607 IN UINTN Pages,
608 IN VOID *HostAddress
609 )
610 {
611 UINTN CommonBufferPages;
612 COMMON_BUFFER_HEADER *CommonBufferHeader;
613
614 DEBUG ((
615 DEBUG_VERBOSE,
616 "%a: Host=0x%p Pages=0x%Lx\n",
617 __FUNCTION__,
618 HostAddress,
619 (UINT64)Pages
620 ));
621
622 CommonBufferPages = Pages + 1;
623 CommonBufferHeader = (COMMON_BUFFER_HEADER *)(
624 (UINTN)HostAddress - EFI_PAGE_SIZE
625 );
626
627 //
628 // Check the signature.
629 //
630 ASSERT (CommonBufferHeader->Signature == COMMON_BUFFER_SIG);
631 if (CommonBufferHeader->Signature != COMMON_BUFFER_SIG) {
632 return EFI_INVALID_PARAMETER;
633 }
634
635 //
636 // Free the stash buffer. This buffer was always encrypted, so no need to
637 // zero it.
638 //
639 FreePages (CommonBufferHeader->StashBuffer, Pages);
640
641 //
642 // Release the common buffer itself. Unmap() has re-encrypted it in-place, so
643 // no need to zero it.
644 //
645 return gBS->FreePages ((UINTN)CommonBufferHeader, CommonBufferPages);
646 }
647
648
649 /**
650 Set IOMMU attribute for a system memory.
651
652 If the IOMMU protocol exists, the system memory cannot be used
653 for DMA by default.
654
655 When a device requests a DMA access for a system memory,
656 the device driver need use SetAttribute() to update the IOMMU
657 attribute to request DMA access (read and/or write).
658
659 The DeviceHandle is used to identify which device submits the request.
660 The IOMMU implementation need translate the device path to an IOMMU device
661 ID, and set IOMMU hardware register accordingly.
662 1) DeviceHandle can be a standard PCI device.
663 The memory for BusMasterRead need set EDKII_IOMMU_ACCESS_READ.
664 The memory for BusMasterWrite need set EDKII_IOMMU_ACCESS_WRITE.
665 The memory for BusMasterCommonBuffer need set
666 EDKII_IOMMU_ACCESS_READ|EDKII_IOMMU_ACCESS_WRITE.
667 After the memory is used, the memory need set 0 to keep it being
668 protected.
669 2) DeviceHandle can be an ACPI device (ISA, I2C, SPI, etc).
670 The memory for DMA access need set EDKII_IOMMU_ACCESS_READ and/or
671 EDKII_IOMMU_ACCESS_WRITE.
672
673 @param[in] This The protocol instance pointer.
674 @param[in] DeviceHandle The device who initiates the DMA access
675 request.
676 @param[in] Mapping The mapping value returned from Map().
677 @param[in] IoMmuAccess The IOMMU access.
678
679 @retval EFI_SUCCESS The IoMmuAccess is set for the memory range
680 specified by DeviceAddress and Length.
681 @retval EFI_INVALID_PARAMETER DeviceHandle is an invalid handle.
682 @retval EFI_INVALID_PARAMETER Mapping is not a value that was returned by
683 Map().
684 @retval EFI_INVALID_PARAMETER IoMmuAccess specified an illegal combination
685 of access.
686 @retval EFI_UNSUPPORTED DeviceHandle is unknown by the IOMMU.
687 @retval EFI_UNSUPPORTED The bit mask of IoMmuAccess is not supported
688 by the IOMMU.
689 @retval EFI_UNSUPPORTED The IOMMU does not support the memory range
690 specified by Mapping.
691 @retval EFI_OUT_OF_RESOURCES There are not enough resources available to
692 modify the IOMMU access.
693 @retval EFI_DEVICE_ERROR The IOMMU device reported an error while
694 attempting the operation.
695
696 **/
697 EFI_STATUS
698 EFIAPI
699 IoMmuSetAttribute (
700 IN EDKII_IOMMU_PROTOCOL *This,
701 IN EFI_HANDLE DeviceHandle,
702 IN VOID *Mapping,
703 IN UINT64 IoMmuAccess
704 )
705 {
706 return EFI_UNSUPPORTED;
707 }
708
709 EDKII_IOMMU_PROTOCOL mAmdSev = {
710 EDKII_IOMMU_PROTOCOL_REVISION,
711 IoMmuSetAttribute,
712 IoMmuMap,
713 IoMmuUnmap,
714 IoMmuAllocateBuffer,
715 IoMmuFreeBuffer,
716 };
717
718 /**
719 Initialize Iommu Protocol.
720
721 **/
722 EFI_STATUS
723 EFIAPI
724 AmdSevInstallIoMmuProtocol (
725 VOID
726 )
727 {
728 EFI_STATUS Status;
729 EFI_HANDLE Handle;
730
731 Handle = NULL;
732 Status = gBS->InstallMultipleProtocolInterfaces (
733 &Handle,
734 &gEdkiiIoMmuProtocolGuid, &mAmdSev,
735 NULL
736 );
737 return Status;
738 }