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