2011-02-02 23:35:30 +01:00
|
|
|
/** @file
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011, ARM Limited. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program and the accompanying materials
|
|
|
|
* are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
* which accompanies this distribution. The full text of the license may be found at
|
|
|
|
* http://opensource.org/licenses/bsd-license.php
|
|
|
|
*
|
|
|
|
* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
|
2011-06-03 11:20:30 +02:00
|
|
|
#include <Uefi.h>
|
|
|
|
#include <Drivers/PL310L2Cache.h>
|
2011-02-02 23:35:30 +01:00
|
|
|
|
|
|
|
// Initialize L2X0 Cache Controller
|
2011-06-03 11:18:48 +02:00
|
|
|
VOID
|
|
|
|
L2x0CacheInit (
|
|
|
|
IN UINTN L2x0Base,
|
2011-06-03 11:20:30 +02:00
|
|
|
IN UINT32 L2x0TagLatencies,
|
|
|
|
IN UINT32 L2x0DataLatencies,
|
|
|
|
IN UINT32 L2x0AuxValue,
|
|
|
|
IN UINT32 L2x0AuxMask,
|
2011-06-03 11:18:48 +02:00
|
|
|
IN BOOLEAN CacheEnabled
|
|
|
|
)
|
|
|
|
{
|
2011-02-02 23:35:30 +01:00
|
|
|
//No implementation
|
|
|
|
}
|