mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
Remove the paragraph about writing to the Free Software Foundation's mailing address. The FSF has changed addresses in the past, and may do so again. In 2021 this is not useful, let's rather have a bit less boilerplate at the start of source files. Change-Id: Ie0a3b2273383adbb3303faffd6ff96be7f4cae99
128 lines
3.4 KiB
C
128 lines
3.4 KiB
C
/* SIMtrace 2 mode definitions
|
|
*
|
|
* Copyright (c) 2015-2017 by Harald Welte <hwelte@hmw-consulting.de>
|
|
* Copyright (c) 2018-2019, sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.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.
|
|
*/
|
|
#ifndef SIMTRACE_H
|
|
#define SIMTRACE_H
|
|
|
|
#include "ringbuffer.h"
|
|
#include "board.h"
|
|
#include <usb/device/dfu/dfu.h>
|
|
|
|
#define BUFLEN 512
|
|
|
|
#define CLK_MASTER true
|
|
#define CLK_SLAVE false
|
|
|
|
/* ===================================================*/
|
|
/* Taken from iso7816_4.c */
|
|
/* ===================================================*/
|
|
/** Flip flop for send and receive char */
|
|
#define USART_SEND 0
|
|
#define USART_RCV 1
|
|
|
|
|
|
extern volatile ringbuf sim_rcv_buf;
|
|
|
|
extern volatile bool rcvdChar;
|
|
extern volatile uint32_t char_stat;
|
|
|
|
extern const Pin pinPhoneRST;
|
|
|
|
enum confNum {
|
|
CFG_NUM_NONE = 0,
|
|
#ifdef HAVE_SNIFFER
|
|
CFG_NUM_SNIFF,
|
|
#endif
|
|
#ifdef HAVE_CCID
|
|
CFG_NUM_CCID,
|
|
#endif
|
|
#ifdef HAVE_CARDEM
|
|
CFG_NUM_PHONE,
|
|
#endif
|
|
#ifdef HAVE_MITM
|
|
CFG_NUM_MITM,
|
|
#endif
|
|
CFG_NUM_VERSION,
|
|
NUM_CONF
|
|
};
|
|
|
|
/// CCIDDriverConfiguration Descriptors
|
|
/// List of descriptors that make up the configuration descriptors of a
|
|
/// device using the CCID driver.
|
|
typedef struct {
|
|
|
|
/// Configuration descriptor
|
|
USBConfigurationDescriptor configuration;
|
|
/// Interface descriptor
|
|
USBInterfaceDescriptor interface;
|
|
/// CCID descriptor
|
|
CCIDDescriptor ccid;
|
|
/// Bulk OUT endpoint descriptor
|
|
USBEndpointDescriptor bulkOut;
|
|
/// Bulk IN endpoint descriptor
|
|
USBEndpointDescriptor bulkIn;
|
|
/// Interrupt OUT endpoint descriptor
|
|
USBEndpointDescriptor interruptIn;
|
|
DFURT_IF_DESCRIPTOR_STRUCT
|
|
} __attribute__ ((packed)) CCIDDriverConfigurationDescriptors;
|
|
|
|
extern const USBConfigurationDescriptor *configurationDescriptorsArr[];
|
|
|
|
/*! Update USART baud rate to Fi/Di ratio
|
|
* @param[io] usart USART peripheral base address
|
|
* @param[in] fidi FiDi value as provided in TA interface byte
|
|
*/
|
|
void update_fidi(Usart_info *usart, uint8_t fidi);
|
|
|
|
void ISR_PhoneRST( const Pin *pPin);
|
|
|
|
/* Configure functions */
|
|
extern void Sniffer_configure( void );
|
|
extern void CCID_configure( void );
|
|
extern void mode_cardemu_configure(void);
|
|
extern void MITM_configure( void );
|
|
|
|
/* Init functions */
|
|
extern void Sniffer_init( void );
|
|
extern void CCID_init( void );
|
|
extern void mode_cardemu_init(void);
|
|
extern void MITM_init( void );
|
|
|
|
extern void SIMtrace_USB_Initialize( void );
|
|
|
|
/* Exit functions */
|
|
extern void Sniffer_exit( void );
|
|
extern void CCID_exit( void );
|
|
extern void mode_cardemu_exit(void);
|
|
extern void MITM_exit( void );
|
|
|
|
/* Run functions */
|
|
extern void Sniffer_run( void );
|
|
extern void CCID_run( void );
|
|
extern void mode_cardemu_run(void);
|
|
extern void MITM_run( void );
|
|
|
|
/* IRQ functions */
|
|
extern void Sniffer_usart0_irq(void);
|
|
extern void Sniffer_usart1_irq(void);
|
|
extern void mode_cardemu_usart0_irq(void);
|
|
extern void mode_cardemu_usart1_irq(void);
|
|
|
|
/* Timer helper function */
|
|
void Timer_Init( void );
|
|
void TC0_Counter_Reset( void );
|
|
|
|
#endif /* SIMTRACE_H */
|