]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/ibl.git/commitdiff
updated configuration to use gels
authorMike Line <m-line1@ti.com>
Tue, 19 Oct 2010 18:51:45 +0000 (14:51 -0400)
committerMike Line <m-line1@ti.com>
Tue, 19 Oct 2010 18:51:45 +0000 (14:51 -0400)
The configuration utility is now a single utility with a gel to specify the
board specific parameters

src/util/i2cConfig/i2cparam.cmd [new file with mode: 0644]

diff --git a/src/util/i2cConfig/i2cparam.cmd b/src/util/i2cConfig/i2cparam.cmd
new file mode 100644 (file)
index 0000000..1d592a7
--- /dev/null
@@ -0,0 +1,37 @@
+/*************************************************************************
+ * @file  i2cparam_c6472.cmd
+ *
+ * @brief  Places the i2c parameter writer program into memory
+ *
+ *************************************************************************/
+
+i2cparam.oc
+../../hw/c64x/make/i2c.oc
+../../hw/c64x/make/pll.oc
+
+-c
+-a
+-stack 0x400
+
+MEMORY
+{
+   STACK   :  origin = 0x810000 length = 0x0400
+   TEXT    :  origin = 0x810400 length = 0x8000
+   DATA    :  origin = 0x818400 length = 0x0800
+}
+
+SECTIONS
+{
+       .stack > STACK
+
+       .text   > TEXT
+       .const  > TEXT
+       .switch > TEXT
+       .cinit  > TEXT
+
+       .far    > DATA
+       .bss    > DATA
+       .data   > DATA
+
+}
+       
\ No newline at end of file