]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blob - processor_audio_sdk_1_00_00_00/pasdk/test_dsp/application/itopo/evmk2g/atboot.c
121e04166cd55f420d4347f7d86c5bd4d6acce57
[processor-sdk/performance-audio-sr.git] / processor_audio_sdk_1_00_00_00 / pasdk / test_dsp / application / itopo / evmk2g / atboot.c
2 /*
3 * Copyright (C) 2004-2014 Texas Instruments Incorporated - http://www.ti.com/
4 * All rights reserved.    
5 *
6 *  Redistribution and use in source and binary forms, with or without
7 *  modification, are permitted provided that the following conditions
8 *  are met:
9 *
10 *    Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 *
13 *    Redistributions in binary form must reproduce the above copyright
14 *    notice, this list of conditions and the following disclaimer in the
15 *    documentation and/or other materials provided with the
16 *    distribution.
17 *
18 *    Neither the name of Texas Instruments Incorporated nor the names of
19 *    its contributors may be used to endorse or promote products derived
20 *    from this software without specific prior written permission.
21 *
22 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
23 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26 *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27 *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32 *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *
34 */
36 //
37 //
38 // Initial version obtained from ver 1.10 of i12/evmda830/atboot.c
39 //
41 //#include <ti/procsdk_audio/procsdk_audio_typ.h>
42 #include <procsdk_audio_typ.h>
44 #include <acptype.h>
45 #include <pafaip_a.h>
47 #include <pa_i13_evmk2g_io_a.h> //<pa_i13_evmda830_io_a.h>
49 #ifndef SIMULATE_SIO
51 #ifdef TEST_MULTICHANNEL
52 #define CUS_ATBOOT_S \
53     writeDECChannelMapTo16(PAF_LEFT,PAF_RGHT,8,9,2,12,10,11,-3,-3,-3,-3,-3,-3,-3,-3), \
54     writeENCChannelMapFrom16(PAF_LEFT,PAF_RGHT,8,9,2,12,10,11,-3,-3,-3,-3,-3,-3,-3,-3), \
55     writeVOLControlMasterN(0), \
56     writeVOLOffsetMasterN(0x7fff), \
57     writeSYSRecreationModeDirect, \
58     writeSYSChannelConfigurationRequestSurround4_1, \
59     execPAIOutAnalogSlave, \
60     execPAIInAnalog
61     //execPAIOutAnalog, \
62     //execPAIInDigital    
63     //execPAIOutAnalog, \
64     //execPAIInHDMIStereo   
65     //execPAIOutAnalog, \
66     //execPAIInHDMI
67 #else
69 #define CUS_ATBOOT_S \
70     writeDECChannelMapTo16(PAF_LEFT,PAF_RGHT,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3), \
71     writeENCChannelMapFrom16(PAF_LEFT,PAF_RGHT,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3,-3), \
72     writeVOLControlMasterN(0), \
73     writeVOLOffsetMasterN(0x7fff), \
74     writeSYSRecreationModeDirect, \
75     writeSYSChannelConfigurationRequestStereo, \
76     execPAIOutAnalog, \
77     execPAIInHDMIStereo
78 #endif
80 #else // SIMULATE_SIO
82 #define CUS_ATBOOT_S \
83     writeDECChannelMapTo16  (PAF_LEFT,PAF_RGHT,PAF_LSUR,PAF_RSUR,PAF_CNTR,PAF_SUBW,PAF_LBAK,PAF_RBAK,PAF_LWID,PAF_RWID,PAF_LHED,PAF_RHED,-3,-3,-3,-3), \
84     writeENCChannelMapFrom16(PAF_LEFT,PAF_RGHT,PAF_LSUR,PAF_RSUR,PAF_CNTR,PAF_SUBW,PAF_LBAK,PAF_RBAK,PAF_LWID,PAF_RWID,PAF_LHED,PAF_RHED,-3,-3,-3,-3), \
85     writeVOLControlMasterN(0), \
86     writeVOLOffsetMasterN(0x7fff), \
87     writeSYSRecreationModeDirect, \
88     writeSYSChannelConfigurationRequestSurround4_1, \
89     execPAIOutAnalog, \
90     execPAIInAnalog
91     //execPAIOutNone, \
92     //execPAIInNone
94 #endif // SIMULATE_SIO
96 #pragma DATA_SECTION(cus_atboot_s0_patch, ".none")
97 const ACP_Unit cus_atboot_s0_patch[] = {
98     0xc900 + 0 - 1,
99     CUS_ATBOOT_S,
100 };
102 const ACP_Unit cus_atboot_s_patch[] = {
103     0xc900 + sizeof(cus_atboot_s0_patch)/2 - 1,
104     CUS_ATBOOT_S,
105 };
107 const ACP_Unit cus_atboot_s[] = {
108     0xc900 + sizeof(cus_atboot_s0_patch)/2 - 1,
109     CUS_ATBOOT_S,
110 };
112 const ACP_Unit cus_attime_s[] = {
113     0xc900,
114 };
115 // EOF