blob: 96e373bcb724d8ef93b68cee214bbdf4be7c7aa9 [file] [log] [blame]
Christina Quast32906bb2015-02-24 11:35:19 +01001/* ----------------------------------------------------------------------------
2 * ATMEL Microcontroller Software Support
3 * ----------------------------------------------------------------------------
4 * Copyright (c) 2009, Atmel Corporation
5 *
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * - Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the disclaimer below.
13 *
14 * Atmel's name may not be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 * ----------------------------------------------------------------------------
28 */
29
30/*------------------------------------------------------------------------------
31 * Headers
32 *------------------------------------------------------------------------------*/
33
34#include "board.h"
35
36#include <string.h>
37
38/*------------------------------------------------------------------------------
39 * Internal definitions
40 *------------------------------------------------------------------------------*/
41
42/** Maximum ucSize in bytes of the smartcard answer to a command.*/
43#define MAX_ANSWER_SIZE 10
44
45/** Maximum ATR ucSize in bytes.*/
46#define MAX_ATR_SIZE 55
47
48/** USB states */
49/// Use for power management
50#define STATE_IDLE 0
51/// The USB device is in suspend state
52#define STATE_SUSPEND 4
53/// The USB device is in resume state
54#define STATE_RESUME 5
55
Christina Quast578daaa2015-03-13 23:46:01 +010056/* WTX (Wait time extension):
57* R-block PCB begins with (msb) 10 , ends with 000011 for WTX req, 100011 for WTX resp
58*
59* The standard says:
60* Rule 3 β€” If the card requires more than BWT to process the previously received I-block, it transmits S(WTX
61* request) where INF conveys one byte encoding an integer multiplier of the BWT value. The interface device
62* shall acknowledge by S(WTX response) with the same INF.
63* The time allocated starts at the leading edge of the last character of S(WTX response).
64*/
Christina Quasta4d1d162015-04-06 20:41:50 +020065// FIXME: Two times the same name for the define, which one is right?
66//#define WTX_req 0b10000011
67//#define WTX_req 0b10100011
Christina Quast578daaa2015-03-13 23:46:01 +010068// Alternatively:
69/* For T = 0 Protocol: The firmware on receiving the NULL (0x60) Procedure byte from the card, notifies
70it to the driver using the RDR_to_PC_DataBlock response. During this period, the reception of bytes
71from the smart card is still in progress and hence the device cannot indefinitely wait for IN tokens on
72the USB bulk-in endpoint. Hence, it is required of the driver to readily supply β€˜IN’ tokens on the USB
73bulk-in endpoint. On failure to do so, some of the wait time extension responses, will not be queued to
74the driver.
75*/
76
Christina Quast32906bb2015-02-24 11:35:19 +010077/*------------------------------------------------------------------------------
78 * Internal variables
79 *------------------------------------------------------------------------------*/
80/** USB state: suspend, resume, idle */
81unsigned char USBState = STATE_IDLE;
82
83/** ISO7816 pins */
84static const Pin pinsISO7816_PHONE[] = {PINS_ISO7816_PHONE};
Christina Quast8043fdd2015-03-04 18:45:30 +010085/** Bus switch pins */
Christina Quast30418542015-04-05 10:08:06 +020086static const Pin pins_bus[] = {PINS_BUS_DEFAULT};
Christina Quast4bcc0232015-03-24 21:59:32 +010087// FIXME: temporary enable bus switch
Christina Quast30418542015-04-05 10:08:06 +020088//static const Pin pins_bus[] = {PINS_BUS_SNIFF};
Christina Quast4bcc0232015-03-24 21:59:32 +010089
Christina Quast32906bb2015-02-24 11:35:19 +010090/** ISO7816 RST pin */
91static const Pin pinIso7816RstMC = PIN_ISO7816_RST_PHONE;
92static uint8_t sim_inserted = 0;
93
94static const Pin pPwr[] = {
95 /* Enable power converter 4.5-6V to 3.3V; low: off */
96 {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT},
97
98 /* Enable second power converter: VCC_PHONE to VCC_SIM; high: off */
99 {VCC_FWD, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}
100};
101
102
Christina Quast8e5381c2015-04-03 11:37:17 +0200103static const Pin pinPhoneRST = PIN_ISO7816_RST_PHONE;
104
105#define PR TRACE_INFO
Christina Quast32906bb2015-02-24 11:35:19 +0100106
107/* ===================================================*/
108/* Taken from iso7816_4.c */
109/* ===================================================*/
110/** Flip flop for send and receive char */
111#define USART_SEND 0
112#define USART_RCV 1
Christina Quastce296b92015-03-18 18:41:19 +0100113
Christina Quast90393b32015-04-07 21:15:12 +0200114enum states{
115 NONE = 9,
116 RST_RCVD = 10,
117 WAIT_CMD_PHONE = 11,
118 WAIT_CMD_PC = 12,
119 WAIT_ATR = 13,
120};
121
Christina Quast32906bb2015-02-24 11:35:19 +0100122/*-----------------------------------------------------------------------------
123 * Internal variables
124 *-----------------------------------------------------------------------------*/
125/** Variable for state of send and receive froom USART */
126static uint8_t StateUsartGlobal = USART_RCV;
Christina Quast32906bb2015-02-24 11:35:19 +0100127
Christina Quast90393b32015-04-07 21:15:12 +0200128static enum states state;
Christina Quastc0aa7692015-02-25 14:02:01 +0100129extern uint8_t rcvdChar;
Christina Quast32906bb2015-02-24 11:35:19 +0100130
Christina Quast0ca83902015-03-22 19:05:23 +0100131extern volatile uint8_t timeout_occured;
132
Christina Quast32906bb2015-02-24 11:35:19 +0100133/*-----------------------------------------------------------------------------
134 * Interrupt routines
135 *-----------------------------------------------------------------------------*/
Christina Quast578daaa2015-03-13 23:46:01 +0100136#define RESET 'R'
Christina Quast32906bb2015-02-24 11:35:19 +0100137static void ISR_PhoneRST( const Pin *pPin)
138{
Christina Quastd3630cc2015-04-03 11:38:24 +0200139 printf("+++ Int!! %x\n\r", pinPhoneRST.pio->PIO_ISR);
140 if ( ((pinPhoneRST.pio->PIO_ISR & pinPhoneRST.mask) != 0) )
141 {
142 if(PIO_Get( &pinPhoneRST ) == 0) {
143 printf(" 0 ");
144 } else {
145 printf(" 1 ");
146 }
147 }
Christina Quast4bcc0232015-03-24 21:59:32 +0100148 state = RST_RCVD;
149
Christina Quastc0aa7692015-02-25 14:02:01 +0100150 // FIXME: What to do on reset?
Christina Quastce296b92015-03-18 18:41:19 +0100151 // FIXME: It seems like the phone is constantly sending a lot of these RSTs
Christina Quastbdaa9542015-04-06 00:52:08 +0200152 PIO_DisableIt( &pinPhoneRST ) ;
Christina Quast32906bb2015-02-24 11:35:19 +0100153}
154
155static void Config_PhoneRST_IrqHandler()
156{
157 PIO_Configure( &pinPhoneRST, 1);
158// PIO_Configure( &pinPhoneClk, 1);
159 PIO_ConfigureIt( &pinPhoneRST, ISR_PhoneRST ) ;
160// PIO_ConfigureIt( &pinPhoneClk, ISR_PhoneRST ) ;
161 PIO_EnableIt( &pinPhoneRST ) ;
162// PIO_EnableIt( &pinPhoneClk ) ;
163 NVIC_EnableIRQ( PIOA_IRQn );
164}
165
166/**
167 * Get a character from ISO7816
168 * \param pCharToReceive Pointer for store the received char
169 * \return 0: if timeout else status of US_CSR
170 */
171/* FIXME: This code is taken from cciddriver.c
172 --> Reuse the code!!! */
173uint32_t _ISO7816_GetChar( uint8_t *pCharToReceive )
174{
175 uint32_t status;
176 uint32_t timeout=0;
177
178 TRACE_DEBUG("--");
179
180 if( StateUsartGlobal == USART_SEND ) {
181 while((USART_PHONE->US_CSR & US_CSR_TXEMPTY) == 0) {}
182 USART_PHONE->US_CR = US_CR_RSTSTA | US_CR_RSTIT | US_CR_RSTNACK;
183 StateUsartGlobal = USART_RCV;
184 }
185
186 /* Wait USART ready for reception */
187 while( ((USART_PHONE->US_CSR & US_CSR_RXRDY) == 0) ) {
188 if(timeout++ > 12000 * (BOARD_MCK/1000000)) {
189 TRACE_DEBUG("TimeOut\n\r");
190 return( 0 );
191 }
192 }
193
194 /* At least one complete character has been received and US_RHR has not yet been read. */
195
196 /* Get a char */
197 *pCharToReceive = ((USART_PHONE->US_RHR) & 0xFF);
198
199 status = (USART_PHONE->US_CSR&(US_CSR_OVRE|US_CSR_FRAME|
200 US_CSR_PARE|US_CSR_TIMEOUT|US_CSR_NACK|
201 (1<<10)));
202
203 if (status != 0 ) {
204 TRACE_DEBUG("R:0x%X\n\r", status);
205 TRACE_DEBUG("R:0x%X\n\r", USART_PHONE->US_CSR);
206 TRACE_DEBUG("Nb:0x%X\n\r", USART_PHONE->US_NER );
207 USART_PHONE->US_CR = US_CR_RSTSTA;
208 }
209
210 /* Return status */
211 return( status );
212}
213
214/**
215 * Send a char to ISO7816
216 * \param CharToSend char to be send
217 * \return status of US_CSR
218 */
219uint32_t _ISO7816_SendChar( uint8_t CharToSend )
220{
221 uint32_t status;
222
223 TRACE_DEBUG("********** Send char: %c (0x%X)\n\r", CharToSend, CharToSend);
224
225 if( StateUsartGlobal == USART_RCV ) {
226 USART_PHONE->US_CR = US_CR_RSTSTA | US_CR_RSTIT | US_CR_RSTNACK;
227 StateUsartGlobal = USART_SEND;
228 }
229
230 /* Wait USART ready for transmit */
231 while((USART_PHONE->US_CSR & US_CSR_TXRDY) == 0) {}
232 /* There is no character in the US_THR */
233
234 /* Transmit a char */
235 USART_PHONE->US_THR = CharToSend;
236
237 status = (USART_PHONE->US_CSR&(US_CSR_OVRE|US_CSR_FRAME|
238 US_CSR_PARE|US_CSR_TIMEOUT|US_CSR_NACK|
239 (1<<10)));
240
241 if (status != 0 ) {
Christina Quastc0aa7692015-02-25 14:02:01 +0100242 TRACE_DEBUG("******* status: 0x%X (Overrun: %lu, NACK: %lu, Timeout: %lu, underrun: %lu)\n\r",
Christina Quast32906bb2015-02-24 11:35:19 +0100243 status, ((status & US_CSR_OVRE)>> 5), ((status & US_CSR_NACK) >> 13),
244 ((status & US_CSR_TIMEOUT) >> 8), ((status & (1 << 10)) >> 10));
245
246 TRACE_DEBUG("E (USART CSR reg):0x%X\n\r", USART_PHONE->US_CSR);
247 TRACE_DEBUG("Nb (Number of errors):0x%X\n\r", USART_PHONE->US_NER );
248 USART_PHONE->US_CR = US_CR_RSTSTA;
249 }
250
251 /* Return status */
252 return( status );
253}
254
Christina Quast32906bb2015-02-24 11:35:19 +0100255void Phone_Master_Init( void ) {
256
257 PIO_Configure( pinsISO7816_PHONE, PIO_LISTSIZE( pinsISO7816_PHONE ) ) ;
Christina Quast8043fdd2015-03-04 18:45:30 +0100258 PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
259
Christina Quast32906bb2015-02-24 11:35:19 +0100260 Config_PhoneRST_IrqHandler();
Christina Quast32906bb2015-02-24 11:35:19 +0100261
Christina Quastc0aa7692015-02-25 14:02:01 +0100262 _ISO7816_Init();
263
264 USART_SetTransmitterEnabled(USART_PHONE, 1);
265 USART_SetReceiverEnabled(USART_PHONE, 1);
Christina Quastfb524b92015-02-27 13:39:45 +0100266
267 /* Configure ISO7816 driver */
268 // FIXME: PIO_Configure(pPwr, PIO_LISTSIZE( pPwr ));
269
Christina Quastce296b92015-03-18 18:41:19 +0100270 state = NONE;
Christina Quastfb524b92015-02-27 13:39:45 +0100271
272
Christina Quast32906bb2015-02-24 11:35:19 +0100273// FIXME: Or do I need to call VBUS_CONFIGURE() here instead, which will call USBD_Connect() later?
274// USBD_Connect();
275// FIXME: USB clock? USB PMC?
276// NVIC_EnableIRQ( UDP_IRQn );
277
Christina Quast578daaa2015-03-13 23:46:01 +0100278 USART_EnableIt( USART_PHONE, US_IER_RXRDY) ;
Christina Quast32906bb2015-02-24 11:35:19 +0100279
280 // FIXME: At some point USBD_IrqHandler() should get called and set USBD_STATE_CONFIGURED
281 /* while (USBD_GetState() < USBD_STATE_CONFIGURED) {
282 int i = 1;
283 if ((i%10000) == 0) {
284 TRACE_DEBUG("%d: USB State: %x\n\r", i, USBD_GetState());
285 }
286 i++;
287 }
288*/
289
Christina Quast0ca83902015-03-22 19:05:23 +0100290 Timer_Init();
Christina Quast32906bb2015-02-24 11:35:19 +0100291}
Christina Quastfb524b92015-02-27 13:39:45 +0100292
Christina Quastce296b92015-03-18 18:41:19 +0100293void send_ATR(uint8_t *ATR, uint8_t status, uint32_t transferred, uint32_t remaining)
Christina Quast578daaa2015-03-13 23:46:01 +0100294{
Christina Quast2f27c7c2015-04-06 20:46:40 +0200295 uint32_t i;
Christina Quast14fbf9c2015-04-06 00:36:12 +0200296 PR("Send %x %x .. %x (tr: %d, st: %x)", ATR[0], ATR[1], ATR[transferred-1], transferred, status);
Christina Quastce296b92015-03-18 18:41:19 +0100297 for ( i = 0; i < transferred; i++ ) {
Christina Quast578daaa2015-03-13 23:46:01 +0100298 _ISO7816_SendChar(*(ATR++));
299 }
Christina Quastce296b92015-03-18 18:41:19 +0100300 state = WAIT_CMD_PHONE;
Christina Quastbdaa9542015-04-06 00:52:08 +0200301 PIO_EnableIt( &pinPhoneRST ) ;
Christina Quast578daaa2015-03-13 23:46:01 +0100302}
303
Christina Quastce296b92015-03-18 18:41:19 +0100304void sendResponse( uint8_t *pArg, uint8_t status, uint32_t transferred, uint32_t remaining)
Christina Quast578daaa2015-03-13 23:46:01 +0100305{
Christina Quast2f27c7c2015-04-06 20:46:40 +0200306 uint32_t i;
Christina Quast1d80ef22015-04-03 11:39:38 +0200307 PR("sendResp, stat: %X, trnsf: %x, rem: %x\n\r", status, transferred, remaining);
308 PR("Resp: %x %x %x .. %x", pArg[0], pArg[1], pArg[2], pArg[transferred-1]);
Christina Quast578daaa2015-03-13 23:46:01 +0100309
Christina Quastce296b92015-03-18 18:41:19 +0100310 for ( i = 0; i < transferred; i++ ) {
311 _ISO7816_SendChar(*(pArg++));
Christina Quast578daaa2015-03-13 23:46:01 +0100312 }
Christina Quast4bcc0232015-03-24 21:59:32 +0100313/*
314 if (*(pArg-1) == 0x8A) {
315 for (i=0; i<20000; i++) ;
316 _ISO7816_SendChar(0x90);
317 _ISO7816_SendChar(0x00);
318 }
319*/
Christina Quastce296b92015-03-18 18:41:19 +0100320 state = WAIT_CMD_PHONE;
Christina Quast578daaa2015-03-13 23:46:01 +0100321}
322
Christina Quast578daaa2015-03-13 23:46:01 +0100323extern ring_buffer buf;
324#define MAX_MSG_LEN 64
Christina Quastce296b92015-03-18 18:41:19 +0100325
326void wait_for_response(uint8_t pBuffer[]) {
327 int ret = 0;
328// uint8_t msg[] = {0xa0, 0xa4, 0x0, 0x0, 0x2};
329 if (rcvdChar != 0) {
330 printf(" rr ");
331 /* DATA_IN for host side is data_out for simtrace side */
332 /* FIXME: Performancewise sending a USB packet for every byte is a disaster */
Christina Quaste90dece2015-04-03 11:40:22 +0200333 ret = USBD_Write( PHONE_DATAIN, buf.buf, BUFLEN, 0, 0 );
334 //USBD_Write( PHONE_DATAIN, msg, BUFLEN, 0, 0 );
Christina Quast0ca83902015-03-22 19:05:23 +0100335 PR("b:%x %x %x %x %x.\n\r", buf.buf[0], buf.buf[1],buf.buf[2], buf.buf[3], buf.buf[4]);
Christina Quastce296b92015-03-18 18:41:19 +0100336
337 rcvdChar = 0;
Christina Quast4bcc0232015-03-24 21:59:32 +0100338 } else if (timeout_occured && buf.idx != 0) {
Christina Quast0ca83902015-03-22 19:05:23 +0100339 printf(" to ");
Christina Quaste90dece2015-04-03 11:40:22 +0200340 ret = USBD_Write( PHONE_DATAIN, buf.buf, buf.idx, 0, 0 );
Christina Quast0ca83902015-03-22 19:05:23 +0100341 timeout_occured = 0;
342 buf.idx = 0;
343 rcvdChar = 0;
344 PR("b:%x %x %x %x %x.\n\r", buf.buf[0], buf.buf[1],buf.buf[2], buf.buf[3], buf.buf[4]);
345 } else {
Christina Quast0ca83902015-03-22 19:05:23 +0100346 return;
347 }
Christina Quaste90dece2015-04-03 11:40:22 +0200348 if ((ret = USBD_Read(PHONE_DATAOUT, pBuffer, MAX_MSG_LEN,
Christina Quast0ca83902015-03-22 19:05:23 +0100349 (TransferCallback)&sendResponse, pBuffer)) == USBD_STATUS_SUCCESS) {
Christina Quast1d80ef22015-04-03 11:39:38 +0200350 PR("wait_rsp\n\r");
Christina Quast0ca83902015-03-22 19:05:23 +0100351// state = WAIT_CMD_PC;
352 buf.idx = 0;
353 TC0_Counter_Reset();
354 } else {
Christina Quast1d80ef22015-04-03 11:39:38 +0200355 PR("USB Err: %X", ret);
Christina Quast0ca83902015-03-22 19:05:23 +0100356 return;
Christina Quastce296b92015-03-18 18:41:19 +0100357 }
358}
359
360// Sniffed Phone to SIM card communication:
361// phone > sim : RST
362// phone < sim : ATR
363// phone > sim : A0 A4 00 00 02 (Select File)
364// phone < sim : A4 (INS repeated)
365// phone > sim : 7F 02 (= ??)
366// phone < sim : 9F 16 (9F: success, can deliver 0x16 (=22) byte)
367// phone > sim : ?? (A0 C0 00 00 16)
368// phone < sim : C0 (INS repeated)
369// phone < sim : 00 00 00 00 7F 20 02 00 00 00 00 00 09 91 00 17 04 00 83 8A (data of length 22 -2)
370// phone <? sim : 90 00 (OK, everything went fine)
371// phone ? sim : 00 (??)
Christina Quast578daaa2015-03-13 23:46:01 +0100372
Christina Quastfb524b92015-02-27 13:39:45 +0100373void Phone_run( void )
374{
Christina Quast578daaa2015-03-13 23:46:01 +0100375 int ret;
376 uint8_t pBuffer[MAX_MSG_LEN];
Christina Quastce296b92015-03-18 18:41:19 +0100377 int msg = RESET;
378// FIXME: remove:
379// uint8_t ATR[] = {0x3B, 0x9A, 0x94, 0x00, 0x92, 0x02, 0x75, 0x93, 0x11, 0x00, 0x01, 0x02, 0x02, 0x19};
380// send_ATR(ATR, (sizeof(ATR)/sizeof(ATR[0])));
Christina Quastce296b92015-03-18 18:41:19 +0100381 switch (state) {
382 case RST_RCVD:
Christina Quast6355ece2015-04-04 10:15:38 +0200383 if ((ret = USBD_Write( PHONE_INT, &msg, 1, 0, 0 )) != USBD_STATUS_SUCCESS) {
384 PR("USB Error: %X", ret);
385 }
Christina Quaste90dece2015-04-03 11:40:22 +0200386 //buf.idx = 0;
387 //rcvdChar = 0;
388// TC0_Counter_Reset();
Christina Quastce296b92015-03-18 18:41:19 +0100389 // send_ATR sets state to WAIT_CMD
Christina Quaste90dece2015-04-03 11:40:22 +0200390 if ((ret = USBD_Read(PHONE_DATAOUT, pBuffer, MAX_MSG_LEN, (TransferCallback)&send_ATR, pBuffer)) == USBD_STATUS_SUCCESS) {
391 PR("Reading started sucessfully (ATR)");
Christina Quastce296b92015-03-18 18:41:19 +0100392 state = WAIT_ATR;
393 } else {
Christina Quast1d80ef22015-04-03 11:39:38 +0200394 // PR("USB Error: %X", ret);
Christina Quastce296b92015-03-18 18:41:19 +0100395//FIXME: state = ERR;
396 }
397 break;
398 case WAIT_CMD_PHONE:
Christina Quast0ca83902015-03-22 19:05:23 +0100399// FIXME: TC0_Counter_Reset();
Christina Quastce296b92015-03-18 18:41:19 +0100400 wait_for_response(pBuffer);
401 break;
Christina Quast0ca83902015-03-22 19:05:23 +0100402 case NONE:
403 break;
Christina Quastce296b92015-03-18 18:41:19 +0100404 default:
Christina Quast1d80ef22015-04-03 11:39:38 +0200405// PR(":(");
Christina Quastce296b92015-03-18 18:41:19 +0100406 break;
Christina Quast578daaa2015-03-13 23:46:01 +0100407 }
408
Christina Quastfb524b92015-02-27 13:39:45 +0100409 // FIXME: Function Phone_run not implemented yet
410
411 /* Send and receive chars */
412 // ISO7816_GetChar(&rcv_char);
413 // ISO7816_SendChar(char_to_send);
414}