Project

General

Profile

SIMtrace Firmware » History » Revision 18

Revision 17 (tsaitgaist, 02/19/2016 10:48 PM) → Revision 18/28 (laforge, 02/19/2016 10:48 PM)

= SIMtrace Firmware = 

 The Firmware for the AT91SAM7S device was written by reusing a lot of the code for the [http://www.openpcd.org/ OpenPCD] 
 RFID reader.   

 There is a {{{simtrace}}} Makefile target in the git://git.gnumonks.org/openpcd.git repository containing the latest firmware code. 

 Eventually, the OS part of OpenPCD/OpenPICC/SIMtrace will be separated.    At that point, the firmware source can become 
 part of simtrace.git 

 == Building the firmware == 

 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]. 

 {{{ 
 git clone git://git.gnumonks.org/openpcd.git 
 cd openpcd/firmware 
 make -f Makefile.dfu BOARD=SIMTRACE 
 make BOARD=SIMTRACE DEBUG=1 TARGET=main_simtrace 
 cat dfu.bin main_simtrace.bin > main_simtrace.samba 
 cd ../.. 
 }}} 

 === Firmware parts === 

 The firmware build process creates two images: 
  * dfu.bin -- the sam7dfu 2nd level bootloader. It implements the USB DFU (Device Firmware Upgrade) profile. 
  * main_simtrace.bin -- the actual simtrace program. To be loaded via DFU, using [http://dfu-util.gnumonks.org/ dfu-util]. 
  * main_simtrace.samba -- [http://www.openpcd.org/Sam7dfu sam7dfu] + simtrace image. to be loaded via SAM-BA, using sam7utils (see below). 

 == Flashing the firmware == 

 There are two ways to flash the firmware: 
  * DFU: over USB and simple. 
  * SAM-BA: for AT91SAM7S without DFU installed, or when DFU fails. 

 === DFU === 

 SIMtrace comes with the Device Firmware Upgrade (DFU) already installed. 
 To install it on a new AT91SAM7S, use the SAM-BA procedure below. 
 DFU can be used to replace the SIMtrace payload. 

 To get dfu-util: 
 {{{ 
 sudo apt-get install dfu-util 
 }}} 

 To flash the firmware: 
 {{{ 
 sudo dfu-util -d 16c0:0762 -a0 -D ./main_simtrace.bin -R 
 }}} 

 dfu-util should reset the board and use the DFU bootloader. 
 Try the command a second time if it did not work at first. 
 If this still does not work, power up the board while pressing the '''BOOTLOADER''' button. 

 === SAM-BA === 

 The SAM-BA mode is provided by the AT91SAM7S. 
 This can be used at any time, even if the firmware bricks the device. 
 To flash the new firmware, sam7utils is used. 

 ==== sam7utils ==== 

 SAM-BA images contain a full NOR flash image.    They can be used in case the sam7dfu bootloader was corrupted, 
 and can be installed either using the '''sam7''' program released by Atmel, or via JTAG based flashing. 

 Installing firmware using SAM-BA is a bit cumbersome and requires strict adherence to a sequence of USB cable 
 plugging/unplugging and jumper setting, waiting, jumper removal, etc. 


 sam7utils will be used to flash the '''main_simtrace.samba''' image over SAM-BA. 
 {{{ 
 sudo aptitude install libreadline-dev libusb-dev 
 wget http://www.openpcd.org/dl/sam7utils-0.2.1-bm.tar.bz2 
 tar xf sam7utils-*.tar.bz2 
 cd sam7utils 
 ./configure --prefix=/usr/local 
 make AM_CFLAGS="" 
 }}} 

 ==== Entering the SAM-BA mode ==== 

 The first time you flash the device, you will have to use the SAM-BA method using the main_simtrace.samba image. 

 To put the board into SAM-BA mode, use the following steps: 

  * unplug the board 
  * short TEST to VCC (3.3V) pin using a jumper. leave PA0,PA1,PA2 unconnected. 
  * power up the board 
  * wait 20s 
  * unplug board 
  * remove jumper 

 [[Image(shortTEST.jpg)]] 

 Now when the board is attached to USB, lsusb should show : 
 {{{ 
 Bus 002 Device 015: ID 03eb:6124 Atmel Corp. at91sam SAMBA bootloader 
 }}} 

 '''note for v1.0p boards''': sometimes the SAM-BA mode is not working. This is the case 
 if the 2 LEDs are on when powering up the board while VCC and TEST is shorted. The 
 reason in unknown, but there are several methods to correct this: 

  * press the RESET button while powering up 
  * touch PA0 (pin 48, on the right upper corner) with a piece of metal 
  * short PA0 and PA1 (pin 48 and 47, next to each other on the right upper corner) 

 As soon as the LEDs go off, the SAM-BA mode is working. 

 For more information about SAM-BA, please refer to the Atmel documentation on the AT91SAM7S component. 

 ==== Flashing the firmware with sam7 ==== 

 You can flash with sam7utils using libusb or POSIX. 

 It may happen that sam7 loads a sam_ba module at the end. 
 If you want to use sam7 multiple times, remove the loaded module after each run: 
 {{{ 
 sudo rmmod sam_ba 
 }}} 

 ===== flashing using libusb ===== 

 sam7utils tries to compile with libusb, so to access the device directly. 
 If libusb is not present, you must flash using serial. 

 On ubuntu the usb device 03eb:6124 is mapped on /dev/ttyACMx using the cdc_cam module. 
 Remove it while the board is plugged, so sam7utils is able to communicate with it. 
 {{{ 
 sudo rmmod cdc_acm 
 }}} 

 to flash the samba image using libusb : 
 {{{ 
 sudo ./sam7 --exec set_clock --exec unlock_regions --exec "flash ../openpcd/firmware/main_simtrace.samba" 
 }}} 

 ===== using POSIX ===== 

 If libusb is not present, sam7utils will be compiled to communicate with the board using POSIX. 

 If the device is not mapped to a node, use usbserial : 
 {{{ 
 sudo rmmod usbserial 
 sudo modprobe usbserial vendor=0x03EB product=0x6124 
 }}} 

 to flash the samba image using serial : 
 {{{ 
 sudo ./sam7 -l /dev/ttyUSB0 --exec set_clock --exec unlock_regions --exec "flash ../openpcd/firmware/main_simtrace.samba" 
 }}} 

 == Bugs == 

 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. 

 == Version History == 
  * v0.2 Fixes ATR handling for older SIMcards. 
  * v0.4 fixes wrong Fi/Di computation in some cases 
  * v0.5 fixes SIMtrace crashes, lost bytes, WDT expiration and many other issues
Add picture from clipboard (Maximum size: 48.8 MB)