]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/tcp3d-lld.git/blob - example/src/tcp3d_single_inst.h
835060e5c06f945039074acf11fca66565418c5c
[keystone-rtos/tcp3d-lld.git] / example / src / tcp3d_single_inst.h
1 /*\r
2  *\r
3  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ \r
4  * \r
5  * \r
6  *  Redistribution and use in source and binary forms, with or without \r
7  *  modification, are permitted provided that the following conditions \r
8  *  are met:\r
9  *\r
10  *    Redistributions of source code must retain the above copyright \r
11  *    notice, this list of conditions and the following disclaimer.\r
12  *\r
13  *    Redistributions in binary form must reproduce the above copyright\r
14  *    notice, this list of conditions and the following disclaimer in the \r
15  *    documentation and/or other materials provided with the   \r
16  *    distribution.\r
17  *\r
18  *    Neither the name of Texas Instruments Incorporated nor the names of\r
19  *    its contributors may be used to endorse or promote products derived\r
20  *    from this software without specific prior written permission.\r
21  *\r
22  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
23  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
24  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
25  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \r
26  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \r
27  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \r
28  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
29  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
30  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \r
31  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE \r
32  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
33  *\r
34 */\r
35 \r
36 #ifndef _TCP3D_SINGLE_INST_H_\r
37 #define _TCP3D_SINGLE_INST_H_\r
38 \r
39 \r
40 #ifdef CSL_TCP3D_A\r
41 /* Convert Keystone CSL definitions ti Keystone2 CSL definitions */\r
42 #define CSL_EDMACC_2_REGS       CSL_EDMA2CC_REGS\r
43 #define CSL_CIC_0_REGS          CSL_CP_INTC_0_REGS\r
44 #define CSL_TCP3D_0             CSL_TCP3D_A\r
45 #define CSL_TCP3D_0_CFG_REGS    CSL_TCP3D_A_CFG_REGS\r
46 #define CSL_TCP3D_0_DATA_REGS   CSL_TCP3D_A_DATA_REGS\r
47 #endif\r
48 \r
49 /**\r
50  * Test TCP3D Notification Events\r
51  */\r
52 #define TCP3D_0_TEST_EVENT              7\r
53 \r
54 /**\r
55  * This gives the channel numbers to which the TCP3 decoder REVTs are mapped.\r
56  * ((per Data sheet SPRS835C, SPRS893 and internal spec \r
57  * intc_1.3.4.12.xlsx,TPCC2)\r
58  */\r
59 #define TCP3D_0_REVT0_CH_NUMBER         34\r
60 #define TCP3D_0_REVT1_CH_NUMBER         35\r
61 \r
62 INLINE UInt32 getHostIntrNum(UInt32 dspCoreID)\r
63 {\r
64     /* Host Interrupts for CPINTC0 (per spec - 0.0.1) */\r
65     UInt32  hostIntr[] = {13u, 29u, 45u, 61u};\r
66 \r
67     return hostIntr[dspCoreID];\r
68 }\r
69 \r
70 INLINE UInt32 getNotifyEventNum(UInt8 instNum)\r
71 {\r
72     return TCP3D_0_TEST_EVENT;\r
73 }\r
74 \r
75 INLINE CSL_TPCC_ShadowRegs * getEdma3ShadowRegsBase(UInt32 regionNum)\r
76 {\r
77     CSL_TpccRegs *tpcc2Regs = (CSL_TpccRegs *) CSL_EDMACC_2_REGS;\r
78 \r
79     return (CSL_TPCC_ShadowRegs *) &tpcc2Regs->SHADOW[regionNum];\r
80 }\r
81 \r
82 INLINE UInt32 getCpIntc0RegsBase()\r
83 {\r
84     return CSL_CIC_0_REGS;\r
85 }\r
86 \r
87 INLINE UInt32 getRevt0ChannelNum(UInt8 instNum)\r
88 {\r
89     return TCP3D_0_REVT0_CH_NUMBER;\r
90 }\r
91 \r
92 INLINE UInt32 getRevt1ChannelNum(UInt8 instNum)\r
93 {\r
94     return TCP3D_0_REVT1_CH_NUMBER;\r
95 }\r
96 \r
97 INLINE UInt8 getTcp3dInstNum(UInt32 dspCoreID)\r
98 {\r
99     return CSL_TCP3D_0;\r
100 }\r
101 \r
102 INLINE UInt32 getTcp3dCfgRegsBase(UInt8 instNum)\r
103 {\r
104     return CSL_TCP3D_0_CFG_REGS;\r
105 }\r
106 \r
107 INLINE UInt32 getTcp3dDataRegsBase(UInt8 instNum)\r
108 {\r
109     return CSL_TCP3D_0_DATA_REGS;\r
110 }\r
111 \r
112 #endif  /* _TCP3D_SINGLE_INST_H_ */\r
113 \r