andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 1 | /** @file |
| 2 | |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 3 | Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 4 | |
hhtian | 3d70643 | 2010-04-29 12:46:45 +0000 | [diff] [blame] | 5 | This program and the accompanying materials |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 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 | #ifndef __OMAPLIB_H__ |
| 16 | #define __OMAPLIB_H__ |
| 17 | |
| 18 | UINT32 |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 19 | EFIAPI |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 20 | GpioBase ( |
| 21 | IN UINTN Port |
| 22 | ); |
| 23 | |
| 24 | UINT32 |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 25 | EFIAPI |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 26 | TimerBase ( |
| 27 | IN UINTN Timer |
| 28 | ); |
| 29 | |
| 30 | UINTN |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 31 | EFIAPI |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 32 | InterruptVectorForTimer ( |
| 33 | IN UINTN TImer |
| 34 | ); |
| 35 | |
| 36 | UINT32 |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 37 | EFIAPI |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 38 | UartBase ( |
| 39 | IN UINTN Uart |
| 40 | ); |
| 41 | |
andrewfish | 7f814ff | 2010-05-08 19:32:03 +0000 | [diff] [blame^] | 42 | |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 43 | #endif // __OMAPLIB_H__ |
| 44 | |