mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-17 13:48:32 +03:00
the device ID (unique to the micro-controller) is now displayed in the USB iSerial descriptor. the git version is now also displayed in iConfiguration in an additional (empty) configuration descriptor. this allows the user to quickly get the device hardware serial and firmware version just by using lsusb (no need for a custom USB software). Change-Id: If9fadecc097ca3e006990160936bf11b22eae4e0
132 lines
3.6 KiB
C
132 lines
3.6 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.
|
|
*
|
|
* 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
|
|
*/
|
|
#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 */
|