]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - Omap35xxPkg/Include/Library/OmapLib.h
Moving OMAP 3530 code out of BeagleBoard package into its own package
[mirror_edk2.git] / Omap35xxPkg / Include / Library / OmapLib.h
... / ...
CommitLineData
1/** @file
2
3 Copyright (c) 2008-2009 Apple Inc. All rights reserved.<BR>
4
5 All rights reserved. This program and the accompanying materials
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
18UINT32
19GpioBase (
20 IN UINTN Port
21 );
22
23UINT32
24TimerBase (
25 IN UINTN Timer
26 );
27
28UINTN
29InterruptVectorForTimer (
30 IN UINTN TImer
31 );
32
33UINT32
34UartBase (
35 IN UINTN Uart
36 );
37
38#endif // __OMAPLIB_H__
39