blob: 3e5370fc15d8d3513593cf0c4594000fdedcc227 [file] [log] [blame]
Ronak Kanabar1ae366f2023-06-07 01:21:56 +05301/** @file
2
3 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6**/
7
8#ifndef _CACHE_AS_RAM_LIB_H_
9#define _CACHE_AS_RAM_LIB_H_
10
11/**
12 This function disable CAR.
13
14 @param[in] DisableCar TRUE means use INVD, FALSE means use WBINVD
15
16**/
17VOID
18EFIAPI
19DisableCacheAsRam (
20 IN BOOLEAN DisableCar
21 );
22
23#endif