andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 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 __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 | |
| 29 | //CONTROL_PBIAS_LITE |
| 30 | #define CONTROL_PBIAS_LITE 0x48002520 |
andrewfish | 4326328 | 2010-04-03 00:34:19 +0000 | [diff] [blame^] | 31 | #define PBIASLITEVMODE0 BIT0 |
| 32 | #define PBIASLITEPWRDNZ0 BIT1 |
| 33 | #define PBIASSPEEDCTRL0 BIT2 |
| 34 | #define PBIASLITEVMODE1 BIT8 |
| 35 | #define PBIASLITEWRDNZ1 BIT9 |
andrewfish | a3f9864 | 2010-01-28 21:32:01 +0000 | [diff] [blame] | 36 | |
| 37 | #endif // __OMAP3530_H__ |
| 38 | |