blob: c2a4e67868d129bacce0b2f6d415ee9c872c91de [file] [log] [blame]
Subrata Banik20fe24b2021-12-09 02:46:38 +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
24