1 /** @file
2 *
3 *  Copyright (c) 2011, ARM Limited. All rights reserved.
4 *
5 *  This program and the accompanying materials
6 *  are licensed and made available under the terms and conditions of the BSD License
7 *  which accompanies this distribution.  The full text of the license may be found at
8 *  http://opensource.org/licenses/bsd-license.php
9 *
10 *  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 *  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14 
15 #include <Uefi.h>
16 #include <Drivers/PL310L2Cache.h>
17 
18 // Initialize L2X0 Cache Controller
19 VOID
L2x0CacheInit(IN UINTN L2x0Base,IN UINT32 L2x0TagLatencies,IN UINT32 L2x0DataLatencies,IN UINT32 L2x0AuxValue,IN UINT32 L2x0AuxMask,IN BOOLEAN CacheEnabled)20 L2x0CacheInit (
21   IN  UINTN   L2x0Base,
22   IN  UINT32  L2x0TagLatencies,
23   IN  UINT32  L2x0DataLatencies,
24   IN  UINT32  L2x0AuxValue,
25   IN  UINT32  L2x0AuxMask,
26   IN  BOOLEAN CacheEnabled
27   )
28 {
29     //No implementation
30 }
31