FreeCalypso > hg > fc-magnetite
annotate components/cci @ 673:62a5285e014a
Lorekeeping: allow tpudrv-leonardo.lib on Leonardo/Tango
Back in 2015 the Mother's idea was to produce a FreeCalypso development
board that would be a clone of TI Leonardo, including the original
quadband RFFE; one major additional stipulation was that this board
needed to be able to run original unmodified TCS211-20070608 firmware
with all blobs intact, with only minimal binary patches to main.lib
and tpudrv.lib. The necessary patched libs were produced at that time
in the tcs211-patches repository.
That plan was changed and we produced FCDEV3B instead, with Openmoko's
triband RFFE instead of Leonardo quadband, but when FC Magnetite started
in 2016, a TPUDRV_blob= provision was still made, allowing the possibility
of patching OM's tpudrv.lib for a restored Leonardo RFFE.
Now in 2020 we have FC Tango which is essentially a verbatim clone of
Leonardo core, including the original quadband RFFE. We have also
deblobbed our firmware so much that we have absolutely no real need
for a blob version of tpudrv.lib - but I thought it would be neat to put
the ancient TPUDRV_blob= mechanism (classic config) to its originally
intended use, just for the heck of it.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 29 May 2020 03:55:36 +0000 |
| parents | ad7f986afae3 |
| children |
| rev | line source |
|---|---|
| 184 | 1 # Building cci.lib from the TCS3.2 source |
| 2 | |
| 3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
| 4 | |
| 5 # Defines | |
| 6 | |
| 7 CPPFLAGS=-DCCDTABLES_EXTERN | |
| 8 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
| 9 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
| 10 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
| 11 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
| 12 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
| 13 CPPFLAGS="$CPPFLAGS -DALR" | |
| 14 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
| 15 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
| 16 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
| 17 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
| 18 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
| 19 CPPFLAGS="$CPPFLAGS -DUART" | |
| 20 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
| 21 CPPFLAGS="$CPPFLAGS -DNWARN" | |
| 22 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
| 23 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
| 24 CPPFLAGS="$CPPFLAGS -DGPRS" | |
| 25 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
| 26 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
| 27 | |
| 28 if [ "$SRVC" != 0 ] | |
| 29 then | |
| 30 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
| 31 if [ "$SRVC" = 1 ] | |
| 32 then | |
| 33 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
| 34 fi | |
| 35 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
| 36 fi | |
| 37 | |
| 38 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
| 39 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
| 40 | |
| 41 if [ "$MMI" = 0 ] | |
| 42 then | |
| 43 CPPFLAGS="$CPPFLAGS -DACI" | |
| 44 elif [ "$MMI" = 2 ] | |
| 45 then | |
| 46 CPPFLAGS="$CPPFLAGS -DMFW" | |
| 47 fi | |
| 48 | |
| 49 CPPFLAGS="$CPPFLAGS -DLL_DESC" | |
| 50 CPPFLAGS="$CPPFLAGS -DCCI_FLASH_ROM" | |
|
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
184
diff
changeset
|
51 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
|
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
184
diff
changeset
|
52 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
| 184 | 53 |
| 54 # Includes | |
| 55 | |
| 56 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
| 57 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
| 58 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
| 59 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
| 60 CPPFLAGS="$CPPFLAGS -I$SRC/g23m-gprs/llc" | |
| 61 CPPFLAGS="$CPPFLAGS -I$SRC/g23m-gprs/cci" | |
| 62 CPPFLAGS="$CPPFLAGS -I.." | |
| 63 CPPFLAGS="$CPPFLAGS -I../config" | |
| 64 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" | |
| 65 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" | |
| 66 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" | |
| 67 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" | |
| 68 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" | |
| 69 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" | |
| 70 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" | |
| 71 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" | |
| 72 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" | |
| 73 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" | |
| 74 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" | |
| 75 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" | |
| 76 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" | |
| 77 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" | |
| 78 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" | |
| 79 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" | |
| 80 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" | |
| 81 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" | |
| 82 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include" | |
| 83 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" | |
| 84 | |
| 85 # Source modules | |
| 86 | |
| 87 SRCDIR=$SRC/g23m-gprs/cci | |
| 88 | |
| 89 cfile_str2ind $SRCDIR/cci_gea_start.c | |
| 90 cfile_str2ind $SRCDIR/cci_fbsf.c | |
| 91 #cfile_str2ind $SRCDIR/cci_fbsp.c | |
| 92 cfile_str2ind $SRCDIR/cci_fbss.c | |
| 93 cfile_str2ind $SRCDIR/cci_hw_sim.c | |
| 94 cfile_str2ind $SRCDIR/cci_qf.c | |
| 95 cfile_str2ind $SRCDIR/cci_qp.c | |
| 96 cfile_str2ind $SRCDIR/cci_qs.c |
