1 /** @file
2 
3   Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
4 
5   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 __OMAP3530_H__
16 #define __OMAP3530_H__
17 
18 #include "Omap3530Gpio.h"
19 #include "Omap3530Interrupt.h"
20 #include "Omap3530Prcm.h"
21 #include "Omap3530Timer.h"
22 #include "Omap3530Uart.h"
23 #include "Omap3530Usb.h"
24 #include "Omap3530MMCHS.h"
25 #include "Omap3530I2c.h"
26 #include "Omap3530PadConfiguration.h"
27 #include "Omap3530Gpmc.h"
28 #include "Omap3530Dma.h"
29 
30 
31 //CONTROL_PBIAS_LITE
32 #define CONTROL_PBIAS_LITE    0x48002520
33 #define PBIASLITEVMODE0       BIT0
34 #define PBIASLITEPWRDNZ0      BIT1
35 #define PBIASSPEEDCTRL0       BIT2
36 #define PBIASLITEVMODE1       BIT8
37 #define PBIASLITEWRDNZ1       BIT9
38 
39 #endif // __OMAP3530_H__
40 
41