blob: e1453db89a8f54c0f0ee34089c5a2d811e2f2d2f [file] [log] [blame]
Christina Quastc0aa7692015-02-25 14:02:01 +01001/* ----------------------------------------------------------------------------
2 * ATMEL Microcontroller Software Support
3 * ----------------------------------------------------------------------------
4 * Copyright (c) 2009, Atmel Corporation
5 *
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * - Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the disclaimer below.
13 *
14 * Atmel's name may not be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20 * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 * ----------------------------------------------------------------------------
28 */
29
30/*------------------------------------------------------------------------------
31 * Headers
32 *------------------------------------------------------------------------------*/
33
34#include "board.h"
Harald Welte16055642016-03-03 11:02:45 +010035#include "simtrace.h"
36#include "ringbuffer.h"
Harald Welte30a53f82015-11-08 14:29:55 +010037#include "iso7816_fidi.h"
Christina Quastc0aa7692015-02-25 14:02:01 +010038
39#include <string.h>
Christina Quastcb646bc2015-05-03 14:21:26 +020040#include <errno.h>
Christina Quastc0aa7692015-02-25 14:02:01 +010041
Christina Quast95d66162015-04-09 22:38:47 +020042volatile uint32_t char_stat;
Christina Quastc0aa7692015-02-25 14:02:01 +010043
Christina Quast4db82e02015-04-11 18:14:41 +020044volatile ringbuf sim_rcv_buf = { {0}, 0, 0 };
Christina Quast4ba4d222015-03-02 16:14:09 +010045
Christina Quaste4cbfe62015-04-20 13:07:28 +020046/*-----------------------------------------------------------------------------
47 * Interrupt routines
48 *-----------------------------------------------------------------------------*/
Harald Welte7dd3dfd2016-03-03 12:32:04 +010049static void Callback_PhoneRST_ISR(uint8_t * pArg, uint8_t status,
50 uint32_t transferred, uint32_t remaining)
Christina Quaste4cbfe62015-04-20 13:07:28 +020051{
Harald Welte7dd3dfd2016-03-03 12:32:04 +010052 printf("rstCB\n\r");
53 PIO_EnableIt(&pinPhoneRST);
Christina Quaste4cbfe62015-04-20 13:07:28 +020054}
Harald Welte7dd3dfd2016-03-03 12:32:04 +010055
56void ISR_PhoneRST(const Pin * pPin)
Christina Quaste4cbfe62015-04-20 13:07:28 +020057{
Harald Welte7dd3dfd2016-03-03 12:32:04 +010058 int ret;
59 // FIXME: no printfs in ISRs?
60 printf("+++ Int!! %x\n\r", pinPhoneRST.pio->PIO_ISR);
61 if (((pinPhoneRST.pio->PIO_ISR & pinPhoneRST.mask) != 0)) {
62 if (PIO_Get(&pinPhoneRST) == 0) {
63 printf(" 0 ");
64 } else {
65 printf(" 1 ");
66 }
67 }
Christina Quaste4cbfe62015-04-20 13:07:28 +020068
Harald Welte7dd3dfd2016-03-03 12:32:04 +010069 if ((ret =
70 USBD_Write(PHONE_INT, "R", 1,
71 (TransferCallback) & Callback_PhoneRST_ISR,
72 0)) != USBD_STATUS_SUCCESS) {
73 TRACE_ERROR("USB err status: %d (%s)\n", ret, __FUNCTION__);
74 return;
75 }
Christina Quaste4cbfe62015-04-20 13:07:28 +020076
Harald Welte7dd3dfd2016-03-03 12:32:04 +010077 /* Interrupt enabled after ATR is sent to phone */
78 PIO_DisableIt(&pinPhoneRST);
Christina Quaste4cbfe62015-04-20 13:07:28 +020079}
80
Harald Welteacd48c52016-03-02 10:34:24 +010081extern void usart_irq_rx(uint8_t num);
Christina Quast4db82e02015-04-11 18:14:41 +020082/*
83 * char_stat is zero if no error occured.
84 * Otherwise it is filled with the content of the status register.
Christina Quastc0aa7692015-02-25 14:02:01 +010085 */
Harald Welte7dd3dfd2016-03-03 12:32:04 +010086void USART1_IrqHandler(void)
Christina Quast4db82e02015-04-11 18:14:41 +020087{
Harald Welteacd48c52016-03-02 10:34:24 +010088#if 0
Harald Welte7dd3dfd2016-03-03 12:32:04 +010089 uint32_t stat;
90 char_stat = 0;
91 // Rcv buf full
92/* if((stat & US_CSR_RXBUFF) == US_CSR_RXBUFF) {
93 TRACE_DEBUG("Rcv buf full");
94 USART_DisableIt(USART1, US_IDR_RXBUFF);
95 }
Christina Quast4db82e02015-04-11 18:14:41 +020096*/
Harald Welte7dd3dfd2016-03-03 12:32:04 +010097 uint32_t csr = USART_PHONE->US_CSR;
Christina Quast4ba4d222015-03-02 16:14:09 +010098
Harald Welte7dd3dfd2016-03-03 12:32:04 +010099 if (csr & US_CSR_TXRDY) {
100 /* transmit buffer empty, nothing to transmit */
101 }
102 if (csr & US_CSR_RXRDY) {
103 stat = (csr & (US_CSR_OVRE | US_CSR_FRAME |
104 US_CSR_PARE | US_CSR_TIMEOUT | US_CSR_NACK |
105 (1 << 10)));
106 uint8_t c = (USART_PHONE->US_RHR) & 0xFF;
107// printf(" %x", c);
Christina Quast4ba4d222015-03-02 16:14:09 +0100108
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100109 if (stat == 0) {
110 /* Fill char into buffer */
111 rbuf_write(&sim_rcv_buf, c);
112 } else {
113 TRACE_DEBUG("e %x st: %x\n", c, stat);
114 } /* else: error occured */
Christina Quastc0aa7692015-02-25 14:02:01 +0100115
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100116 char_stat = stat;
117 }
Harald Welteacd48c52016-03-02 10:34:24 +0100118#else
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100119 usart_irq_rx(0);
Harald Welteacd48c52016-03-02 10:34:24 +0100120#endif
Christina Quast4ba4d222015-03-02 16:14:09 +0100121}
Christina Quastcb646bc2015-05-03 14:21:26 +0200122
123/* FIDI update functions */
Christina Quastcb646bc2015-05-03 14:21:26 +0200124void update_fidi(uint8_t fidi)
125{
126 int rc;
127
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100128 uint8_t fi = fidi >> 4;
129 uint8_t di = fidi & 0xf;
Christina Quastcb646bc2015-05-03 14:21:26 +0200130
131 rc = compute_fidi_ratio(fi, di);
132 if (rc > 0 && rc < 0x400) {
133 TRACE_INFO("computed Fi(%u) Di(%u) ratio: %d", fi, di, rc);
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100134 /* make sure UART uses new F/D ratio */
Christina Quastcb646bc2015-05-03 14:21:26 +0200135 USART_PHONE->US_CR |= US_CR_RXDIS | US_CR_RSTRX;
136 USART_PHONE->US_FIDI = rc & 0x3ff;
137 USART_PHONE->US_CR |= US_CR_RXEN | US_CR_STTTO;
138 } else
139 TRACE_INFO("computed FiDi ratio %d unsupported", rc);
140}