blob: 4192275157dcc1b7cf9766cd2edb5d84d6702701 [file] [log] [blame]
andrewfisha3f98642010-01-28 21:32:01 +00001/** @file
2
andrewfish7f814ff2010-05-08 19:32:03 +00003 Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
andrewfisha3f98642010-01-28 21:32:01 +00004
hhtian3d706432010-04-29 12:46:45 +00005 This program and the accompanying materials
andrewfisha3f98642010-01-28 21:32:01 +00006 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#ifndef __OMAPLIB_H__
16#define __OMAPLIB_H__
17
18UINT32
andrewfish7f814ff2010-05-08 19:32:03 +000019EFIAPI
andrewfisha3f98642010-01-28 21:32:01 +000020GpioBase (
21 IN UINTN Port
22 );
23
24UINT32
andrewfish7f814ff2010-05-08 19:32:03 +000025EFIAPI
andrewfisha3f98642010-01-28 21:32:01 +000026TimerBase (
27 IN UINTN Timer
28 );
29
30UINTN
andrewfish7f814ff2010-05-08 19:32:03 +000031EFIAPI
andrewfisha3f98642010-01-28 21:32:01 +000032InterruptVectorForTimer (
33 IN UINTN TImer
34 );
35
36UINT32
andrewfish7f814ff2010-05-08 19:32:03 +000037EFIAPI
andrewfisha3f98642010-01-28 21:32:01 +000038UartBase (
39 IN UINTN Uart
40 );
41
andrewfish7f814ff2010-05-08 19:32:03 +000042
andrewfisha3f98642010-01-28 21:32:01 +000043#endif // __OMAPLIB_H__
44