OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [stable_0_2_0_rc3/] [or1ksim/] [peripheral/] [16450.c] - Blame information for rev 529

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 31 lampret
/* 16450.c -- Simulation of 8250/16450 serial UART
2
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
3
 
4
This file is part of OpenRISC 1000 Architectural Simulator.
5
 
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
 
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
GNU General Public License for more details.
15
 
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, write to the Free Software
18
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
 
20
/* This is functional simulation of 8250/16450 UARTs. Since we RX/TX data
21
   via file streams, we can't simulate modem control lines coming from the
22
   DCE and similar details of communication with the DCE.
23
 
24
   This simulated UART device is intended for basic UART device driver
25
   verification. From device driver perspective this device looks like a
26
   regular UART but never reports and modem control lines changes (the
27
   only DCE responses are incoming characters from the file stream).
28
*/
29
 
30
#include <stdlib.h>
31
#include <stdio.h>
32
#include <string.h>
33
 
34 235 erez
#include "abstract.h"
35 31 lampret
#include "16450.h"
36
#include "sim-config.h"
37 102 lampret
#include "pic.h"
38 336 markom
#include "vapi.h"
39 31 lampret
 
40 409 markom
#define MIN(a,b) ((a) < (b) ? (a) : (b))
41
 
42 424 markom
static struct dev_16450 uarts[MAX_UARTS];
43 221 markom
static int thre_int;
44 31 lampret
 
45
/* Number of clock cycles (one clock cycle is one call to the uart_clock())
46
   before a single character is transmitted or received. */
47 355 markom
static unsigned long char_clks(int dll, int dlh, int lcr)
48 31 lampret
{
49 409 markom
  float bauds_per_char = 1.;
50
  unsigned long char_clks = ((dlh << 8) + dll) * UART_CLOCK_DIVIDER;
51 355 markom
 
52
  if (lcr & UART_LCR_PARITY)
53
    bauds_per_char = bauds_per_char + 1.;
54 31 lampret
 
55 355 markom
  /* stop bits 1 or two */
56
  if (lcr & UART_LCR_STOP)
57
    bauds_per_char = bauds_per_char + 2.;
58
  else
59
    if ((lcr & 0x3) != 0)
60
      bauds_per_char = bauds_per_char + 1.;
61
    else
62
      bauds_per_char = bauds_per_char + 1.5;
63
 
64
  bauds_per_char = bauds_per_char + (5. + (lcr & 0x3));
65
 
66
  return char_clks * bauds_per_char;
67 31 lampret
}
68
 
69
/* Set a specific UART register with value. */
70 238 erez
void uart_write_byte(unsigned long addr, unsigned long value)
71 31 lampret
{
72 355 markom
  int chipsel;
73
 
74
  debug(4, "uart_write_byte(%x,%02x)\n", addr, (unsigned)value);
75 341 markom
 
76 424 markom
  for(chipsel = 0; chipsel < MAX_UARTS; chipsel++)
77 355 markom
    if ((addr & ~(UART_ADDR_SPACE-1)) == config.uarts[chipsel].baseaddr)
78
      break;
79 424 markom
  if (chipsel >= MAX_UARTS) return;
80 31 lampret
 
81 355 markom
  if (uarts[chipsel].regs.lcr & UART_LCR_DLAB) {
82
    switch (addr % UART_ADDR_SPACE) {
83
      case UART_DLL:
84
        uarts[chipsel].regs.dll = value;
85
        uarts[chipsel].char_clks = char_clks(uarts[chipsel].regs.dll, uarts[chipsel].regs.dlh, uarts[chipsel].regs.lcr);
86
        return;
87
      case UART_DLH:
88
        uarts[chipsel].regs.dlh = value;
89
        return;
90
    }
91
  }
92
 
93
  switch (addr % UART_ADDR_SPACE) {
94
    case UART_TXBUF:
95
      if (uarts[chipsel].istat.txbuf_full < uarts[chipsel].fifo_len) {
96
        uarts[chipsel].istat.txbuf_full++;
97
        uarts[chipsel].regs.txbuf[uarts[chipsel].istat.txbuf_head] = value;
98
        uarts[chipsel].istat.txbuf_head = (uarts[chipsel].istat.txbuf_head + 1) % uarts[chipsel].fifo_len;
99
      } else
100
        uarts[chipsel].regs.txbuf[uarts[chipsel].istat.txbuf_head] = value;
101 341 markom
 
102 411 markom
      uarts[chipsel].regs.lsr &= ~(UART_LSR_TXSERE | UART_LSR_TXBUFE);
103 355 markom
      uarts[chipsel].istat.thre_int = 0;
104
      break;
105 409 markom
    case UART_FCR:
106
      uarts[chipsel].regs.fcr = value & UART_VALID_FCR;
107
      if (uarts[chipsel].fifo_len == 1 && (value & UART_FCR_FIE)
108
       || uarts[chipsel].fifo_len != 1 && !(value & UART_FCR_FIE))
109
        value |= UART_FCR_RRXFI | UART_FCR_RTXFI;
110
      uarts[chipsel].fifo_len = (value & UART_FCR_FIE) ? 16 : 1;
111
      if (value & UART_FCR_RTXFI) {
112
        uarts[chipsel].istat.txbuf_head = uarts[chipsel].istat.txbuf_tail = 0;
113
        uarts[chipsel].istat.txbuf_full = 0;
114 411 markom
        uarts[chipsel].regs.lsr &= ~UART_LSR_TXBUFE;
115 409 markom
      }
116
      if (value & UART_FCR_RRXFI) {
117
        uarts[chipsel].istat.rxbuf_head = uarts[chipsel].istat.rxbuf_tail = 0;
118
        uarts[chipsel].istat.rxbuf_full = 0;
119 411 markom
        uarts[chipsel].regs.lsr &= ~UART_LSR_RDRDY;
120 409 markom
      }
121
      break;
122 355 markom
    case UART_IER:
123
      uarts[chipsel].regs.ier = value & UART_VALID_IER;
124 423 markom
#if 0
125 492 markom
      if (uarts[chipsel].regs.ier & UART_IER_THRI)
126
        uarts[chipsel].istat.thre_int = 1;
127 423 markom
#endif
128 355 markom
      break;
129
    case UART_LCR:
130
      uarts[chipsel].regs.lcr = value & UART_VALID_LCR;
131 409 markom
      uarts[chipsel].char_clks = char_clks(uarts[chipsel].regs.dll, uarts[chipsel].regs.dlh, uarts[chipsel].regs.lcr);
132 355 markom
      break;
133
    case UART_MCR:
134
      uarts[chipsel].regs.mcr = value & UART_VALID_MCR;
135
      break;
136
    case UART_SCR:
137
      uarts[chipsel].regs.scr = value;
138
      break;
139
    default:
140
      debug(1, "write out of range (addr %x)\n", addr);
141
  }
142 31 lampret
}
143
 
144
/* Read a specific UART register. */
145 238 erez
unsigned long uart_read_byte(unsigned long addr)
146 31 lampret
{
147 355 markom
  unsigned char value = 0;
148
  int chipsel;
149
 
150
  debug(4, "uart_read_byte(%x)", addr);
151
 
152 424 markom
  for(chipsel = 0; chipsel < MAX_UARTS; chipsel++)
153 355 markom
    if ((addr & ~(UART_ADDR_SPACE-1)) == config.uarts[chipsel].baseaddr)
154
      break;
155 31 lampret
 
156 424 markom
  if (chipsel >= MAX_UARTS)
157 355 markom
    return 0;
158 344 markom
 
159 355 markom
  if (uarts[chipsel].regs.lcr & UART_LCR_DLAB) {
160
    switch (addr % UART_ADDR_SPACE) {
161
      case UART_DLL:
162
        value = uarts[chipsel].regs.dll;
163
        debug(4, "= %x\n", value);
164
        return value;
165
      case UART_DLH:
166
        value = uarts[chipsel].regs.dlh;
167
        debug(4, "= %x\n", value);
168
        return value;
169
    }
170
  }
171
 
172
  switch (addr % UART_ADDR_SPACE) {
173
    case UART_RXBUF:
174 409 markom
      { /* Print out FIFO for debugging */
175
        int i;
176
        debug(4, "(%i/%i,%i,%i:", uarts[chipsel].istat.rxbuf_full, uarts[chipsel].fifo_len,
177
                  uarts[chipsel].istat.rxbuf_head, uarts[chipsel].istat.rxbuf_tail);
178
        for (i = 0; i < uarts[chipsel].istat.rxbuf_full; i++)
179
          debug(4, "%02x ", uarts[chipsel].regs.rxbuf[(uarts[chipsel].istat.rxbuf_tail + i) % uarts[chipsel].fifo_len]);
180
        debug(4, ")");
181
      }
182 355 markom
      if (uarts[chipsel].istat.rxbuf_full) {
183
        value = uarts[chipsel].regs.rxbuf[uarts[chipsel].istat.rxbuf_tail];
184
        uarts[chipsel].istat.rxbuf_tail = (uarts[chipsel].istat.rxbuf_tail + 1) % uarts[chipsel].fifo_len;
185
        uarts[chipsel].istat.rxbuf_full--;
186
      }
187
 
188
      if (uarts[chipsel].istat.rxbuf_full)
189
        uarts[chipsel].regs.lsr |= UART_LSR_RDRDY;
190
      else
191
        uarts[chipsel].regs.lsr &= ~UART_LSR_RDRDY;
192 409 markom
 
193
      uarts[chipsel].istat.timeout_count = 0;
194 355 markom
      break;
195
    case UART_IER:
196
      value = uarts[chipsel].regs.ier & UART_VALID_IER;
197
      break;
198
    case UART_IIR:
199
      value = (uarts[chipsel].regs.iir & UART_VALID_IIR) | 0xc0;
200 492 markom
      if (uarts[chipsel].regs.ier & UART_IER_THRI)
201 490 markom
        uarts[chipsel].istat.thre_int = 0;
202 355 markom
      break;
203
    case UART_LCR:
204
      value = uarts[chipsel].regs.lcr & UART_VALID_LCR;
205
      break;
206
    case UART_MCR:
207
      value = 0;
208
      break;
209
    case UART_LSR:
210
      value = uarts[chipsel].regs.lsr & UART_VALID_LSR;
211
      uarts[chipsel].regs.lsr &=
212 409 markom
        ~(UART_LSR_OVRRUN | UART_LSR_BREAK | UART_LSR_PARITY
213
         | UART_LSR_FRAME | UART_LSR_RXERR);
214 355 markom
      break;
215
    case UART_MSR:
216
      value = uarts[chipsel].regs.msr & UART_VALID_MSR;
217
      uarts[chipsel].regs.msr = 0;
218
      break;
219
    case UART_SCR:
220
      value = uarts[chipsel].regs.scr;
221
      break;
222
    default:
223
      debug(1, "read out of range (addr %x)\n", addr);
224
  }
225
  debug(4, " = %x\n", value);
226
  return value;
227 31 lampret
}
228
 
229 336 markom
/* Function that handles incoming VAPI data.  */
230
void uart_vapi_read (unsigned long id, unsigned long data)
231
{
232 341 markom
  int uart;
233 344 markom
  debug(4, "UART: id %08x, data %08x\n", id, data);
234 341 markom
  uart = id & VAPI_DEVICE_ID;
235
  uarts[uart].vapi_buf[uarts[uart].vapi_buf_head_ptr] = data;
236 409 markom
  uarts[uart].vapi_buf_head_ptr = (uarts[uart].vapi_buf_head_ptr + 1) % UART_VAPI_BUF_LEN;
237 341 markom
  if (uarts[uart].vapi_buf_tail_ptr == uarts[uart].vapi_buf_head_ptr) {
238
    fprintf (stderr, "FATAL: uart VAPI buffer to small.\n");
239
    exit (1);
240
  }
241
}
242 336 markom
 
243 409 markom
static void send_char (int uart, int bits_send)
244
{
245
  printf ("'%c'\n", uarts[uart].iregs.txser);
246
  debug(4, "TX \'%c\' via UART%d...\n", uarts[uart].iregs.txser, uart);
247
  if (uarts[uart].regs.mcr & UART_MCR_LOOP)
248
    uarts[uart].iregs.loopback = uarts[uart].iregs.txser;
249
  else {
250
    /* Send to either VAPI or to file */
251
    if (config.uarts[uart].vapi_id) {
252
      int par, pe, fe, nbits;
253
      int j, data;
254
      unsigned long packet = 0;
255
 
256
      nbits = MIN (bits_send, (uarts[uart].regs.lcr & UART_LCR_WLEN8) + 5);
257
      /* Encode a packet */
258
      packet = uarts[uart].iregs.txser & ((1 << nbits) - 1);
259
 
260
      /* Calculate parity */
261
      for (j = 0, par = 0; j < nbits; j++)
262
        par ^= (packet >> j) & 1;
263
 
264
      if (uarts[uart].regs.lcr & UART_LCR_PARITY) {
265
        if (uarts[uart].regs.lcr & UART_LCR_SPAR) {
266
          packet |= 1 << nbits;
267
        } else {
268
          if (uarts[uart].regs.lcr & UART_LCR_EPAR)
269
            packet |= par << nbits;
270
          else
271
            packet |= (par ^ 1) << nbits;
272
        }
273
        nbits++;
274
      }
275
      packet |= 1 << (nbits++);
276
      if (uarts[uart].regs.lcr & UART_LCR_STOP)
277
        packet |= 1 << (nbits++);
278
 
279
      /* Decode a packet */
280
      nbits = (uarts[uart].vapi.lcr & UART_LCR_WLEN8) + 5;
281
      data = packet & ((1 << nbits) - 1);
282
 
283
      /* Calculate parity, including parity bit */
284
      for (j = 0, par = 0; j < nbits + 1; j++)
285
        par ^= (packet >> j) & 1;
286
 
287
      if (uarts[uart].vapi.lcr & UART_LCR_PARITY) {
288
        if (uarts[uart].vapi.lcr & UART_LCR_SPAR) {
289
          pe = !((packet >> nbits) & 1);
290
        } else {
291
          if (uarts[uart].vapi.lcr & UART_LCR_EPAR)
292
            pe = par != 0;
293
          else
294
            pe = par != 1;
295
        }
296
        nbits++;
297
      } else
298
        pe = 0;
299
 
300
      fe = ((packet >> (nbits++)) & 1) ^ 1;
301
      if (uarts[uart].vapi.lcr & UART_LCR_STOP)
302
        fe |= ((packet >> (nbits++)) & 1) ^ 1;
303
 
304
      debug (4, "lcr vapi %02x, uart %02x\n", uarts[uart].vapi.lcr, uarts[uart].regs.lcr);
305
      data |= (uarts[uart].vapi.lcr << 8) | (pe << 16) | (fe << 17) | (uarts[uart].vapi.lcr << 8);
306
      printf ("vapi_send (%08x, %08x)\n", config.uarts[uart].vapi_id, data);
307
      debug (4, "vapi_send (%08x, %08x)\n", config.uarts[uart].vapi_id, data);
308
      vapi_send (config.uarts[uart].vapi_id, data);
309
    } else {
310
      fputc((int)(uarts[uart].iregs.txser & 0xFF), uarts[uart].txfs);
311
      fflush(uarts[uart].txfs);
312
    }
313
  }
314
  uarts[uart].istat.txser_full = 0;
315
  uarts[uart].istat.txser_clks = 0;
316
}
317
 
318 411 markom
/* Adds a character to the FIFO */
319
 
320
void uart_add_char (int uart, int ch)
321
{
322
  if (uarts[uart].istat.rxbuf_full + 1 > uarts[uart].fifo_len)
323
    uarts[uart].regs.lsr |= UART_LSR_OVRRUN | UART_LSR_RXERR;
324
  else {
325
    debug(4, "add %02x\n", ch);
326
    uarts[uart].regs.rxbuf[uarts[uart].istat.rxbuf_head] = ch;
327
    uarts[uart].istat.rxbuf_head = (uarts[uart].istat.rxbuf_head + 1) % uarts[uart].fifo_len;
328
    uarts[uart].istat.rxbuf_full++;
329
  }
330
  uarts[uart].regs.lsr |= UART_LSR_RDRDY;
331
  uarts[uart].istat.timeout_count = 0;
332
}
333
 
334 341 markom
/* Reset.  It initializes all registers of all UART devices to zero values,
335 31 lampret
   (re)opens all RX/TX file streams and places devices in memory address
336 341 markom
   space.  */
337 31 lampret
void uart_reset()
338
{
339 355 markom
  int i;
340
 
341 261 markom
  if (!config.uarts_enabled)
342
    config.nuarts = 0;
343 341 markom
 
344
  if (config.sim.verbose && config.nuarts)
345
    printf("Resetting %u UART(s).\n", config.nuarts);
346
 
347 355 markom
  memset(uarts, 0, sizeof(uarts));
348 261 markom
 
349 355 markom
  for(i = 0; i < config.nuarts; i++) {
350 341 markom
    if (config.uarts[i].vapi_id) {
351
      if ((config.uarts[i].vapi_id & VAPI_DEVICE_ID) != i) {
352
        fprintf (stderr, "ERROR: Wrong vapi_id (0x%x) for uart %i, last byte is required to be %02x; ignoring.\n", config.uarts[i].vapi_id, i, i);
353
        config.uarts[i].vapi_id = 0;
354
        uarts[i].txfs = 0;
355
      } else {
356 355 markom
        vapi_install_handler (config.uarts[i].vapi_id, uart_vapi_read);
357
        register_memoryarea(config.uarts[i].baseaddr, UART_ADDR_SPACE, 1, uart_read_byte, uart_write_byte);
358
      }
359
    } else if (config.uarts[i].txfile) { /* MM: Try to create stream.  */
360
      if (!(uarts[i].rxfs = fopen(config.uarts[i].rxfile, "r"))
361
        && !(uarts[i].rxfs = fopen(config.uarts[i].rxfile, "r+"))) {
362 361 markom
        debug (0, "WARNING: UART%d has problems with RX file stream.\n", i);
363 355 markom
        continue;
364
      }
365
      uarts[i].txfs = fopen(config.uarts[i].txfile, "a");
366
      if (uarts[i].rxfs && uarts[i].txfs && config.sim.verbose) {
367
        printf("UART%d at 0x%.8x uses ", i, config.uarts[i].baseaddr);
368
        printf("%s for RX and %s for TX.\n", config.uarts[i].rxfile, config.uarts[i].txfile);
369
      } else
370 361 markom
        debug (1, "WARNING: UART%d has problems with TX file stream.\n", i);
371 355 markom
      register_memoryarea(config.uarts[i].baseaddr, UART_ADDR_SPACE, 1, uart_read_byte, uart_write_byte);
372 341 markom
    }
373
 
374
    if (config.uarts[i].uart16550)
375
      uarts[i].fifo_len = 16;
376
    else
377
      uarts[i].fifo_len = 1;
378 344 markom
 
379 341 markom
    uarts[i].istat.rxbuf_head = uarts[i].istat.rxbuf_tail = 0;
380
    uarts[i].istat.txbuf_head = uarts[i].istat.txbuf_tail = 0;
381 344 markom
 
382 409 markom
    uarts[i].istat.break_set = 0;
383
    uarts[i].istat.timeout_count = 0;
384 492 markom
    uarts[i].istat.thre_int = 1; /* FIFO is empty at start */
385
 
386 344 markom
    uarts[i].regs.lcr = UART_LCR_RESET;
387 385 markom
    uarts[i].vapi.cur_break = uarts[i].vapi.cur_break_cnt = uarts[i].vapi.next_break = 0;
388
    uarts[i].vapi.next_break_cnt = -1;
389 336 markom
  }
390 31 lampret
}
391 261 markom
 
392 31 lampret
/* Simulation hook. Must be called every clock cycle to simulate all UART
393
   devices. It does internal functional UART simulation. */
394
void uart_clock()
395
{
396 355 markom
  int i, retval;
397 341 markom
 
398 355 markom
  for(i = 0; i < config.nuarts; i++) {
399 341 markom
    /* If VAPI is not selected, UART communicates with two file streams;
400
       if VAPI is selected, we use VAPI streams.  */
401 529 simons
 
402 341 markom
    /* if txfs is corrupted, skip this uart. */
403 355 markom
    if (!config.uarts[i].vapi_id && !uarts[i].txfs) continue;
404 385 markom
 
405
    if (uarts[i].vapi.next_break_cnt >= 0)
406 409 markom
      if (--uarts[i].vapi.next_break_cnt < 0) {
407
        if (!(uarts[i].vapi.cur_break = uarts[i].vapi.next_break))
408
          uarts[i].istat.break_set = 0;
409
      }
410 385 markom
 
411
    /***************** Transmit *****************/
412 355 markom
    if (!uarts[i].istat.txser_full) {
413
      uarts[i].regs.lsr |= UART_LSR_TXBUFE;
414
      if (uarts[i].istat.txbuf_full) {
415
        uarts[i].iregs.txser = uarts[i].regs.txbuf[uarts[i].istat.txbuf_tail];
416
        uarts[i].istat.txbuf_tail = (uarts[i].istat.txbuf_tail + 1) % uarts[i].fifo_len;
417
        uarts[i].istat.txser_full = 1;
418
        uarts[i].istat.txbuf_full--;
419
        uarts[i].regs.lsr &= ~UART_LSR_TXSERE;
420
        uarts[i].istat.thre_int = 1;
421
      } else
422
        uarts[i].regs.lsr |= UART_LSR_TXSERE;
423 409 markom
    } else if (uarts[i].char_clks <= uarts[i].istat.txser_clks++) {
424
      send_char(i, (uarts[i].regs.lcr & UART_LCR_WLEN8) + 5); /* We've sent all bits */
425
    } else {
426
      /* We are still sending char here*/
427
 
428
      /* Check if we set the break bit */
429
      if (uarts[i].regs.lcr & UART_LCR_SBC) {
430
        if (!uarts[i].vapi.break_sent) {
431
#if 0
432
          /* Send broken frame */
433
          int nbits_sent = ((uarts[i].regs.lcr & UART_LCR_WLEN8) + 5) * (uarts[i].istat.txser_clks - 1) / uarts[i].char_clks;
434
          send_char(i, nbits_sent);
435
#endif
436
          /* Send one break signal */
437
          vapi_send (config.uarts[i].vapi_id, UART_LCR_SBC << 8);
438
          uarts[i].vapi.break_sent = 1;
439 355 markom
        }
440 409 markom
        /* mark as character was sent */
441
        uarts[i].istat.txser_full = 0;
442
        uarts[i].istat.txser_clks = 0;
443
      } else
444
        uarts[i].vapi.break_sent = 0;
445 355 markom
    }
446 341 markom
 
447 385 markom
    /***************** Receive *****************/
448
 
449
    /* Is there a break? */
450 409 markom
    if (uarts[i].vapi.cur_break) {
451 385 markom
      uarts[i].vapi.cur_break_cnt++;
452 409 markom
      if (uarts[i].vapi.cur_break_cnt > UART_BREAK_COUNT * uarts[i].vapi.char_clks) {
453
        if (!uarts[i].istat.break_set) {
454 411 markom
          unsigned lsr;
455 409 markom
          uarts[i].istat.break_set = 1;
456 423 markom
          lsr = UART_LSR_BREAK | UART_LSR_RXERR | UART_LSR_RDRDY;
457 409 markom
          printf ("[%x]\n", uarts[i].regs.lsr);
458
          uarts[i].istat.rxser_full = 0;
459
          uarts[i].istat.rxser_clks = 0;
460 411 markom
          uart_add_char (i, lsr << 8);
461 409 markom
        } else
462
          uarts[i].vapi.cur_break_cnt = 0;
463
      }
464
      if (uarts[i].istat.rxser_full) {
465
        uarts[i].istat.rxser_full = 0;
466
        uarts[i].istat.rxser_clks = 0;
467
      }
468 385 markom
    } else {
469
      if (uarts[i].istat.rxser_full) {
470 409 markom
        if (uarts[i].char_clks <= uarts[i].istat.rxser_clks++) {
471 411 markom
          /* Set unused character bits to zero and allow lsr register in fifo */
472
          uarts[i].iregs.rxser &= ((1 << ((uarts[i].regs.lcr & 3) + 5)) - 1) | 0xff00;
473 409 markom
          debug(4, "Receiving 0x%02x'%c' via UART%d...\n", uarts[i].iregs.rxser, uarts[i].iregs.rxser, i);
474 385 markom
          uarts[i].istat.rxser_full = 0;
475
          uarts[i].istat.rxser_clks = 0;
476 411 markom
          uart_add_char (i, uarts[i].iregs.rxser);
477 355 markom
        }
478
      }
479
    }
480
 
481
    /* Check if there is something waiting, and put it into rxser */
482
    if (uarts[i].regs.mcr & UART_MCR_LOOP) {
483
      uarts[i].iregs.rxser = uarts[i].iregs.loopback;
484
      uarts[i].istat.rxser_full = 1;
485
    } else {
486
      if (!config.uarts[i].vapi_id) {
487 529 simons
        if(uarts[i].istat.rxser_full == 0) {
488
          if((retval = fgetc(uarts[i].rxfs)) != EOF) {
489
            uarts[i].iregs.rxser = (char)retval;
490
            uarts[i].istat.rxser_full = 1;
491
          }
492
        }
493 355 markom
      } else { /* VAPI */
494
        int received = 0;
495 361 markom
        /* do not handle commands while receiving */
496
        if (uarts[i].istat.rxser_full)
497
          break;
498 355 markom
        while (!received) {
499
          if (uarts[i].vapi_buf_head_ptr != uarts[i].vapi_buf_tail_ptr) {
500
            unsigned long data = uarts[i].vapi_buf[uarts[i].vapi_buf_tail_ptr];
501 409 markom
            debug(4, "Handling: %08x (%i,%i)\n", data, uarts[i].vapi_buf_head_ptr, uarts[i].vapi_buf_tail_ptr);
502
            uarts[i].vapi_buf_tail_ptr = (uarts[i].vapi_buf_tail_ptr + 1) % UART_VAPI_BUF_LEN;
503 355 markom
            switch (data >> 24) {
504
              case 0x00:
505
                uarts[i].vapi.lcr = (data >> 8) & 0xff;
506
                /* Put data into rx fifo */
507 411 markom
                uarts[i].iregs.rxser = data & 0xff;
508 355 markom
                uarts[i].vapi.char_clks = char_clks (uarts[i].vapi.dll, uarts[i].vapi.dlh, uarts[i].vapi.lcr);
509 409 markom
                if ((uarts[i].vapi.lcr & ~UART_LCR_SBC) != (uarts[i].regs.lcr & ~UART_LCR_SBC)
510
                 || uarts[i].vapi.char_clks != uarts[i].char_clks
511 355 markom
                 || uarts[i].vapi.skew < -MAX_SKEW || uarts[i].vapi.skew > MAX_SKEW) {
512 409 markom
                  debug (3, "WARNING: unmatched VAPI (%02x) and uart (%02x) modes.\n",
513
                        uarts[i].vapi.lcr & ~UART_LCR_SBC, uarts[i].regs.lcr & ~UART_LCR_SBC);
514 355 markom
                  /* Set error bits */
515 411 markom
                  uarts[i].iregs.rxser |= (UART_LSR_FRAME | UART_LSR_RXERR) << 8;
516
                  if (uarts[i].regs.lcr & UART_LCR_PARITY) uarts[i].iregs.rxser |= UART_LSR_PARITY << 8;
517 355 markom
                }
518 409 markom
                uarts[i].istat.rxser_full = 1;
519 355 markom
                received = 1;
520
                break;
521
              case 0x01:
522
                uarts[i].vapi.dll = (data >> 0) & 0xff;
523
                uarts[i].vapi.dlh = (data >> 8) & 0xff;
524
                break;
525
              case 0x02:
526 361 markom
                uarts[i].vapi.lcr = (data >> 8) & 0xff;
527 355 markom
                break;
528
              case 0x03:
529
                uarts[i].vapi.skew = (signed short)(data & 0xffff);
530
                break;
531 385 markom
              case 0x04:
532
                uarts[i].vapi.next_break_cnt = data & 0xffff;
533
                uarts[i].vapi.next_break = (data >> 16) & 1;
534
                break;
535 355 markom
              default:
536 361 markom
                debug (0, "WARNING: Invalid vapi command %02x\n", data >> 24);
537 355 markom
                break;
538
            }
539
          } else break;
540
        }
541
      }
542
    }
543 341 markom
 
544 385 markom
    /***************** Loopback *****************/
545 355 markom
    if (uarts[i].regs.mcr & UART_MCR_LOOP) {
546
      debug(5, "uart_clock: Loopback\n");
547
      if ((uarts[i].regs.mcr & UART_MCR_AUX2) !=
548
          ((uarts[i].regs.msr & UART_MSR_DCD) >> 4))
549
        uarts[i].regs.msr |= UART_MSR_DDCD;
550
      if ((uarts[i].regs.mcr & UART_MCR_AUX1) <
551
          ((uarts[i].regs.msr & UART_MSR_RI) >> 4))
552
        uarts[i].regs.msr |= UART_MSR_TERI;
553
      if ((uarts[i].regs.mcr & UART_MCR_RTS) !=
554
          ((uarts[i].regs.msr & UART_MSR_CTS) >> 3))
555
        uarts[i].regs.msr |= UART_MSR_DCTS;
556
      if ((uarts[i].regs.mcr & UART_MCR_DTR) !=
557
          ((uarts[i].regs.msr & UART_MSR_DSR) >> 5))
558
        uarts[i].regs.msr |= UART_MSR_DDSR;
559
      uarts[i].regs.msr &= ~(UART_MSR_DCD | UART_MSR_RI
560
                | UART_MSR_DSR | UART_MSR_CTS);
561
      uarts[i].regs.msr |= ((uarts[i].regs.mcr & UART_MCR_AUX2) << 4);
562
      uarts[i].regs.msr |= ((uarts[i].regs.mcr & UART_MCR_AUX1) << 4);
563
      uarts[i].regs.msr |= ((uarts[i].regs.mcr & UART_MCR_RTS) << 3);
564
      uarts[i].regs.msr |= ((uarts[i].regs.mcr & UART_MCR_DTR) << 5);
565
    }
566
 
567 409 markom
    if (uarts[i].regs.lsr & UART_LSR_RDRDY)
568
      uarts[i].istat.timeout_count++;
569 411 markom
 
570
    /* Update LSR error bits from the ones from rx FIFO */
571
    if (uarts[i].istat.rxbuf_full) {
572
      uarts[i].regs.lsr |= uarts[i].regs.rxbuf[uarts[i].istat.rxbuf_tail] >> 8;
573
      /* we must delete the lsr status, so that we can clear it from lsr */
574
      uarts[i].regs.rxbuf[uarts[i].istat.rxbuf_tail] &= 0xff;
575
    }
576 409 markom
 
577 355 markom
    /* Interrupt detection in proper priority order. */
578
    uarts[i].regs.iir = UART_IIR_NO_INT;
579 409 markom
    if (uarts[i].regs.ier & UART_IER_RLSI &&                    /* Receiver LS */
580 355 markom
        uarts[i].regs.lsr & (UART_LSR_OVRRUN | UART_LSR_PARITY
581
          | UART_LSR_FRAME | UART_LSR_BREAK)) {
582
      uarts[i].regs.iir = UART_IIR_RLSI;
583 409 markom
    } else if ((uarts[i].regs.ier & UART_IER_RDI)               /* RD available */
584
        && (uarts[i].istat.rxbuf_full >= UART_FIFO_TRIGGER(uarts[i].regs.fcr >> 6))
585
        && (uarts[i].regs.lsr & UART_LSR_RDRDY)) {
586 355 markom
      uarts[i].regs.iir = UART_IIR_RDI;
587 409 markom
    } else if ((uarts[i].regs.ier & UART_IER_RDI)               /* timeout */
588
        && (uarts[i].istat.timeout_count >= UART_CHAR_TIMEOUT * uarts[i].char_clks)) {
589
      uarts[i].regs.iir = UART_IIR_CTI;
590
    } else if (uarts[i].regs.ier & UART_IER_THRI &&             /* Transm. empty */
591 355 markom
        uarts[i].regs.lsr & UART_LSR_TXBUFE &&
592
        uarts[i].istat.thre_int == 1) {
593
      uarts[i].regs.iir = UART_IIR_THRI;
594 409 markom
    } else if (uarts[i].regs.ier & UART_IER_MSI &&              /* Modem status */
595 355 markom
        uarts[i].regs.msr & (UART_MSR_DCTS | UART_MSR_DDSR
596
          | UART_MSR_TERI | UART_MSR_DDCD)) {
597
      uarts[i].regs.iir = UART_IIR_MSI;
598
    }
599 409 markom
    if (!(uarts[i].regs.iir & UART_IIR_NO_INT)) {
600
      debug (4, "uarts[i].regs.iir = %i\t", uarts[i].regs.iir);
601 355 markom
      report_interrupt(config.uarts[i].irq);
602 409 markom
    }
603 355 markom
  }
604 31 lampret
}
605
 
606
/* Print register values on stdout. */
607
void uart_status()
608
{
609 355 markom
  int i, j;
610
 
611
  for(i = 0; i < config.nuarts; i++) {
612
    if ( !config.uarts[i].baseaddr )
613
      continue;
614
    printf("\nUART%d visible registers at 0x%.8x:\n", i, config.uarts[i].baseaddr);
615
    printf("RXBUF:");
616
    for (j = uarts[i].istat.rxbuf_head; j != uarts[i].istat.rxbuf_tail; j = (j + 1) % uarts[i].fifo_len)
617
      printf (" %.2x", uarts[i].regs.rxbuf[j]);
618
    printf("  TXBUF: %.2x\n", uarts[i].regs.txbuf);
619
    printf("DLL  : %.2x  DLH  : %.2x\n", uarts[i].regs.dll, uarts[i].regs.dlh);
620
    printf("IER  : %.2x  IIR  : %.2x\n", uarts[i].regs.ier, uarts[i].regs.iir);
621
    printf("LCR  : %.2x  MCR  : %.2x\n", uarts[i].regs.lcr, uarts[i].regs.mcr);
622
    printf("LSR  : %.2x  MSR  : %.2x\n", uarts[i].regs.lsr, uarts[i].regs.msr);
623
    printf("SCR  : %.2x\n", uarts[i].regs.scr);
624 31 lampret
 
625 355 markom
    printf("\nInternal registers (sim debug):\n");
626
    printf("RXSER: %.2x  TXSER: %.2x\n", uarts[i].iregs.rxser, uarts[i].iregs.txser);
627 31 lampret
 
628 355 markom
    printf("\nInternal status (sim debug):\n");
629
    printf("char_clks: %d\n", uarts[i].char_clks);
630
    printf("rxser_clks: %d  txser_clks: %d\n", uarts[i].istat.rxser_clks, uarts[i].istat.txser_clks);
631
    printf("rxser: %d  txser: %d\n", uarts[i].istat.rxser_full, uarts[i].istat.txser_full);
632
    printf("rxbuf: %d  txbuf: %d\n", uarts[i].istat.rxbuf_full, uarts[i].istat.txbuf_full);
633 344 markom
    printf("Using IRQ%i\n", config.uarts[i].irq);
634 336 markom
    if (config.uarts[i].vapi_id)
635
      printf ("Connected to vapi ID=%x\n\n", config.uarts[i].vapi_id);
636
    else
637 355 markom
      printf("RX fs: %p  TX fs: %p\n\n", uarts[i].rxfs, uarts[i].txfs);
638
  }
639 31 lampret
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.