blob: f5ac456a2d7945000b836704a2a53fe44d09c83c [file] [log] [blame]
Christina Quast1edf3502015-02-27 13:33:52 +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
39static const Pin pins_bus[] = {PINS_BUS_DEFAULT};
40
41
42void MITM_init( void )
43{
Christina Quast39408462015-04-04 19:54:22 +020044 CCID_init();
45 Phone_Master_Init();
46
47 return;
Christina Quast1edf3502015-02-27 13:33:52 +010048 /* Configure ISO7816 driver */
49// FIXME: Phone and SIM card side:
50// PIO_Configure( pinsISO7816_sniff, PIO_LISTSIZE( pinsISO7816_sniff ) ) ;
Christina Quast39408462015-04-04 19:54:22 +020051/*
Christina Quast1edf3502015-02-27 13:33:52 +010052 PIO_Configure( pins_bus, PIO_LISTSIZE( pins_bus) ) ;
53 PIO_Configure(pPwr, PIO_LISTSIZE( pPwr ));
54
55// FIXME: phone is clk master, sim is clk slave
56 _ISO7816_Init();
57
58 USART_SetReceiverEnabled(USART_SIM, 1);
59 USART_SetTransmitterEnabled(USART_SIM, 1);
60 USART_SetReceiverEnabled(USART_PHONE, 1);
61 USART_SetTransmitterEnabled(USART_PHONE, 1);
Christina Quast39408462015-04-04 19:54:22 +020062*/
Christina Quast1edf3502015-02-27 13:33:52 +010063}
64
65
66void MITM_run( void )
67{
Christina Quast39408462015-04-04 19:54:22 +020068 Phone_run();
69 CCID_SmartCardRequest();
Christina Quast1edf3502015-02-27 13:33:52 +010070}