]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleCacheNull.c
MdeModulePkg/CapsuleRuntimeDxe: Add cache flush for IA32 and X64
[mirror_edk2.git] / MdeModulePkg / Universal / CapsuleRuntimeDxe / CapsuleCacheNull.c
CommitLineData
a89fd3a3
ZG
1/** @file\r
2 Null function version of cache function.\r
3\r
4 Copyright (c) 2018, Linaro, Ltd. All rights reserved.<BR>\r
5 Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>\r
6\r
7 This program and the accompanying materials are licensed and made available\r
8 under the terms and conditions of the BSD License which accompanies this\r
9 distribution. The full text of the license may be found at\r
10 http://opensource.org/licenses/bsd-license.php\r
11\r
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
14\r
15**/\r
16\r
17#include "CapsuleService.h"\r
18\r
19#include <Library/CacheMaintenanceLib.h>\r
20\r
21/**\r
22 Writes Back a range of data cache lines covering a set of capsules in memory.\r
23\r
24 Writes Back the data cache lines specified by ScatterGatherList.\r
25\r
26 Null version, do nothing.\r
27\r
28 @param ScatterGatherList Physical address of the data structure that\r
29 describes a set of capsules in memory\r
30\r
31**/\r
32VOID\r
33CapsuleCacheWriteBack (\r
34 IN EFI_PHYSICAL_ADDRESS ScatterGatherList\r
35 )\r
36{\r
37}\r
38\r