2010-01-28 22:32:01 +01:00
|
|
|
/** @file
|
|
|
|
|
2010-05-08 21:32:03 +02:00
|
|
|
Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
|
2010-01-28 22:32:01 +01:00
|
|
|
|
2010-04-29 14:46:45 +02:00
|
|
|
This program and the accompanying materials
|
2010-01-28 22:32:01 +01:00
|
|
|
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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __OMAPLIB_H__
|
|
|
|
#define __OMAPLIB_H__
|
|
|
|
|
|
|
|
UINT32
|
2010-05-08 21:32:03 +02:00
|
|
|
EFIAPI
|
2010-01-28 22:32:01 +01:00
|
|
|
GpioBase (
|
|
|
|
IN UINTN Port
|
|
|
|
);
|
|
|
|
|
|
|
|
UINT32
|
2010-05-08 21:32:03 +02:00
|
|
|
EFIAPI
|
2010-01-28 22:32:01 +01:00
|
|
|
TimerBase (
|
|
|
|
IN UINTN Timer
|
|
|
|
);
|
|
|
|
|
|
|
|
UINTN
|
2010-05-08 21:32:03 +02:00
|
|
|
EFIAPI
|
2010-01-28 22:32:01 +01:00
|
|
|
InterruptVectorForTimer (
|
|
|
|
IN UINTN TImer
|
|
|
|
);
|
|
|
|
|
|
|
|
UINT32
|
2010-05-08 21:32:03 +02:00
|
|
|
EFIAPI
|
2010-01-28 22:32:01 +01:00
|
|
|
UartBase (
|
|
|
|
IN UINTN Uart
|
|
|
|
);
|
|
|
|
|
2010-05-08 21:32:03 +02:00
|
|
|
|
2010-01-28 22:32:01 +01:00
|
|
|
#endif // __OMAPLIB_H__
|
|
|
|
|