blob: 6c0d363daba9d664440b88e02b56184f42ac73d8 [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"
Kévin Redona1012b12018-07-01 18:11:01 +020036#include "simtrace_usb.h"
Harald Welte16055642016-03-03 11:02:45 +010037#include "ringbuffer.h"
Harald Welte30a53f82015-11-08 14:29:55 +010038#include "iso7816_fidi.h"
Christina Quastc0aa7692015-02-25 14:02:01 +010039
40#include <string.h>
Christina Quastcb646bc2015-05-03 14:21:26 +020041#include <errno.h>
Christina Quastc0aa7692015-02-25 14:02:01 +010042
Christina Quast95d66162015-04-09 22:38:47 +020043volatile uint32_t char_stat;
Christina Quastc0aa7692015-02-25 14:02:01 +010044
Christina Quast4db82e02015-04-11 18:14:41 +020045volatile ringbuf sim_rcv_buf = { {0}, 0, 0 };
Christina Quast4ba4d222015-03-02 16:14:09 +010046
Christina Quaste4cbfe62015-04-20 13:07:28 +020047/*-----------------------------------------------------------------------------
48 * Interrupt routines
49 *-----------------------------------------------------------------------------*/
Harald Welte7dd3dfd2016-03-03 12:32:04 +010050static void Callback_PhoneRST_ISR(uint8_t * pArg, uint8_t status,
51 uint32_t transferred, uint32_t remaining)
Christina Quaste4cbfe62015-04-20 13:07:28 +020052{
Harald Welte7dd3dfd2016-03-03 12:32:04 +010053 printf("rstCB\n\r");
54 PIO_EnableIt(&pinPhoneRST);
Christina Quaste4cbfe62015-04-20 13:07:28 +020055}
Harald Welte7dd3dfd2016-03-03 12:32:04 +010056
57void ISR_PhoneRST(const Pin * pPin)
Christina Quaste4cbfe62015-04-20 13:07:28 +020058{
Harald Welte7dd3dfd2016-03-03 12:32:04 +010059 int ret;
60 // FIXME: no printfs in ISRs?
61 printf("+++ Int!! %x\n\r", pinPhoneRST.pio->PIO_ISR);
62 if (((pinPhoneRST.pio->PIO_ISR & pinPhoneRST.mask) != 0)) {
63 if (PIO_Get(&pinPhoneRST) == 0) {
64 printf(" 0 ");
65 } else {
66 printf(" 1 ");
67 }
68 }
Christina Quaste4cbfe62015-04-20 13:07:28 +020069
Harald Welte7dd3dfd2016-03-03 12:32:04 +010070 if ((ret =
Kévin Redona1012b12018-07-01 18:11:01 +020071 USBD_Write(SIMTRACE_USB_EP_PHONE_INT, "R", 1,
Harald Welte7dd3dfd2016-03-03 12:32:04 +010072 (TransferCallback) & Callback_PhoneRST_ISR,
73 0)) != USBD_STATUS_SUCCESS) {
74 TRACE_ERROR("USB err status: %d (%s)\n", ret, __FUNCTION__);
75 return;
76 }
Christina Quaste4cbfe62015-04-20 13:07:28 +020077
Harald Welte7dd3dfd2016-03-03 12:32:04 +010078 /* Interrupt enabled after ATR is sent to phone */
79 PIO_DisableIt(&pinPhoneRST);
Christina Quaste4cbfe62015-04-20 13:07:28 +020080}
81
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 Welte3bafe432016-03-20 16:43:12 +010086void mode_trace_usart1_irq(void)
Christina Quast4db82e02015-04-11 18:14:41 +020087{
Harald Welte7dd3dfd2016-03-03 12:32:04 +010088 uint32_t stat;
89 char_stat = 0;
90 // Rcv buf full
91/* if((stat & US_CSR_RXBUFF) == US_CSR_RXBUFF) {
92 TRACE_DEBUG("Rcv buf full");
93 USART_DisableIt(USART1, US_IDR_RXBUFF);
94 }
Christina Quast4db82e02015-04-11 18:14:41 +020095*/
Harald Welte7dd3dfd2016-03-03 12:32:04 +010096 uint32_t csr = USART_PHONE->US_CSR;
Christina Quast4ba4d222015-03-02 16:14:09 +010097
Harald Welte7dd3dfd2016-03-03 12:32:04 +010098 if (csr & US_CSR_TXRDY) {
99 /* transmit buffer empty, nothing to transmit */
100 }
101 if (csr & US_CSR_RXRDY) {
102 stat = (csr & (US_CSR_OVRE | US_CSR_FRAME |
103 US_CSR_PARE | US_CSR_TIMEOUT | US_CSR_NACK |
104 (1 << 10)));
105 uint8_t c = (USART_PHONE->US_RHR) & 0xFF;
106// printf(" %x", c);
Christina Quast4ba4d222015-03-02 16:14:09 +0100107
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100108 if (stat == 0) {
109 /* Fill char into buffer */
110 rbuf_write(&sim_rcv_buf, c);
111 } else {
112 TRACE_DEBUG("e %x st: %x\n", c, stat);
113 } /* else: error occured */
Christina Quastc0aa7692015-02-25 14:02:01 +0100114
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100115 char_stat = stat;
116 }
Christina Quast4ba4d222015-03-02 16:14:09 +0100117}
Christina Quastcb646bc2015-05-03 14:21:26 +0200118
119/* FIDI update functions */
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200120void update_fidi(Usart_info *usart, uint8_t fidi)
Christina Quastcb646bc2015-05-03 14:21:26 +0200121{
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200122 if (NULL==usart) {
123 return;
124 }
Christina Quastcb646bc2015-05-03 14:21:26 +0200125
Harald Welte7dd3dfd2016-03-03 12:32:04 +0100126 uint8_t fi = fidi >> 4;
127 uint8_t di = fidi & 0xf;
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200128 int ratio = compute_fidi_ratio(fi, di);
Christina Quastcb646bc2015-05-03 14:21:26 +0200129
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200130 if (ratio > 0 && ratio < 0x8000) {
131 /* make sure USART uses new F/D ratio */
132 usart->base->US_CR |= US_CR_RXDIS | US_CR_RSTRX;
133 /* disable write protection */
134 if (usart->base->US_WPMR) {
135 usart->base->US_WPMR = US_WPMR_WPKEY(0x555341);
136 }
137 usart->base->US_FIDI = (ratio & 0x7ff);
138 usart->base->US_CR |= US_CR_RXEN | US_CR_STTTO;
Kévin Redon3113e3d2018-06-27 16:29:38 +0200139 //TRACE_INFO("updated USART(%u) Fi(%u)/Di(%u) ratio(%d): %u\n\r", usart->id, fi, di, ratio, usart->base->US_FIDI);
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200140 } else {
Kévin Redon3113e3d2018-06-27 16:29:38 +0200141 //TRACE_WARNING("computed Fi/Di ratio %d unsupported\n\r", ratio); /* don't print since this is function is also called by ISRs */
Kévin Redon4fe99fa2018-06-25 15:53:19 +0200142 }
Christina Quastcb646bc2015-05-03 14:21:26 +0200143}