OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2007-2009 NVIDIA Corporation. |
| 3 * All rights reserved. |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: |
| 7 * |
| 8 * Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. |
| 10 * |
| 11 * Redistributions in binary form must reproduce the above copyright notice, |
| 12 * this list of conditions and the following disclaimer in the documentation |
| 13 * and/or other materials provided with the distribution. |
| 14 * |
| 15 * Neither the name of the NVIDIA Corporation nor the names of its contributors |
| 16 * may be used to endorse or promote products derived from this software |
| 17 * without specific prior written permission. |
| 18 * |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 29 * POSSIBILITY OF SUCH DAMAGE. |
| 30 * |
| 31 */ |
| 32 |
| 33 /** |
| 34 * @file |
| 35 * <b>NVIDIA Tegra ODM Kit: |
| 36 * I/O Module Definitions</b> |
| 37 * |
| 38 * @b Description: Defines all of the I/O module types (buses, I/Os, etc.) |
| 39 * that may exist on an application processor. |
| 40 */ |
| 41 |
| 42 #ifndef INCLUDED_NVODM_MODULES_H |
| 43 #define INCLUDED_NVODM_MODULES_H |
| 44 |
| 45 /** |
| 46 * @addtogroup nvodm_services |
| 47 * @{ |
| 48 */ |
| 49 |
| 50 #if defined(__cplusplus) |
| 51 extern "C" |
| 52 { |
| 53 #endif |
| 54 |
| 55 /** |
| 56 * Defines I/O module types. |
| 57 * Application processors provide a multitude of interfaces for connecting |
| 58 * to external peripheral devices. These take the forms of individual pins |
| 59 * (such as GPIOs), buses (such as USB), and power rails. Each interface |
| 60 * may have zero, one, or multiple instantiations on the application processor; |
| 61 * see the technical notes to determine the availability of interconnects for |
| 62 * your platform. |
| 63 */ |
| 64 typedef enum |
| 65 { |
| 66 NvOdmIoModule_Ata, |
| 67 NvOdmIoModule_Crt, |
| 68 NvOdmIoModule_Csi, |
| 69 NvOdmIoModule_Dap, |
| 70 NvOdmIoModule_Display, |
| 71 NvOdmIoModule_Dsi, |
| 72 NvOdmIoModule_Gpio, |
| 73 NvOdmIoModule_Hdcp, |
| 74 NvOdmIoModule_Hdmi, |
| 75 NvOdmIoModule_Hsi, |
| 76 NvOdmIoModule_Hsmmc, |
| 77 NvOdmIoModule_I2s, |
| 78 NvOdmIoModule_I2c, |
| 79 NvOdmIoModule_I2c_Pmu, |
| 80 NvOdmIoModule_Kbd, |
| 81 NvOdmIoModule_Mio, |
| 82 NvOdmIoModule_Nand, |
| 83 NvOdmIoModule_Pwm, |
| 84 NvOdmIoModule_Sdio, |
| 85 NvOdmIoModule_Sflash, |
| 86 NvOdmIoModule_Slink, |
| 87 NvOdmIoModule_Spdif, |
| 88 NvOdmIoModule_Spi, |
| 89 NvOdmIoModule_Twc, |
| 90 NvOdmIoModule_Tvo, |
| 91 NvOdmIoModule_Uart, |
| 92 NvOdmIoModule_Usb, |
| 93 NvOdmIoModule_Vdd, |
| 94 NvOdmIoModule_VideoInput, |
| 95 NvOdmIoModule_Xio, |
| 96 NvOdmIoModule_ExternalClock, |
| 97 NvOdmIoModule_Ulpi, |
| 98 NvOdmIoModule_OneWire, |
| 99 NvOdmIoModule_SyncNor, |
| 100 NvOdmIoModule_PciExpress, |
| 101 NvOdmIoModule_Trace, |
| 102 NvOdmIoModule_Tsense, |
| 103 NvOdmIoModule_BacklightPwm, |
| 104 |
| 105 NvOdmIoModule_Num, |
| 106 NvOdmIoModule_Force32 = 0x7fffffffUL |
| 107 } NvOdmIoModule; |
| 108 |
| 109 |
| 110 #if defined(__cplusplus) |
| 111 } |
| 112 #endif |
| 113 |
| 114 /** @} */ |
| 115 |
| 116 #endif // INCLUDED_NVODM_MODULES_H |
OLD | NEW |