summaryrefslogtreecommitdiff
path: root/firmware/src/simtrace/main_simtrace.c
blob: 733f06012b3eb200e6a17e2c4a35c023f2cfd495 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* OpenPICC Main Program 
 * (C) 2006 by Harald Welte <hwelte@hmw-consulting.de>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by 
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */


#include <errno.h>
#include <include/lib_AT91SAM7.h>
#include <include/openpcd.h>
#include <os/dbgu.h>
#include <os/led.h>
#include <os/pcd_enumerate.h>
#include <os/usb_handler.h>
#include "../openpcd.h"
#include "../simtrace.h"
#include <os/main.h>
#include <os/pio_irq.h>

#include <simtrace/tc_etu.h>
#include <simtrace/iso7816_uart.h>
#include <simtrace/sim_switch.h>

enum simtrace_md {
	SIMTRACE_MD_OFF,
	SIMTRACE_MD_SNIFFER,
	SIMTRACE_MD_MITM,
};

#define UART1_PINS (SIMTRACE_PIO_nRST_PH |		\
		    SIMTRACE_PIO_CLK_PH |		\
		    SIMTRACE_PIO_CLK_PH_T |		\
		    SIMTRACE_PIO_IO_PH_RX |		\
		    SIMTRACE_PIO_IO_PH_TX)

#define UART0_PINS (SIMTRACE_PIO_nRST |			\
		    SIMTRACE_PIO_CLK |			\
		    SIMTRACE_PIO_CLK_T |		\
		    SIMTRACE_PIO_IO |			\
		    SIMTRACE_PIO_IO_T)

static void simtrace_set_mode(enum simtrace_md mode)
{
	switch (mode) {
	case SIMTRACE_MD_SNIFFER:
		DEBUGPCR("MODE: SNIFFER\n");

		/* switch UART1 pins to input, no pull-up */
		AT91F_PIO_CfgInput(AT91C_BASE_PIOA, UART1_PINS);
		AT91F_PIO_CfgPullupDis(AT91C_BASE_PIOA, UART1_PINS);

		/* switch VCC_SIM pin into output mode, as in the first
		 * generation prototype we use it directly to supply Vcc
		 * to the SIM */

		/* pin unused in v1.0(p) and v1.1p */
		AT91F_PIO_CfgOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_VCC_SIM);
		AT91F_PIO_SetOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_VCC_SIM);
		/* for v1.0(p) and v1.1p, VCC_SIM can either be powered by
		 * VCC_PHONE using SIM_PWRFWD, or by the LDO using
		 * SIM_PWREN. they should be set exclusive. per default
		 * use VCC_PHONE */
		AT91F_PIO_CfgOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_SIM_PWRFWD);
		AT91F_PIO_SetOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_SIM_PWRFWD);
		AT91F_PIO_CfgOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_SIM_PWREN);
		AT91F_PIO_ClearOutput(AT91C_BASE_PIOA, SIMTRACE_PIO_SIM_PWREN);

		/* switch UART0 pins to 'ISO7816 card mode' */
		AT91F_PIO_CfgInput(AT91C_BASE_PIOA, UART0_PINS);
		AT91F_PIO_CfgPullupDis(AT91C_BASE_PIOA, UART0_PINS);
		AT91F_PIO_CfgPeriph(AT91C_BASE_PIOA, SIMTRACE_PIO_IO, SIMTRACE_PIO_CLK);
		sim_switch_mode(1, 1);
		break;
	case SIMTRACE_MD_MITM:
		DEBUGPCR("MODE: MITM\n");
		/* switch UART1 pins to 'ISO7816 card mode' */
		/* switch UART0 pins to 'ISO7816 reader mode' */
		sim_switch_mode(0, 0);
		break;
	}
}

void _init_func(void)
{
	/* low-level hardware initialization */
	pio_irq_init();
	iso_uart_init();
	tc_etu_init();
	sim_switch_init();

	usbtest_init();

	/* high-level protocol */
	//opicc_usbapi_init();
	led_switch(1, 0);
	led_switch(2, 1);

	iso_uart_rx_mode();
	simtrace_set_mode(SIMTRACE_MD_SNIFFER);
}


static void help(void)
{
	DEBUGPCR("r: iso uart Rx mode\r\n"
		 "c: toggle clock master/slave\r\n"
		 "l: set nRST to low (active)\r\n"
		 "h: set nRST to high (inactive)\r\n"
		 "o: set nRST to input\r\n"
		 "r: set Rx mode for UART\r\n"
		 "s: disconnect SIM bus switch\r\n"
		 "S: connect SIM bus switch\r\n");
}

int _main_dbgu(char key)
{
	static int i = 0;
	DEBUGPCRF("main_dbgu");

	switch (key) {
	case 's':
		simtrace_set_mode(SIMTRACE_MD_MITM);
		break;
	case 'S':
		simtrace_set_mode(SIMTRACE_MD_SNIFFER);
		break;
	case 'r':
		iso_uart_rx_mode();
		break;
	case 'c':
		iso_uart_clk_master(i++ & 1);
		break;
	case 'l':
		iso_uart_rst(0);
		break;
	case 'h':
		iso_uart_rst(1);
		break;
	case 'o':
		iso_uart_rst(2);
		break;
	case 'd':
		iso_uart_dump();
		break;
	case '?':
		help();
		break;
	}

	return -EINVAL;
}

void _main_func(void)
{
	/* first we try to get rid of pending to-be-sent stuff */
	usb_out_process();

	/* next we deal with incoming requests from USB EP1 (OUT) */
	usb_in_process();

	udp_unthrottle();
}
personal git repositories of Harald Welte. Your mileage may vary