diff options
Diffstat (limited to 'EDK/Foundation/Cpu/Itanium/CpuIa64Lib')
-rw-r--r-- | EDK/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf | 38 | ||||
-rw-r--r-- | EDK/Foundation/Cpu/Itanium/CpuIa64Lib/IPF/CpuIa64.s | 33 |
2 files changed, 71 insertions, 0 deletions
diff --git a/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf b/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf new file mode 100644 index 0000000..79cc2f7 --- /dev/null +++ b/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/CpuIA64Lib.inf @@ -0,0 +1,38 @@ +#/*++ +# +# Copyright (c) 2004 - 2005, Intel Corporation +# 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. +# +# Module Name: +# +# CpuIA64Lib.inf +# +# Abstract: +# +# Component description file for the Cpu IA64 library. +# +#--*/ + +[defines] +BASE_NAME = CpuIA64Lib +COMPONENT_TYPE = LIBRARY + +[sources.common] + +[sources.ipf] + Ipf\CpuIA64.s + +[includes.common] + $(EDK_SOURCE)\Foundation\Efi + . + $(EDK_SOURCE)\Foundation\Cpu\Itanium\Include + $(EDK_SOURCE)\Foundation\include + +[nmake.common] + C_STD_INCLUDE= diff --git a/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/IPF/CpuIa64.s b/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/IPF/CpuIa64.s new file mode 100644 index 0000000..1827daa --- /dev/null +++ b/EDK/Foundation/Cpu/Itanium/CpuIa64Lib/IPF/CpuIa64.s @@ -0,0 +1,33 @@ +//**************************************************************************** +// +// Copyright (c) 2004, Intel Corporation +// 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. +// +// Module Name: +// +// CpuIA64.s +// +// Abstract: +// +// Contains basic assembly procedures to support IPF CPU. +// +//**************************************************************************** + +.file "CpuIA64.s" + +#include "IpfMacro.i" +#include "IpfDefines.h" + + +PROCEDURE_ENTRY (EfiReadTsc) + + mov r8 = ar.itc + br.ret.dpnt b0;; + +PROCEDURE_EXIT (EfiReadTsc)
\ No newline at end of file |