/* octSIMtest with SAM3S board definition * * (C) 2019 by sysmocom -s.f.m.c. GmbH, Author:Joachim Steiger * * 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. */ #pragma once #include "board_common.h" #include "simtrace_usb.h" /* Name of the board */ #define BOARD_NAME "OCTSIMTEST" /* Board definition */ #define octsimtest /** oscillator used as main clock source (in Hz) */ #define BOARD_MAINOSC 18432000 /** desired main clock frequency (in Hz, based on BOARD_MAINOSC) */ #define BOARD_MCK 58982400 // 18.432 * 16 / 5 /** Pin configuration **/ /** there is no red LED, but the code needs this second LED, thus we provide an unused pin */ #define PIO_LED_RED PIO_PB13 /** MCU pin connected to green LED, which is actually amber, and the logic is inverted since it is connected to an NPN transistor (used as open drain) */ #define PIO_LED_GREEN PIO_PA4 /** red LED pin definition */ #define PIN_LED_RED {PIO_LED_RED, PIOB, ID_PIOB, PIO_OUTPUT_1, PIO_DEFAULT} /** green LED pin definition */ #define PIN_LED_GREEN {PIO_LED_GREEN, PIOA, ID_PIOA, PIO_OUTPUT_1, PIO_DEFAULT} /** LEDs pin definition */ #define PINS_LEDS PIN_LED_RED, PIN_LED_GREEN /** index for red LED in LEDs pin definition array */ #define LED_NUM_RED 0 /** index for green LED in LEDs pin definition array */ #define LED_NUM_GREEN 1 /* Button to force bootloader start (shorted to ground when pressed */ #define PIN_BOOTLOADER_SW {PIO_PA5, PIOA, ID_PIOA, PIO_INPUT, PIO_PULLUP} // FIXME PA8 is 32khz xtal on octsimtest /* Pull card presence pin high (shorted to ground in card slot when card is present) */ /** Phone connection **/ /* Phone USIM slot 1 VCC pin (VCC_PHONE in schematic) */ #define PIN_USIM1_VCC {PIO_PA25, PIOA, ID_PIOA, PIO_INPUT, PIO_DEFAULT} /* Phone USIM slot 1 RST pin (active low; RST_PHONE in schematic) */ #define PIN_USIM1_nRST {PIO_PA24, PIOA, ID_PIOA, PIO_INPUT, PIO_IT_EDGE | PIO_DEGLITCH } /* Phone I/O data signal input/output (I/O_PHONE in schematic) */ #define PIN_PHONE_IO {PIO_PA22A_TXD1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* Phone CLK clock input (CLK_PHONE in schematic) */ #define PIN_PHONE_CLK {PIO_PA23A_SCK1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* Pin used to switch level shifter in I/O line between rx (0) and tx (1) */ #define PIN_USIM1_IO_DIR {PIO_PA26, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT} /* Pin used for phone USIM slot 1 communication */ #define PINS_USIM1 PIN_PHONE_IO, PIN_PHONE_CLK, PIN_PHONE_CLK_INPUT, PIN_USIM1_VCC, PIN_PHONE_IO_INPUT, PIN_USIM1_nRST, PIN_USIM1_IO_DIR /* Phone I/O data signal input/output (unused USART RX input; connected to I/O_PHONE in schematic) */ #define PIN_PHONE_IO_INPUT {PIO_PA21A_RXD1, PIOA, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* Pin used as clock input (to measure the ETU duration; connected to CLK_PHONE in schematic) */ #define PIN_PHONE_CLK_INPUT {PIO_PA29B_TCLK2, PIOA, ID_PIOA, PIO_PERIPH_B, PIO_DEFAULT} /** Default pin configuration **/ /** External SPI flash interface **/ /* SPI MISO pin definition */ #define PIN_SPI_MISO {PIO_PA12A_MISO, PIOA, PIOA, PIO_PERIPH_A, PIO_PULLUP} /* SPI MOSI pin definition */ #define PIN_SPI_MOSI {PIO_PA13A_MOSI, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* SPI SCK pin definition */ #define PIN_SPI_SCK {PIO_PA14A_SPCK, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* SPI pins definition. Contains MISO, MOSI & SCK */ #define PINS_SPI PIN_SPI_MISO, PIN_SPI_MOSI, PIN_SPI_SCK /* SPI chip select 0 pin definition */ #define PIN_SPI_NPCS0 {PIO_PA11A_NPCS0, PIOA, PIOA, PIO_PERIPH_A, PIO_DEFAULT} /* SPI flash write protect pin (active low, pulled low) */ #define PIN_SPI_WP {PA15, PIOA, ID_PIOA, PIO_OUTPUT_0, PIO_DEFAULT} /** USB definitions */ /* OpenMoko SIMtrace 2 USB vendor ID */ #define BOARD_USB_VENDOR_ID USB_VENDOR_OPENMOKO /* OpenMoko SIMtrace 2 USB product ID (main application/runtime mode) */ #define BOARD_USB_PRODUCT_ID USB_PRODUCT_OCTSIMTEST /* OpenMoko SIMtrace 2 DFU USB product ID (DFU bootloader/DFU mode) */ #define BOARD_DFU_USB_PRODUCT_ID USB_PRODUCT_OCTSIMTEST /* USB release number (bcdDevice, shown as 0.00) */ #define BOARD_USB_RELEASE 0x000 /* Indicate SIMtrace is bus power in USB attributes */ #define BOARD_USB_BMATTRIBUTES USBConfigurationDescriptor_BUSPOWERED_NORWAKEUP #define DETECT_VCC_BY_ADC /* we have a resistive voltage divider of 47 + 30 kOhms to also detect 5V supply power */ #define VCC_UV_THRESH_1V8 (1500000*47)/(47+30) #define VCC_UV_THRESH_3V (2500000*47)/(47+30) #define HAVE_SLOT_MUX #define HAVE_BOARD_CARDINSERT struct cardem_inst; void board_set_card_insert(struct cardem_inst *ci, bool card_insert); /** Supported modes */ /* SIMtrace board supports sniffer mode */ //#define HAVE_SNIFFER /* SIMtrace board supports CCID mode */ //#define HAVE_CCID /* SIMtrace board supports card emulation mode */ #define HAVE_CARDEM /* SIMtrace board supports man-in-the-middle mode */ //#define HAVE_MITM /* octsimtest board supports gpio_test mode */ #define HAVE_GPIO_TEST