00001 /** ============================================================================ 00002 * @file tnetv107xgem_phy_shmem.h 00003 * 00004 * @path $(DSPLINK)/gpp/inc/sys/arch/TNETV107XGEM/WinCE/ 00005 * 00006 * @brief Physical Interface Abstraction Layer for TNETV107XGem. 00007 * 00008 * @ver 1.65.00.03 00009 * ============================================================================ 00010 * @copyright Copyright (C) 2002-2009, Texas Instruments Incorporated - 00011 * http://www.ti.com/ 00012 * 00013 * Redistribution and use in source and binary forms, with or without 00014 * modification, are permitted provided that the following conditions 00015 * are met: 00016 * 00017 * * Redistributions of source code must retain the above copyright 00018 * notice, this list of conditions and the following disclaimer. 00019 * 00020 * * Redistributions in binary form must reproduce the above copyright 00021 * notice, this list of conditions and the following disclaimer in the 00022 * documentation and/or other materials provided with the distribution. 00023 * 00024 * * Neither the name of Texas Instruments Incorporated nor the names of 00025 * its contributors may be used to endorse or promote products derived 00026 * from this software without specific prior written permission. 00027 * 00028 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00029 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 00030 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00031 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 00032 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00033 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00034 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 00035 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 00036 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 00037 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 00038 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00039 * ============================================================================ 00040 */ 00041 00042 00043 #if !defined (TNETV107XGEM_PHY_SHMEM_H) 00044 #define TNETV107XGEM_PHY_SHMEM_H 00045 00046 00047 /* ----------------------------------- DSP/BIOS Link */ 00048 #include <dsplink.h> 00049 00050 /* ----------------------------------- Hardware Abstraction Layer */ 00051 #include <hal.h> 00052 00053 00054 #if defined (__cplusplus) 00055 extern "C" { 00056 #endif 00057 00058 00059 /* ============================================================================ 00060 * @const INTD_BASE/CHIP_CFG_BASE/CLK_CTRL_BASE 00061 * 00062 * @brief Base address of different Peripherals. 00063 * ============================================================================ 00064 */ 00065 #define INTD_BASE 0x08038000 00066 #define INTD_MAP_SIZE 0x1000 00067 #define CHIP_CFG_BASE 0x08087000 00068 #define CHIP_CFG_MAP_SIZE 0x1000 00069 #define CLK_CTRL_BASE 0x0808A000 00070 #define CLK_CTRL_MAP_SIZE 0x2000 00071 00072 00073 /** ============================================================================ 00074 * @name TNETV107XGEM_shmemInterface 00075 * 00076 * @brief Interface functions exported by the Shared Driver subcomponent. 00077 * ============================================================================ 00078 */ 00079 extern HAL_Interface TNETV107XGEM_shmemInterface ; 00080 00081 00082 /* ============================================================================ 00083 * @func TNETV107XGEM_phyShmemInit 00084 * 00085 * @brief Initializes Shared Driver/device. 00086 * 00087 * @param halObject. 00088 * HAL object. 00089 * 00090 * @return DSP_SOK 00091 * Operation successfully completed. 00092 * DSP_EFAIL 00093 * All other error conditions. 00094 * 00095 * @pre None. 00096 * 00097 * @post None. 00098 * 00099 * @see None 00100 * ============================================================================ 00101 */ 00102 NORMAL_API 00103 DSP_STATUS 00104 TNETV107XGEM_phyShmemInit (IN Pvoid halObj) ; 00105 00106 00107 /* ============================================================================ 00108 * @func TNETV107XGEM_phyShmemExit 00109 * 00110 * @brief Finalizes Shared Driver/device. 00111 * 00112 * @param halObject. 00113 * HAL object. 00114 * 00115 * @return DSP_SOK 00116 * Operation successfully completed. 00117 * DSP_EFAIL 00118 * All other error conditions. 00119 * 00120 * @pre None. 00121 * 00122 * @post None. 00123 * 00124 * @see None 00125 * ============================================================================ 00126 */ 00127 NORMAL_API 00128 DSP_STATUS 00129 TNETV107XGEM_phyShmemExit (IN Pvoid halObj) ; 00130 00131 00132 #if defined (__cplusplus) 00133 } 00134 #endif 00135 00136 00137 #endif /* !defined (TNETV107XGEM_PHY_SHMEM_H) */