blob: cce427cda307d421bcfa9a07929d92b24c65b332 [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 *------------------------------------------------------------------------------*/
Christina Quast4ba4d222015-03-02 16:14:09 +010041// FIXME: Remove:
42#define PR TRACE_DEBUG
Christina Quasta90eefa2015-02-24 17:52:29 +010043
44/** Maximum ucSize in bytes of the smartcard answer to a command.*/
45#define MAX_ANSWER_SIZE 10
46
47/** Maximum ATR ucSize in bytes.*/
48#define MAX_ATR_SIZE 55
Christina Quasta90eefa2015-02-24 17:52:29 +010049/*------------------------------------------------------------------------------
50 * Internal variables
51 *------------------------------------------------------------------------------*/
52/** ISO7816 pins */
53static const Pin pinsISO7816_sniff[] = {PINS_SIM_SNIFF_SIM};
Christina Quast27c643d2015-02-24 19:09:08 +010054static const Pin pins_bus[] = {PINS_BUS_SNIFF};
Christina Quasta90eefa2015-02-24 17:52:29 +010055static const Pin pPwr[] = {
56 /* Enable power converter 4.5-6V to 3.3V; low: off */
57 {SIM_PWEN, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT},
58
Christina Quast27c643d2015-02-24 19:09:08 +010059 /* Enable second power converter: VCC_PHONE to VCC_SIM; high: on */
Christina Quasta90eefa2015-02-24 17:52:29 +010060 {VCC_FWD, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT}
61};
62
Christina Quastb595e7c2015-04-12 13:31:01 +020063static struct Usart_info usart_info = {.base = USART_PHONE, .id = ID_USART_PHONE};
Christina Quaste24b9ac2015-04-10 17:44:49 +020064
Christina Quasta90eefa2015-02-24 17:52:29 +010065/*-----------------------------------------------------------------------------
Christina Quastd2b05f02015-02-25 18:44:24 +010066 * Initialization routine
Christina Quasta90eefa2015-02-24 17:52:29 +010067 *-----------------------------------------------------------------------------*/
Christina Quasta90eefa2015-02-24 17:52:29 +010068
Christina Quast95d66162015-04-09 22:38:47 +020069void Sniffer_configure( void ){
Christina Quast2b8a18b2015-04-12 09:31:36 +020070 TRACE_INFO("Sniffer config\n");
Christina Quast95d66162015-04-09 22:38:47 +020071}
72
73void Sniffer_exit( void ){
Christina Quast2b8a18b2015-04-12 09:31:36 +020074 TRACE_INFO("Sniffer exit\n");
Christina Quast95d66162015-04-09 22:38:47 +020075 USART_SetReceiverEnabled(USART_PHONE, 0);
76}
77
78void Sniffer_init( void )
Christina Quasta90eefa2015-02-24 17:52:29 +010079{
Christina Quast2b8a18b2015-04-12 09:31:36 +020080 TRACE_INFO("Sniffer Init\n");
Christina Quasta90eefa2015-02-24 17:52:29 +010081 /* Configure ISO7816 driver */
82 PIO_Configure( pinsISO7816_sniff, PIO_LISTSIZE( pinsISO7816_sniff ) ) ;
83 PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
Christina Quast95d66162015-04-09 22:38:47 +020084
Christina Quasta90eefa2015-02-24 17:52:29 +010085 PIO_Configure(pPwr, PIO_LISTSIZE( pPwr ));
86
Christina Quastb595e7c2015-04-12 13:31:01 +020087 ISO7816_Init(&usart_info, CLK_SLAVE);
Christina Quasta90eefa2015-02-24 17:52:29 +010088
Christina Quastc0aa7692015-02-25 14:02:01 +010089 USART_SetReceiverEnabled(USART_PHONE, 1);
Christina Quasta90eefa2015-02-24 17:52:29 +010090}
Christina Quastfb524b92015-02-27 13:39:45 +010091
92void Sniffer_run( void )
93{
Christina Quast2b8a18b2015-04-12 09:31:36 +020094 check_data_from_phone();
Christina Quastfb524b92015-02-27 13:39:45 +010095}