mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-19 14:58:35 +03:00
USB: add central file to define USB IDs, classes, and endpoints
Change-Id: Iba81f32a92c68a973e8e7adbc4c2a1064ba5290f
This commit is contained in:
@@ -5,21 +5,8 @@
|
||||
#include "board.h"
|
||||
#include <usb/device/dfu/dfu.h>
|
||||
|
||||
/* Endpoint numbers */
|
||||
#define DATAOUT 1
|
||||
#define DATAIN 2
|
||||
#define INT 3
|
||||
|
||||
#define BUFLEN 512
|
||||
|
||||
#define PHONE_DATAOUT 4
|
||||
#define PHONE_DATAIN 5
|
||||
#define PHONE_INT 6
|
||||
|
||||
#define CARDEM_USIM2_DATAOUT DATAOUT
|
||||
#define CARDEM_USIM2_DATAIN DATAIN
|
||||
#define CARDEM_USIM2_INT INT
|
||||
|
||||
#define CLK_MASTER true
|
||||
#define CLK_SLAVE false
|
||||
|
||||
|
||||
67
firmware/libcommon/include/simtrace_usb.h
Normal file
67
firmware/libcommon/include/simtrace_usb.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
* (C) 2018 by sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>
|
||||
* All Rights Reserved
|
||||
*/
|
||||
|
||||
/* SIMtrace USB IDs */
|
||||
#define USB_VENDOR_OPENMOKO 0x1d50
|
||||
#define USB_PRODUCT_OWHW_SAM3_DFU 0x4001 /* was 0x4000 */
|
||||
#define USB_PRODUCT_OWHW_SAM3 0x4001
|
||||
#define USB_PRODUCT_QMOD_HUB 0x4002
|
||||
#define USB_PRODUCT_QMOD_SAM3_DFU 0x4004 /* was 0x4003 */
|
||||
#define USB_PRODUCT_QMOD_SAM3 0x4004
|
||||
#define USB_PRODUCT_SIMTRACE2_DFU 0x60e3 /* was 0x60e2 */
|
||||
#define USB_PRODUCT_SIMTRACE2 0x60e3
|
||||
|
||||
/* USB proprietary class */
|
||||
#define USB_CLASS_PROPRIETARY 0xff
|
||||
|
||||
/* SIMtrace USB sub-classes */
|
||||
/*! Sniffer USB sub-class */
|
||||
#define SIMTRACE_SNIFFER_USB_SUBCLASS 1
|
||||
/*! Card-emulation USB sub-class */
|
||||
#define SIMTRACE_CARDEM_USB_SUBCLASS 2
|
||||
|
||||
/* Generic USB endpoint numbers */
|
||||
/*! Card-side USB data out (host to device) endpoint number */
|
||||
#define SIMTRACE_USB_EP_CARD_DATAOUT 1
|
||||
/*! Card-side USB data in (device to host) endpoint number */
|
||||
#define SIMTRACE_USB_EP_CARD_DATAIN 2
|
||||
/*! Card-side USB interrupt endpoint number */
|
||||
#define SIMTRACE_USB_EP_CARD_INT 3
|
||||
/*! Phone-side USB data out (host to device) endpoint number */
|
||||
#define SIMTRACE_USB_EP_PHONE_DATAOUT 4
|
||||
/*! Phone-side USB data in (device to host) endpoint number */
|
||||
#define SIMTRACE_USB_EP_PHONE_DATAIN 5
|
||||
/*! Phone-side USB interrupt endpoint number */
|
||||
#define SIMTRACE_USB_EP_PHONE_INT 6
|
||||
|
||||
/* Card-emulation USB endpoint numbers */
|
||||
/*! USIM1 USB data out (host to device) endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM1_DATAOUT 4
|
||||
/*! USIM1 USB data in (device to host) endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM1_DATAIN 5
|
||||
/*! USIM1 USB interrupt endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM1_INT 6
|
||||
/*! USIM2 USB data out (host to device) endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM2_DATAOUT 1
|
||||
/*! USIM2 USB data in (device to host) endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM2_DATAIN 2
|
||||
/*! USIM2 USB interrupt endpoint number */
|
||||
#define SIMTRACE_CARDEM_USB_EP_USIM2_INT 3
|
||||
|
||||
/*! Maximum number of endpoints */
|
||||
#define BOARD_USB_NUMENDPOINTS 6
|
||||
Reference in New Issue
Block a user