Project

General

Profile

Flashing » History » Version 9

fixeria, 07/11/2018 10:20 AM

1 1 jolly
h1. Flashing an application into a C123 phone
2 8 jolly
3 9 fixeria
{{>toc}}
4 8 jolly
5
This tutorial explains how to flash one or multiple application(s) into C123 phone. Read carefully, otherwise you might brick your phone. Even if you follow this tutorial, you may brick your phone if you run into cable problem, weak battery or software fault. Also be sure to have another phone for unattended charging. The charger is supported, but if firmware crashes, battery might get overloaded. *Never charge unattended! *After flashing, the original firmware is gone, so be sure to save complete flash memory, if you want to restore original firmware in the future.
6
7 1 jolly
There will be three parts to be flashed:
8
9 8 jolly
* the original Compal loader
10
* the OSMOCOM menu (loads applications from flash into ram)
11
* the application
12 1 jolly
13
Without the Compal loader, the phone is bricked.
14
15
The OSMOCOM menu will allow to start the application from any flash page other than page 0. It displays all applications it finds in flash (using a header, as described below). The cursor keys will select the application, the green button will start the application, the menu button (black button) will display flash location.
16
17
18 8 jolly
h2. Memory
19
20
21 1 jolly
The memory is mapped as follows:
22
23 8 jolly
* 0x000000-0x00ffff: Flash page 0
24
* 0x010000-0x01ffff: Flash page 1
25
* ... more Flash pages ...
26
* 0x800000-0x83ffff: Ram
27 1 jolly
28
Our flash layout is:
29
30 8 jolly
* 0x000000-0x001fff: Compal loader
31
* 0x002000-0x00ffff: OSMOCOM menu
32
* 0x010000-........: OSMOCOM application and storage
33 1 jolly
34
Note: The Compal loader and the OSMOCOM menu will be located in the same flash page!
35
36
37 8 jolly
h2. preparations
38 1 jolly
39 8 jolly
40
41
h3. Unlocking flash write of Osmocom loader
42
43
44
<pre>
45 1 jolly
$ cd src/target/firmware/
46
$ edit Makefile
47 8 jolly
</pre>
48 1 jolly
49
Enable the following compiler flags: (They are located at the bottom of the file.)
50
51 8 jolly
<pre>
52 1 jolly
CFLAGS += -DCONFIG_FLASH_WRITE
53
CFLAGS += -DCONFIG_FLASH_WRITE_LOADER
54 8 jolly
</pre>
55 1 jolly
56
Also you may want to allow the application to transmit, so enable TX supprt:
57
58 8 jolly
<pre>
59 3 jolly
CFLAGS += -DCONFIG_TX_ENABLE
60 8 jolly
</pre>
61 3 jolly
62
63 8 jolly
h3. rebuilding the firmware
64
65
66 1 jolly
Now rebuild the firmware with write support enabled:
67
68 8 jolly
<pre>
69 1 jolly
$ make clean
70
$ make
71 8 jolly
</pre>
72 1 jolly
73
74 8 jolly
h2. actual installation
75 1 jolly
76 8 jolly
77
78
h3. Booting the phone / downloading loader to ram
79
80
81
<pre>
82 1 jolly
$ cd src
83
$ host/osmocon/osmocon -p /dev/ttyUSB0 -m c123xor target/firmware/board/compal_e88/loader.compalram.bin
84 8 jolly
</pre>
85 1 jolly
86
Briefly press the power-on button of your phone (short push, not like a regular phone boot!).
87 8 jolly
See [[osmocon]] for more informations.
88 1 jolly
89
You will get the following output:
90
91 8 jolly
<pre>
92 1 jolly
Received PROMPT1 from phone, responding with CMD
93
read_file(target/firmware/board/compal_e88/loader.compalram.bin): file_size=18436, hdr_len=4, dnload_len=18443
94
Received PROMPT2 from phone, starting download
95
handle_write(): 4096 bytes (4096/18443)
96
handle_write(): 4096 bytes (8192/18443)
97
handle_write(): 4096 bytes (12288/18443)
98
handle_write(): 4096 bytes (16384/18443)
99
handle_write(): 2059 bytes (18443/18443)
100
handle_write(): finished
101
Received DOWNLOAD ACK from phone, your code is running now!
102
Received DOWNLOAD ACK from phone, your code is running now!
103
104
105
OSMOCOM Loader (revision osmocon_v0.0.0-1322-g43c588b-modified)
106
======================================================================
107
Running on compal_e88 in environment compalram
108
Found flash of 2097152 bytes at 0x0 with 2 regions
109 8 jolly
</pre>
110 1 jolly
111
Now open another console and talk to the loader as described below:
112
113
114
115 8 jolly
h3. Flashing the loader + menu
116
117
118 1 jolly
The OSMOCOM loader is located in ram. (see above) It will be used to write to flash. Because it runs in ram, it will allow accessing the flash.
119
120
The OSMOCOM menu cannot be flashed without erasing the original Compal loader, because both are located in the same flash page. We can only erase the complete page, not parts of it. The first thing we must do is save the original loader:
121
122 8 jolly
<pre>
123 1 jolly
$ cd src
124
$ host/osmocon/osmoload memdump 0x000000 0x2000 compal_loader.bin
125 8 jolly
</pre>
126 1 jolly
127
To test if flashing works, we will first flash the Compal and OSMOCOM menu to a wrong location. If flashing fails, we still have the Compal loader working on it's original location, and the phone is not bricked.
128
129
First erase page at 0x010000 and program the just saved compal_loader.bin and the OSMOCOM menu:
130
131 8 jolly
<pre>
132 1 jolly
$ host/osmocon/osmoload funlock 0x010000 0x10000
133
$ host/osmocon/osmoload ferase 0x010000 0x10000
134
$ host/osmocon/osmoload fprogram 0 0x010000 compal_loader.bin
135
$ host/osmocon/osmoload fprogram 0 0x012000 target/firmware/board/compal_e88/menu.e88loader.bin
136 8 jolly
</pre>
137 1 jolly
138
If all these steps will not produce any error output, you can start flashing the Osmocom loader to it's right place at page 0x000000:
139
140 8 jolly
<pre>
141 1 jolly
$ host/osmocon/osmoload funlock 0x000000 0x10000
142
$ host/osmocon/osmoload ferase 0x000000 0x10000
143
$ host/osmocon/osmoload fprogram 0 0x000000 compal_loader.bin
144
$ host/osmocon/osmoload fprogram 0 0x002000 target/firmware/board/compal_e88/menu.e88loader.bin
145 8 jolly
</pre>
146 1 jolly
147
148 8 jolly
h3. Preparing an application
149
150
151 1 jolly
The OSMOCOM menu will search for applications starting at any flash page. In order to detect an application, a header is used. create the header as follows:
152
153 8 jolly
<pre>
154 1 jolly
$ echo "highram:RSSI" >temp
155 8 jolly
</pre>
156 1 jolly
157
In this case we created a header for the RSSI application and call that "RSSI". Now we append the highram image to be loaded by the OSMOCOM menu:
158
159 8 jolly
<pre>
160 1 jolly
$ cat target/firmware/board/compal_e88/rssi.highram.bin >>temp
161 8 jolly
</pre>
162 1 jolly
163
Flashing the "temp" file is only possible, if the number of byte are even. In case they are odd, add one byte:
164
165 8 jolly
<pre>
166 1 jolly
$ ls -la temp
167
-rw-r--r-- 1 root root 83761 Sep 27 10:08 temp
168 2 jolly
$ echo >>temp
169
$ ls -la temp
170
-rw-r--r-- 1 root root 83762 Sep 27 10:08 temp
171 8 jolly
</pre>
172 2 jolly
173 1 jolly
Now the application is ready to be flashed to any flash page. In case of RSSI application, it requires two pages of flash memory. 
174 2 jolly
175 1 jolly
176 2 jolly
177 8 jolly
h3. Flasing an application
178
179
180 1 jolly
In order to flash an application, you must check how large it is. You need to erase the amount of pages the firmware requires. You need to round it up to a multiple of 64k (one flash page).
181 2 jolly
182 1 jolly
In this example we will flash the RSSI firmware. It is between 64k and 128k, so we need at least two pages to erase:
183
184 8 jolly
<pre>
185 1 jolly
$ host/osmocon/osmoload funlock 0x010000 0x20000
186 2 jolly
$ host/osmocon/osmoload ferase 0x010000 0x20000
187 1 jolly
$ host/osmocon/osmoload fprogram 0 0x010000 temp
188 8 jolly
</pre>
189 2 jolly
190 1 jolly
Now we have flashed page 1 and page 2. In order to flash another application, you need to erase and flash page 3 or higher. 
191 2 jolly
192 1 jolly
193
194 8 jolly
h2. Testing
195
196
197
* Power off your phone.
198
* Disconnect the serial cable.
199
* Turn it on (push power button), the OSMOCOM menu will appear and show available applications.
200
* Use up/down keys or digits to select the application.
201
* Press the green off-hook button, the application will be loaded to ram and is started.
202
** Alternatively press the digit as shown in front of the application's name.
Add picture from clipboard (Maximum size: 48.8 MB)