Project

General

Profile

SIMtrace Firmware » History » Version 13

Anonymous, 02/19/2016 10:48 PM
Typo fixes

1 1 laforge
= SIMtrace Firmware =
2
3 4 laforge
The Firmware for the AT91SAM7S device was written by reusing a lot of the code for the [http://www.openpcd.org/ OpenPCD]
4
RFID reader.  
5 1 laforge
6 4 laforge
There is a {{{simtrace}}} Makefile target in the git://git.gnumonks.org/openpcd.git repository containing the latest firmware code.
7
8
Eventually, the OS part of OpenPCD/OpenPICC/SIMtrace will be separated.  At that point, the firmware source can become
9
part of simtrace.git
10
11
== Building the firmware ==
12
13
Precondition: You need to set your PATH in a way that contains an arm-elf [wiki:toolchain], i.e. the same way that you build [wiki:GettingStarted OsmocomBB].
14
15
{{{
16 7 laforge
$ git clone git://git.gnumonks.org/openpcd.git
17
$ cd openpcd/firmware
18
$ make -f Makefile.dfu BOARD=SIMTRACE
19
$ make BOARD=SIMTRACE DEBUG=1 TARGET=main_simtrace
20
$ cat dfu.bin main_simtrace.bin > main_simtrace.samba
21
$ cd ../..
22 4 laforge
}}}
23
24
=== Firmware parts ===
25
26
The firmware build process creates two images:
27
 * dfu.bin -- the sam7dfu 2nd level bootloader. It implements the USB DFU (Device Firmware Upgrade) profile.
28
 * main_simtrace.bin -- the actual simtrace program. To be loaded via DFU, using [http://dfu-util.gnumonks.org/ dfu-util].
29
 * main_simtrace.samba -- [http://www.openpcd.org/Sam7dfu sam7dfu] + simtrace image. to be loaded via SAM-BA, using sam7utils (see below).
30
31
32 5 laforge
=== sam7utils ===
33 4 laforge
34 9 laforge
SAM-BA images contain a full NOR flash image.  They can be used in case the sam7dfu bootloader was corrupted,
35
and can be installed either using the '''sam7''' program released by Atmel, or via JTAG based flashing.
36
37
Installing firmware using SAM-BA is a bit cumbersome and requires strict adherence to a sequence of USB cable
38
plugging/unplugging and jumper setting, waiting, jumper removal, etc.
39
40
41 4 laforge
sam7utils will be used to flash the '''main_simtrace.samba''' image over SAM-BA.
42
{{{
43 8 laforge
$ sudo aptitude install libreadline-dev
44
$ wget http://www.openpcd.org/dl/sam7utils-0.2.1-bm.tar.bz2
45
$ tar xf sam7utils-*.tar.bz2
46
$ cd sam7utils
47
$ ./configure --prefix=/usr/local
48
$ make
49 4 laforge
}}}
50
51 12 laforge
==== Entering the SAM-BA mode ====
52
The first time you flash the device, you will have to use the SAM-BA method using the main_simtrace.samba image.
53
54
To put the board into SAM-BA mode, use the following steps:
55
56
 * unplug the board
57
 * short TEST to VCC (3.3V) pin using a jumper. leave PA0,PA1,PA2 unconnected.
58
 * power up the board
59
 * wait 20s
60
 * unplug board
61
 * remove jumper
62
Now when the board is attached to USB, lsusb should show :
63
{{{
64
Bus 002 Device 015: ID 03eb:6124 Atmel Corp. at91sam SAMBA bootloader
65
}}}
66
67 13 laforge
'''note for v1.0p boards''': sometimes the SAM-BA mode is not working. This is the case
68
if the 2 LEDs are on when powering up the board while VCC and TEST is shorted. The
69 12 laforge
reason in unknown, but there are several methods to correct this:
70
71
 * press the RESET button while powering up
72
 * touch PA0 (pin 48, on the right upper corner) with a piece of metal
73 13 laforge
 * short PA0 and PA1 (pin 48 and 47, next to each other on the right upper corner)
74 12 laforge
75
As soon as the LEDs go off, the SAM-BA mode is working.
76
77
For more information about SAM-BA, please refer to the Atmel documentation on the AT91SAM7S component.
78
79
80
==== Flashing the firmware ====
81
82 4 laforge
to flash the samba image using serial :
83
{{{
84 7 laforge
$ sudo ./sam7 -l /dev/ttyUSB0 --exec set_clock --exec unlock_regions --exec "flash ../openpcd/firmware/main_simtrace.samba"
85 4 laforge
}}}
86
to flash the samba image using libusb :
87 6 laforge
{{{
88
$ sudo ./sam7 --exec set_clock --exec unlock_regions --exec "flash ../openpcd/firmware/main_simtrace.samba"
89 11 laforge
}}}
90
91
if you want to use sam7 multiple times, remove the loaded module after each run:
92
{{{
93
$ sudo rmmod sam_ba
94
}}}
95
96
==== sam7utils for x86 ====
97
98
On x86, sam7utils will be compiled to communicate with the board using POSIX.
99
100
The board should be attached to a node. On ubuntu 10.10, the usb device 03eb:6124 is mapped on /dev/ttyACM0 using the cdc_cam module. If not mapped, use usbserial :
101
{{{
102
$ sudo rmmod usbserial
103
$ sudo modprobe usbserial vendor=0x03EB product=0x6124
104
}}}
105
106
Now replug board. It should map to /dev/ttyUSBx (use dmesg to know which).
107
108
==== sam7utils for amd64 ====
109
110
On amd64, sam7utils will be compiled to communicate with the board using libusb.
111
112
On ubuntu 10.10 & 11.04, the usb device 03eb:6124 is mapped on /dev/ttyACMx using the cdc_cam module.
113
Remove it while the board is plugged, so sam7utils is able to communicate with it (using libusb for 10.10 and serial for 11.04).
114
{{{
115
$ sudo rmmod cdc_acm
116
}}}
117
118
119 1 laforge
=== DFU ===
120 6 laforge
121 9 laforge
The Device Firmware Upgrade (DFU) can be used to replace the SIMtrace payload.
122 6 laforge
123
To get dfu-util:
124
{{{
125 7 laforge
$ sudo apt-get install dfu-util
126 6 laforge
}}}
127 1 laforge
128
To flash the firmware:
129
{{{
130
$ dfu-util -d 16c0:0762 -a0 -D ./main_simtrace.bin -R
131
}}}
132 9 laforge
133 2 laforge
dfu-util should reset the board and use the DFU bootloader. Try the command a second time if it did not work at first.
134
If this still does not work, power up the board while pressing the '''BOOTLOADER''' button.
135
136
== Bugs ==
137 3 laforge
138
Currently there is a bug in the firmware that makes the device fail to enumerate on OSX. We provide an alternative hacked firmware until we have resolved the issue properly.
139 9 laforge
140
== Version History ==
141 10 laforge
 * v0.2 Fixes ATR handling for older SIMcards.
Add picture from clipboard (Maximum size: 48.8 MB)