annotate frbl/README @ 337:814d3f24bed6

frbl/README: minor updates
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 12 Mar 2020 20:46:33 +0000
parents 9805020b6834
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
336
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 TI's TCS211 firmware and its predecessors contain a flash-resident bootloader
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 stage which we call FRBL. This FRBL implements not one but two different
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 protocols for interrupting the normal fw boot process, downloading a code image
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 into RAM and jumping to it; we call these two protocols FRBL1 and FRBL2. The
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5 reasons for this oddity are historical: the original FRBL (TI GSM bootloader or
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 TI GSM monitor or whatever it was called officially) consisted of cmdboot.c,
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 command.c, convert.c, optboot.c, serial.c and start.c source modules and
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 implemented the protocol we call FRBL1, then came MMJ and other TIDK people
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 with their new FLUID idea, they decided on a different protocol which we call
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 FRBL2, and they jerry-rigged their new FLUID bootloader into the firmware's
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 FRBL code.
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 The original source for FRBL1 C modules appears to have been lost (it is not
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 present in what we presume to be the world's last surviving copy of TCS211 from
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 OM), all we have are COFF objects from TI-OM's 20070608 build. The reconst
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 subdirectory contains our reconstruction attempt; this reconstruction is of
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 poor quality because these particular COFF objects have only minimal symbolic
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 information required for linking, as opposed to the much richer -g kind we got
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 for L1 and GPF.
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 The test subdirectory is intended to contain our frbl1test and frbl2test
337
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
22 programs; only frbl2test has been written so far. frbl2test implements the
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
23 host downloader side of the protocol we call FRBL2 in the same way how FLUID
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
24 (the PC-side application) implements it, allowing tests at both 115200 and
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
25 230400 baud as explained below. You need to provide a FreeCalypso-style (not
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
26 TI-style) S-record image to be fed to the target bootloader; helloapp from
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
27 freecalypso-tools/target-utils works ideally for this purpose. Because this
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
28 boot path does not go through the Calypso boot ROM, you will need to manually
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
29 select helloapp-irda.srec or helloapp-modem.srec, matching the Calypso UART you
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
30 are going through. frbl1test will work the same way if I ever get around to
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
31 writing it.
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
32
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
33 230400 baud bogosity
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
34 ====================
336
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 Aside from implementing two different serial protocols, TI's FRBL as featured
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 in their Calypso firmwares has one other major quirk: both FRBL1 and FRBL2 were
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 implemented on 13 MHz platforms (the original purpose was to facilitate fw
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 loading on TI's earlier DBB chips before Calypso that didn't have the boot ROM
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 which we are so used to), on TI's D-Sample board (Calypso chip, 13 MHz CLKTCXO
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 input) both the old way (fluid -oO via FRBL or via JTAG) and the new way
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 (fluid -oo via the boot ROM) work well, but FRBL was never updated for 26 MHz
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 platforms, thus on all practical Calypso platforms (Leonardo derivatives) one
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 must use the boot ROM, not FRBL.
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 TI's TCS211 builds for Leonardo and all vendor firmwares (Openmoko etc) derived
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 from this reference do include FRBL which was never updated for 26 MHz CLKTCXO
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 input on these platforms. The result is that FRBL will only work if you talk
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 to it at 230400 baud instead of TI's intended 115200 baud. TI's official
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 version of FLUID does not support FRBL entry at 230400 baud and such operation
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 was clearly never intended or officially supported - instead the officially
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 supported way for Leonardo and Leonardo-based customer designs was to use
9805020b6834 frbl/README added
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 fluid -oo mode, which works through the boot ROM just like fc-loadtool.
337
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
54
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
55 There is, however, an inexplicable mystery in that Openmoko seem to have used
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
56 fluid -oO mode somehow (at least with their version of FLUID that may have
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
57 unknown changes relative to TI's original) even though it should have never
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
58 worked at all. See this FreeCalypso community mailing list thread:
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
59
814d3f24bed6 frbl/README: minor updates
Mychaela Falconia <falcon@freecalypso.org>
parents: 336
diff changeset
60 https://www.freecalypso.org/pipermail/community/2020-March/000743.html