Open Source GSM Stack in Linux
Open Source GSM Stack in Linux
Tieto
Outline
Introduction Open Source GSM stack Mediatek platform Sciphone Dream G2 2 Porting Linux to new platform HW reverse engineering Executing own code Porting U-Boot Porting Linux 3 Running GSM RF parts GSM RF schematics Description of GSM RF parts DSP reverse engineering Yet to do 4 Summary Marcin Mielczarczyk, Krzysztof Antonowicz Mediateks platform futureGetting the rst Open Source GSM stack in Linux
1
Tieto
Introduction
Dont we already have open source mobile phones?
Tieto
Tieto
OsmocomBB
OsmocomBB (Open Source MObile COMmunication Base Band) Supported phones: Compal/Motorola C11x, C12x, C13x, C14x and C15x Calypso DBB based on ARM7TDMI GSM L1 runs on a mobile phone GSM L2/L3 runs on a PC Its possible to make GSM Voice calls No new phones with Calypso since about 2008
Tieto
OsmocomBB
Tieto
Mediatek platform
Low cost phones based on Mediatek platform Feature phones which are mainly fakes of known brands (Nokla, Sany-Ericssan, sciPHONE) Most popular SoC is MT622x (based on ARM7TDMI) A lot of peripherals included (camera, analog TV, FM transmitter) Available and cheap ($30 - $100) Platform acquired from Analog Devices
Marcin Mielczarczyk, Krzysztof Antonowicz Getting the rst Open Source GSM stack in Linux Tieto
Mediatek platform
ARM7TDMI is not our target, we want to run Linux to have more possibilities. Does Mediatek have something better?
Tieto
Sciphone Dream G2
Sciphone Dream G2 running fake Android Fake of HTC Dream G2 (released before HTC) Running Nucleus RTOS with UI like Android Based on MT6235 SoC (ARM926EJS) Resistive touch screen, WiFi, BT, FM radio, USB, SD/MMC Low cost, starting from $50 Other devices available with MT6235 SoC
Marcin Mielczarczyk, Krzysztof Antonowicz Getting the rst Open Source GSM stack in Linux Tieto
MT6235
MT6235 characteristics: Single core ARM926EJ-S 208MHz Advanced DSP functionality PMU / Touch panel driver intergated SD/MMC and SDIO support Built in USB2.0 USIM support EDGE class 12, GPRS class 12 Highly integrated (DBB and ABB in one chip) Datasheet easily available on the Internet
Marcin Mielczarczyk, Krzysztof Antonowicz Getting the rst Open Source GSM stack in Linux Tieto
How to begin
What do we need, to run Linux on new platform? Datasheet for the SoC Know how to run custom code Debug interface (JTAG, UART) Is cpu architecture already supported by Linux kernel?
Tieto
Finding HW pins
We need to have interface to load binary code to mobile phone Finding JTAG will speed up development a lot, so its worth to spend time on it
Very often not populated on PCB At least 4 pins to nd (TCK, TDO, TDI, TMS)
UART is easier to nd (just 2 pins) and very often available on external connector Use software for that, i.e. JTAG nder:
Built on ATMega32 (3.3V - 5V, 32 GPIOs) Easy to build, even on solderless breadboard Scanning of pins takes couple of seconds
Tieto
Tieto
Tieto
Tieto
SDRAM initialization
MT6235 has 64kB static RAM, where SBL is loaded Even on the same model of phone, peripherals can differ (NAND, SDRAM, keypad, LCD)
Tieto
Porting U-Boot
Getting U-Boot running on new platform is extremely easy (if SoC is based on ARM) Just two drivers are needed to get U-Boot prompt:
UART Timer
Even if you see U-Boot source code for the rst time it shouldnt take more than one day to get it running on new platform Bootloader is a good place to understand how peripherals work (testing basic drivers)
Tieto
static void mt62xx_putc(int portnum, char c) { /* Wait until there is space in the FIFO */ while(!(readw(port[portnum] + MTK_UART_LSR) & UART_L WATCHDOG_RESET(); /* Send the character */ writew(c, port[portnum] + MTK_UART_DR); }
Tieto
static int mt62xx_getc(int portnum) { /* Wait until there is data in the FIFO */ while (!(readl(port[portnum] + MTK_UART_LSR) & UART_ WATCHDOG_RESET(); return readl(port[portnum] + MTK_UART_DR); }
Tieto
Porting Linux
Assumption: Architecture is already supported (i.e. ARM) Linux porting of course takes longer than U-Boot porting To get Linux prompt following drivers are needed:
UART Timer Interrupt controller
Add some constant denitions, generic functions and default conguration Usually it takes one week to get prompt in Linux
Tieto
Timeline
Tieto
Additional hardware
Tieto
Tieto
GSM RF chips
Drivers written in U-Boot for following RF HW:
Murata LMSP33CA-465 - antenna switch RF3159 - dual-mode amplier MT6140 - GSM/GPRS/EDGE RF transceiver BSI - Baseband Serial Interface BPI - Baseband Parallel Interface BFE - Baseband Front End TDMA - Time Division Multiple Access APC - Automatic Power Control
U-Boot command:
rf_tx <arfcn>
Marcin Mielczarczyk, Krzysztof Antonowicz Getting the rst Open Source GSM stack in Linux Tieto
Tieto
DSP in BaseBand ASIC is the biggest secret of manufacturers In MT6235 datasheet there are 20 pages missing (in ARM-DSP interface chapter) Very often this part has no documentation at all
Tieto
Facts about DSP in MT6235: Most probably Analog Devices ADSP-2181 Code for DSP is located in ROM (not downloaded over IDMA) DSP patch unit exists (possibility of potential hack) So far we didnt manage to execute own code on DSP So far we didnt manage to dump existing code on DSP Best approach would be to use DSP as black box
Tieto
Yet to do: Investigate more on DSP (blocking point at the moment) Port OsmocomBB to MTK HW Adopt OsmocomBB to Linux Final result: We can get rst fully open source mobile phone Lots of possibilities (acquiring logs, snifng, etc.)
Tieto
Summary
Fake mobile phones market is really interesting Porting Linux to new platform based on ARM is easy HW/SW reverse engineering takes long time Running own code is most important step Baseband chips are well protected by manufacturers Were on good track to get rst fully open source mobile phone
Tieto
A lot of peripherals from new SoCs are very similar to MT6235 Tons of MTK based phones are cheap and available on the market MTK hardware is very stable!
Marcin Mielczarczyk, Krzysztof Antonowicz Getting the rst Open Source GSM stack in Linux Tieto
Tieto
Questions?
Tieto