blob: 42b36ee341828e38305ad663deb05ed343cefb63 [file] [log] [blame]
Christina Quasta90eefa2015-02-24 17:52:29 +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
Christina Quasta90eefa2015-02-24 17:52:29 +010047/*------------------------------------------------------------------------------
48 * Internal variables
49 *------------------------------------------------------------------------------*/
50/** ISO7816 pins */
51static const Pin pinsISO7816_sniff[] = {PINS_SIM_SNIFF_SIM};
Christina Quast27c643d2015-02-24 19:09:08 +010052static const Pin pins_bus[] = {PINS_BUS_SNIFF};
Christina Quasta90eefa2015-02-24 17:52:29 +010053static const Pin pPwr[] = {
54 /* Enable power converter 4.5-6V to 3.3V; low: off */
55 {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT},
56
Christina Quast27c643d2015-02-24 19:09:08 +010057 /* Enable second power converter: VCC_PHONE to VCC_SIM; high: on */
Christina Quasta90eefa2015-02-24 17:52:29 +010058 {VCC_FWD, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}
59};
60
Christina Quastec9c09e2015-04-16 10:45:39 +020061static struct Usart_info usart_info = {.base = USART_PHONE, .id = ID_USART_PHONE, .state = USART_RCV};
Christina Quaste24b9ac2015-04-10 17:44:49 +020062
Christina Quasta90eefa2015-02-24 17:52:29 +010063/*-----------------------------------------------------------------------------
Christina Quastd2b05f02015-02-25 18:44:24 +010064 * Initialization routine
Christina Quasta90eefa2015-02-24 17:52:29 +010065 *-----------------------------------------------------------------------------*/
Christina Quasta90eefa2015-02-24 17:52:29 +010066
Christina Quast95d66162015-04-09 22:38:47 +020067void Sniffer_configure( void ){
Christina Quast2b8a18b2015-04-12 09:31:36 +020068 TRACE_INFO("Sniffer config\n");
Christina Quast95d66162015-04-09 22:38:47 +020069}
70
71void Sniffer_exit( void ){
Christina Quast2b8a18b2015-04-12 09:31:36 +020072 TRACE_INFO("Sniffer exit\n");
Christina Quast911bf262015-04-13 22:39:11 +020073 USART_DisableIt(USART_PHONE, US_IER_RXRDY);
74 NVIC_DisableIRQ(USART1_IRQn);
Christina Quast95d66162015-04-09 22:38:47 +020075 USART_SetReceiverEnabled(USART_PHONE, 0);
76}
Christina Quast95d66162015-04-09 22:38:47 +020077void Sniffer_init( void )
Christina Quasta90eefa2015-02-24 17:52:29 +010078{
Christina Quast2b8a18b2015-04-12 09:31:36 +020079 TRACE_INFO("Sniffer Init\n");
Christina Quasta90eefa2015-02-24 17:52:29 +010080 /* Configure ISO7816 driver */
81 PIO_Configure( pinsISO7816_sniff, PIO_LISTSIZE( pinsISO7816_sniff ) ) ;
82 PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
Christina Quast95d66162015-04-09 22:38:47 +020083
Christina Quasta90eefa2015-02-24 17:52:29 +010084 PIO_Configure(pPwr, PIO_LISTSIZE( pPwr ));
85
Christina Quastb595e7c2015-04-12 13:31:01 +020086 ISO7816_Init(&usart_info, CLK_SLAVE);
Christina Quasta90eefa2015-02-24 17:52:29 +010087
Christina Quastc0aa7692015-02-25 14:02:01 +010088 USART_SetReceiverEnabled(USART_PHONE, 1);
Christina Quast911bf262015-04-13 22:39:11 +020089 USART_EnableIt(USART_PHONE, US_IER_RXRDY);
90 NVIC_EnableIRQ(USART1_IRQn);
Christina Quasta90eefa2015-02-24 17:52:29 +010091}
Christina Quastfb524b92015-02-27 13:39:45 +010092
93void Sniffer_run( void )
94{
Christina Quast2b8a18b2015-04-12 09:31:36 +020095 check_data_from_phone();
Christina Quastfb524b92015-02-27 13:39:45 +010096}