FreeCalypso > hg > fc-magnetite
annotate components/main-init @ 629:3231dd9b38c1
armio.c: make GPIOs 8 & 13 outputs driving 1 on all "classic" targets
Calypso GPIOs 8 & 13 are pinmuxed with MCUEN1 & MCUEN2, respectively,
and on powerup these pins are MCUEN, i.e., outputs driving 1. TI's code
for C-Sample and earlier turns them into GPIOs configured as outputs also
driving 1 - so far, so good - but TI's code for BOARD 41 (which covers
D-Sample, Leonardo and all real world Calypso devices derived from the
latter) switches them from MCUEN to GPIOs, but then leaves them as inputs.
Given that the hardware powerup state of these two pins is outputs driving 1,
every Calypso board design MUST be compatible with such driving; typically
these GPIO signals will be either unused and unconnected or connected as
outputs driving some peripheral. Turning these pins into GPIO inputs will
result in floating inputs on every reasonably-wired board, thus I am
convinced that this configuration is nothing but a bug on the part of
whoever wrote this code at TI.
This floating input bug had already been fixed earlier for GTA modem and
FCDEV3B targets; the present change makes the fix unconditional for all
"classic" targets. The newly affected targets are D-Sample, Leonardo,
Tango and GTM900.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 02 Jan 2020 05:38:26 +0000 |
| parents | a7ed7d4483b0 |
| children | 8cf3029429f3 |
| rev | line source |
|---|---|
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 # Building main.lib with recompilation of the init module |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 # C modules |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 CFLAGS="-mn -mt -o -x -mw -me -pw2" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 CPPFLAGS="-DTOOL_CHOICE=0 -D_TMS470" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 |
|
537
3575e65c059e
RVTMUX_ON_MODEM made configurable
Mychaela Falconia <falcon@freecalypso.org>
parents:
536
diff
changeset
|
8 if [ "$RVTMUX_ON_MODEM" = 1 ] |
|
273
8fb920215a46
init.c & components/main-init: put RVTMUX on MODEM on C139 like before
Mychaela Falconia <falcon@freecalypso.org>
parents:
266
diff
changeset
|
9 then |
|
8fb920215a46
init.c & components/main-init: put RVTMUX on MODEM on C139 like before
Mychaela Falconia <falcon@freecalypso.org>
parents:
266
diff
changeset
|
10 CPPFLAGS="$CPPFLAGS -DCONFIG_RVTMUX_ON_MODEM" |
|
8fb920215a46
init.c & components/main-init: put RVTMUX on MODEM on C139 like before
Mychaela Falconia <falcon@freecalypso.org>
parents:
266
diff
changeset
|
11 fi |
|
8fb920215a46
init.c & components/main-init: put RVTMUX on MODEM on C139 like before
Mychaela Falconia <falcon@freecalypso.org>
parents:
266
diff
changeset
|
12 |
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 # Includes |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
15 CPPFLAGS="$CPPFLAGS -I$SRC/cs/os/nucleus" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
16 CPPFLAGS="$CPPFLAGS -I.." |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
17 CPPFLAGS="$CPPFLAGS -I../config" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
18 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
19 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/frame/cust_os" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
20 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
21 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
22 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera/rv" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
23 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
24 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
25 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
26 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
27 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
28 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
29 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
30 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
31 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
32 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
33 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
34 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
35 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
36 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
37 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
38 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
39 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/audio_cust0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
41 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/audio_include" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
42 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/cust0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
43 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/hmacs" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
44 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
45 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/p_include" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
46 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/tm_include" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
47 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/tm_cust0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
48 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/dyn_dwl_include" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
49 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/tpu_drivers/p_source0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
50 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/tpu_drivers/source0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
51 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/tpu_drivers/source" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
52 |
|
519
838eeafb0051
Main and Audio source directories lowercased
Mychaela Falconia <falcon@freecalypso.org>
parents:
392
diff
changeset
|
53 SRCDIR=$SRC/cs/system/main |
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
54 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
55 cfile_plain $SRCDIR/init.c |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
56 cfile_plain $SRCDIR/create_RVtasks.c |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
57 cfile_plain $SRCDIR/main.c |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
58 cfile_plain $SRCDIR/sys_dummy.c |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
59 |
|
282
50fa2f79c1d4
components/main-init: recompile mem_load.obj from mem_load.c
Mychaela Falconia <falcon@freecalypso.org>
parents:
273
diff
changeset
|
60 # Different CFLAGS for mem_load.c |
|
50fa2f79c1d4
components/main-init: recompile mem_load.obj from mem_load.c
Mychaela Falconia <falcon@freecalypso.org>
parents:
273
diff
changeset
|
61 |
|
50fa2f79c1d4
components/main-init: recompile mem_load.obj from mem_load.c
Mychaela Falconia <falcon@freecalypso.org>
parents:
273
diff
changeset
|
62 CFLAGS="-o -mw -me -pw2" |
|
50fa2f79c1d4
components/main-init: recompile mem_load.obj from mem_load.c
Mychaela Falconia <falcon@freecalypso.org>
parents:
273
diff
changeset
|
63 |
|
50fa2f79c1d4
components/main-init: recompile mem_load.obj from mem_load.c
Mychaela Falconia <falcon@freecalypso.org>
parents:
273
diff
changeset
|
64 cfile_plain $SRCDIR/mem_load.c |
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
65 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
66 # Assembly module |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
67 |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
68 ASMFLAGS=-me |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
69 ASMFLAGS="$ASMFLAGS -dBOARD=41" |
|
392
30203d5aeb74
components/*: -DCHIPSET=$CHIPSET instead of fixed -DCHIPSET=10
Mychaela Falconia <falcon@freecalypso.org>
parents:
378
diff
changeset
|
70 ASMFLAGS="$ASMFLAGS -dCHIPSET=$CHIPSET" |
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
71 ASMFLAGS="$ASMFLAGS -dLONG_JUMP=3" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
72 ASMFLAGS="$ASMFLAGS -dTOOL_CHOICE=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
73 ASMFLAGS="$ASMFLAGS -dR2D_ASM=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
74 ASMFLAGS="$ASMFLAGS -dR2D_LCD_TEST=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
75 ASMFLAGS="$ASMFLAGS -dTI_PROFILER=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
76 ASMFLAGS="$ASMFLAGS -dTI_NUC_MONITOR=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
77 ASMFLAGS="$ASMFLAGS -dL1_GPRS=$GPRS" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
78 ASMFLAGS="$ASMFLAGS -dOP_WCP=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
79 ASMFLAGS="$ASMFLAGS -dWCP_PROF=0" |
|
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
80 |
|
536
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
81 if [ "$TARGET" = c155 ] |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
82 then |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
83 ASMFLAGS="$ASMFLAGS -dC155_TARGET=1" |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
84 else |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
85 ASMFLAGS="$ASMFLAGS -dC155_TARGET=0" |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
86 fi |
|
ae18f9aad7ce
C155 target support implemented in a way that should work
Mychaela Falconia <falcon@freecalypso.org>
parents:
535
diff
changeset
|
87 |
|
604
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
88 if [ "$RF" = 12 ] |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
89 then |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
90 ASMFLAGS="$ASMFLAGS -dVCXO_26MHZ=1" |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
91 else |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
92 ASMFLAGS="$ASMFLAGS -dVCXO_26MHZ=0" |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
93 fi |
|
a7ed7d4483b0
main assembly boot path code: MEMIF change for 26 MHz targets
Mychaela Falconia <falcon@freecalypso.org>
parents:
537
diff
changeset
|
94 |
|
266
692f565226ef
components/main-init compilation recipe created
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
95 asm_file $SRCDIR/int.s |
