FreeCalypso > hg > fc-magnetite
annotate components/t30 @ 624:012028896cfb
FFS dev.c, Leonardo target: Fujitsu MB84VF5F5F4J2 #if 0'ed out
The FFS code we got from TI/Openmoko had a stanza for "Fujitsu MB84VF5F5F4J2
stacked device", using a fake device ID code that would need to be patched
manually into cfgffs.c (suppressing and overriding autodetection) and using
an FFS base address in the nCS2 bank, indicating that this FFS config was
probably meant for the MCP version of Leonardo which allows for 16 MiB flash
with a second bank on nCS2.
We previously had this FFS config stanza conditionalized under
CONFIG_TARGET_LEONARDO because the base address contained therein is invalid
for other targets, but now that we actually have a Leonardo build target in
FC Magnetite, I realize that the better approach is to #if 0 out this stanza
altogether: it is already non-functional because it uses a fake device ID
code, thus it is does not add support for more Leonardo board variants,
instead it is just noise.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 22 Dec 2019 21:24:29 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
180 | 1 # Building t30.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version t30 | |
7 cfile_plain t30_version.c | |
8 | |
9 # Defines | |
10 | |
11 CPPFLAGS=-DCCDTABLES_EXTERN | |
12 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
13 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
14 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
15 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
16 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
17 CPPFLAGS="$CPPFLAGS -DALR" | |
18 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
19 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
20 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
21 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
22 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
23 CPPFLAGS="$CPPFLAGS -DUART" | |
24 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
25 CPPFLAGS="$CPPFLAGS -DNWARN" | |
26 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
27 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
28 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
29 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
30 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
31 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
32 CPPFLAGS="$CPPFLAGS -DSRVC=1" | |
33 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
34 | |
35 if [ "$MMI" = 0 ] | |
36 then | |
37 CPPFLAGS="$CPPFLAGS -DACI" | |
38 elif [ "$MMI" = 2 ] | |
39 then | |
40 CPPFLAGS="$CPPFLAGS -DMFW" | |
41 fi | |
42 | |
43 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
44 | |
45 if [ "$GPRS" = 1 ] | |
46 then | |
47 CPPFLAGS="$CPPFLAGS -DGPRS" | |
48 fi | |
49 | |
50 CPPFLAGS="$CPPFLAGS -DDTI2" | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
180
diff
changeset
|
51 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
180
diff
changeset
|
52 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
180 | 53 |
54 # Includes | |
55 | |
56 SRCDIR=$SRC/g23m-fad/t30 | |
57 | |
58 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
59 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
60 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
61 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
62 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
63 CPPFLAGS="$CPPFLAGS -I.." | |
64 CPPFLAGS="$CPPFLAGS -I../config" | |
65 | |
66 # Source modules | |
67 | |
68 cfile_str2ind $SRCDIR/t30_bcsf.c | |
69 cfile_str2ind $SRCDIR/t30_bcss.c | |
70 cfile_str2ind $SRCDIR/t30_kerf.c | |
71 cfile_str2ind $SRCDIR/t30_kerp.c | |
72 cfile_str2ind $SRCDIR/t30_kers.c | |
73 cfile_str2ind $SRCDIR/t30_msgs.c | |
74 cfile_str2ind $SRCDIR/t30_muxp.c | |
75 cfile_str2ind $SRCDIR/t30_muxs.c | |
76 cfile_str2ind $SRCDIR/t30_pei.c | |
77 cfile_str2ind $SRCDIR/t30_tim.c |