| 1 | /*************************************************************************** |
|---|
| 2 | * (c)2007-2010 Broadcom Corporation |
|---|
| 3 | * |
|---|
| 4 | * This program is the proprietary software of Broadcom Corporation and/or its licensors, |
|---|
| 5 | * and may only be used, duplicated, modified or distributed pursuant to the terms and |
|---|
| 6 | * conditions of a separate, written license agreement executed between you and Broadcom |
|---|
| 7 | * (an "Authorized License"). Except as set forth in an Authorized License, Broadcom grants |
|---|
| 8 | * no license (express or implied), right to use, or waiver of any kind with respect to the |
|---|
| 9 | * Software, and Broadcom expressly reserves all rights in and to the Software and all |
|---|
| 10 | * intellectual property rights therein. IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU |
|---|
| 11 | * HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY |
|---|
| 12 | * NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE. |
|---|
| 13 | * |
|---|
| 14 | * Except as expressly set forth in the Authorized License, |
|---|
| 15 | * |
|---|
| 16 | * 1. This program, including its structure, sequence and organization, constitutes the valuable trade |
|---|
| 17 | * secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof, |
|---|
| 18 | * and to use this information only in connection with your use of Broadcom integrated circuit products. |
|---|
| 19 | * |
|---|
| 20 | * 2. TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS" |
|---|
| 21 | * AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR |
|---|
| 22 | * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO |
|---|
| 23 | * THE SOFTWARE. BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES |
|---|
| 24 | * OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, |
|---|
| 25 | * LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION |
|---|
| 26 | * OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF |
|---|
| 27 | * USE OR PERFORMANCE OF THE SOFTWARE. |
|---|
| 28 | * |
|---|
| 29 | * 3. TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS |
|---|
| 30 | * LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR |
|---|
| 31 | * EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR |
|---|
| 32 | * USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF |
|---|
| 33 | * THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT |
|---|
| 34 | * ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE |
|---|
| 35 | * LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF |
|---|
| 36 | * ANY LIMITED REMEDY. |
|---|
| 37 | * |
|---|
| 38 | * $brcm_Workfile: nexus_gpio_init.h $ |
|---|
| 39 | * $brcm_Revision: 4 $ |
|---|
| 40 | * $brcm_Date: 7/14/10 10:33a $ |
|---|
| 41 | * |
|---|
| 42 | * Module Description: |
|---|
| 43 | * |
|---|
| 44 | * Revision History: |
|---|
| 45 | * |
|---|
| 46 | * $brcm_Log: /nexus/modules/gpio/7400/include/nexus_gpio_init.h $ |
|---|
| 47 | * |
|---|
| 48 | * 4 7/14/10 10:33a erickson |
|---|
| 49 | * SW7405-4621: replace nexus_base.h with nexus_types.h |
|---|
| 50 | * |
|---|
| 51 | * 3 1/23/08 8:36p vobadm |
|---|
| 52 | * PR35457: update docs |
|---|
| 53 | * |
|---|
| 54 | * 2 1/23/08 5:16p erickson |
|---|
| 55 | * PR35457: update docs |
|---|
| 56 | * |
|---|
| 57 | * 1 1/18/08 2:21p jgarrett |
|---|
| 58 | * PR 38808: Merging to main branch |
|---|
| 59 | * |
|---|
| 60 | * Nexus_Devel/2 11/28/07 2:11p erickson |
|---|
| 61 | * PR35457: doc update |
|---|
| 62 | * |
|---|
| 63 | * Nexus_Devel/1 11/20/07 1:28p erickson |
|---|
| 64 | * PR37423: added uart, gpio, spi modules |
|---|
| 65 | * |
|---|
| 66 | **************************************************************************/ |
|---|
| 67 | #ifndef NEXUS_GPIO_INIT_H__ |
|---|
| 68 | #define NEXUS_GPIO_INIT_H__ |
|---|
| 69 | |
|---|
| 70 | /*========================================= |
|---|
| 71 | The Gpio module provides an Interface to set the value of GPIO output pins |
|---|
| 72 | and monitor any change in GPIO input pins. |
|---|
| 73 | |
|---|
| 74 | It provides a single interface of the same name. See NEXUS_Gpio_Open. |
|---|
| 75 | ===========================================*/ |
|---|
| 76 | |
|---|
| 77 | #include "nexus_types.h" |
|---|
| 78 | |
|---|
| 79 | #ifdef __cplusplus |
|---|
| 80 | extern "C" { |
|---|
| 81 | #endif |
|---|
| 82 | |
|---|
| 83 | /** |
|---|
| 84 | Summary: |
|---|
| 85 | Settings used to configure the Gpio module. |
|---|
| 86 | |
|---|
| 87 | Description: |
|---|
| 88 | |
|---|
| 89 | See Also: |
|---|
| 90 | NEXUS_GpioModule_GetDefaultSettings |
|---|
| 91 | NEXUS_GpioModule_Init |
|---|
| 92 | **/ |
|---|
| 93 | typedef struct NEXUS_GpioModuleSettings |
|---|
| 94 | { |
|---|
| 95 | int dummy; /* There are no members at this time. */ |
|---|
| 96 | } NEXUS_GpioModuleSettings; |
|---|
| 97 | |
|---|
| 98 | /** |
|---|
| 99 | Summary: |
|---|
| 100 | Get default settings for the structure. |
|---|
| 101 | |
|---|
| 102 | Description: |
|---|
| 103 | This is required in order to make application code resilient to the addition of new strucutre members in the future. |
|---|
| 104 | |
|---|
| 105 | See Also: |
|---|
| 106 | NEXUS_GpioModule_Init |
|---|
| 107 | **/ |
|---|
| 108 | void NEXUS_GpioModule_GetDefaultSettings( |
|---|
| 109 | NEXUS_GpioModuleSettings *pSettings /* [out] */ |
|---|
| 110 | ); |
|---|
| 111 | |
|---|
| 112 | /** |
|---|
| 113 | Summary: |
|---|
| 114 | Initialize the Gpio module. |
|---|
| 115 | |
|---|
| 116 | Description: |
|---|
| 117 | This is called by the NEXUS Platform when the system is initialized. |
|---|
| 118 | |
|---|
| 119 | See Also: |
|---|
| 120 | NEXUS_GpioModule_Uninit |
|---|
| 121 | NEXUS_Gpio_Open - open Interface for Gpio |
|---|
| 122 | **/ |
|---|
| 123 | NEXUS_ModuleHandle NEXUS_GpioModule_Init( |
|---|
| 124 | const NEXUS_GpioModuleSettings *pSettings |
|---|
| 125 | ); |
|---|
| 126 | |
|---|
| 127 | /** |
|---|
| 128 | Summary: |
|---|
| 129 | Uninitialize the Gpio module. |
|---|
| 130 | |
|---|
| 131 | Description: |
|---|
| 132 | This is called by the NEXUS Platform when the system is uninitialized. |
|---|
| 133 | |
|---|
| 134 | See Also: |
|---|
| 135 | NEXUS_GpioModule_Init |
|---|
| 136 | **/ |
|---|
| 137 | void NEXUS_GpioModule_Uninit(void); |
|---|
| 138 | |
|---|
| 139 | #ifdef __cplusplus |
|---|
| 140 | } |
|---|
| 141 | #endif |
|---|
| 142 | |
|---|
| 143 | #endif |
|---|