]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/drv/mmcsd/test/am572x/c66/bios/mmcsd_emmc_idk.cfg
sd-mmc: add to PDK
[processor-sdk/pdk.git] / packages / ti / drv / mmcsd / test / am572x / c66 / bios / mmcsd_emmc_idk.cfg
1 /**
2  *  \file   mmcsd_emmc_idk.cfg
3  *
4  *  \brief  Sysbios config file for mmcsd emmc C66X test project on
5  *          AM572X IDK EVM.
6  *
7  */
9 /*
10  * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  *
16  * Redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer.
18  *
19  * Redistributions in binary form must reproduce the above copyright
20  * notice, this list of conditions and the following disclaimer in the
21  * documentation and/or other materials provided with the
22  * distribution.
23  *
24  * Neither the name of Texas Instruments Incorporated nor the names of
25  * its contributors may be used to endorse or promote products derived
26  * from this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  *
40  */
41 /* ================ General configuration ================ */
42 var Memory                      =   xdc.useModule('xdc.runtime.Memory');
43 var HeapMem                     =   xdc.useModule('ti.sysbios.heaps.HeapMem');
44 var HeapBuf                     =   xdc.useModule('ti.sysbios.heaps.HeapBuf');
45 var Log                         =   xdc.useModule('xdc.runtime.Log');
46 var Task                        =   xdc.useModule('ti.sysbios.knl.Task');
47 var Semaphore                   =   xdc.useModule('ti.sysbios.knl.Semaphore');
48 var Hwi                         =   xdc.useModule('ti.sysbios.family.c64p.Hwi');
49 var ECM                         =   xdc.useModule('ti.sysbios.family.c64p.EventCombiner');
50 var System                      =   xdc.useModule('xdc.runtime.System');
51 SysStd                          =   xdc.useModule('xdc.runtime.SysStd');
52 var IntXbar                     =   xdc.useModule('ti.sysbios.family.shared.vayu.IntXbar');
53 System.SupportProxy             =   SysStd;
54 System.extendedFormats += "%f";
55 /* Create a default system heap using ti.bios.HeapMem. */
56 var heapMemParams1              =   new HeapMem.Params;
57 heapMemParams1.size             =   8192 * 25;
58 heapMemParams1.sectionName      =   "systemHeap";
59 Program.global.heap0            =   HeapMem.create(heapMemParams1);
61 /* This is the default memory heap. */
62 Memory.defaultHeapInstance      =   Program.global.heap0;
63 Program.sectMap["systemHeap"]   =   Program.platform.stackMemory;
65 /*
66  * Enable Event Groups here and registering of ISR for specific GEM INTC is done
67  * using EventCombiner_dispatchPlug() and Hwi_eventMap() APIs
68  */
69 var exception             =     xdc.useModule('ti.sysbios.family.c64p.Exception');
70 exception.enablePrint = true;
72 /* ================ BIOS configuration ================ */
74 var BIOS                        =   xdc.useModule('ti.sysbios.BIOS'); 
76 /* Enable BIOS Task Scheduler */
77 BIOS.taskEnabled                        =   true;
79 /* ================ Task configuration ================ */
81 /* No runtime stack checking is performed */
82 Task.checkStackFlag = false;
85 /* Reduce the number of task priorities */
86 Task.numPriorities = 4;
88 /* Define and add one Task Hook Set */
89 Task.addHookSet({
90         registerFxn: '&TaskRegisterId',
91         switchFxn: '&mySwitch',
92 });
94 /* ================ Driver configuration ================ */
95 var socType           = "am572x";
97 /*use CSL package*/
98 var Csl = xdc.loadPackage('ti.csl');
99 Csl.Settings.deviceType = socType;
101 /* Load the OSAL package */
102 var osType = "tirtos"
103 var Osal = xdc.useModule('ti.osal.Settings');
104 Osal.osType = osType;
105 Osal.socType = socType;
106 /* Load Profiling package */
107 var Utils = xdc.loadPackage('ti.utils.profiling');
109 /* Load the MMCSD package */
110 var Mmcsd = xdc.loadPackage('ti.drv.mmcsd');
111 Mmcsd.Settings.enableProfiling = true;
112 var Fatfs = xdc.loadPackage('ti.fs.fatfs');
114 /* Load the GPIO package */
115 var GPIO = xdc.loadPackage('ti.drv.gpio');
117 /* Load the UART package */
118 var UART = xdc.loadPackage('ti.drv.uart');    
120 /* Load the I2C package */
121 var I2C = xdc.loadPackage('ti.drv.i2c');    
122 I2C.Settings.socType = socType;
124 /* Load the Board package and set the board name */
125 var Board = xdc.loadPackage('ti.board');
126 Board.Settings.boardName = "idkAM572x";
128 /* ================ Memory sections configuration ================ */
129 Program.sectMap[".text"] = "EXT_RAM";
130 Program.sectMap[".const"] = "EXT_RAM";
131 Program.sectMap[".plt"] = "EXT_RAM";
132 Program.sectMap[".bss:.tx_buf"] = "EXT_RAM";
133 Program.sectMap[".bss:.rx_buf"] = "EXT_RAM";
134 Program.sectMap["BOARD_IO_DELAY_DATA"] = "OCMC_RAM1";
135 Program.sectMap["BOARD_IO_DELAY_CODE"] = "OCMC_RAM1";