/[gxemul]/trunk/src/devices/dev_ns16550.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/src/devices/dev_ns16550.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 10 by dpavlin, Mon Oct 8 16:18:27 2007 UTC revision 22 by dpavlin, Mon Oct 8 16:19:37 2007 UTC
# Line 1  Line 1 
1  /*  /*
2   *  Copyright (C) 2003-2005  Anders Gavare.  All rights reserved.   *  Copyright (C) 2003-2006  Anders Gavare.  All rights reserved.
3   *   *
4   *  Redistribution and use in source and binary forms, with or without   *  Redistribution and use in source and binary forms, with or without
5   *  modification, are permitted provided that the following conditions are met:   *  modification, are permitted provided that the following conditions are met:
# Line 25  Line 25 
25   *  SUCH DAMAGE.   *  SUCH DAMAGE.
26   *     *  
27   *   *
28   *  $Id: dev_ns16550.c,v 1.33 2005/06/26 11:43:48 debug Exp $   *  $Id: dev_ns16550.c,v 1.51 2006/02/18 13:42:39 debug Exp $
29   *     *  
30   *  NS16550 serial controller.   *  NS16550 serial controller.
31   *   *
32   *  TODO: actually implement the fifo :)   *
33     *  TODO: Implement the FIFO.
34   */   */
35    
36  #include <stdio.h>  #include <stdio.h>
# Line 38  Line 39 
39    
40  #include "console.h"  #include "console.h"
41  #include "cpu.h"  #include "cpu.h"
42  #include "devices.h"  #include "device.h"
43  #include "machine.h"  #include "machine.h"
44  #include "memory.h"  #include "memory.h"
45  #include "misc.h"  #include "misc.h"
# Line 46  Line 47 
47  #include "comreg.h"  #include "comreg.h"
48    
49    
50  /*  #define     debug           fatal  */  /*  #define debug fatal  */
   
 #define NS16550_TICK_SHIFT              14  
   
 /*  #define DISABLE_FIFO  */  
51    
52    #define TICK_SHIFT              14
53    #define DEV_NS16550_LENGTH      8
54    
55  struct ns_data {  struct ns_data {
56          int             reg[8];          int             addrmult;
57            int             in_use;
58          int             irqnr;          int             irqnr;
59            char            *name;
60          int             console_handle;          int             console_handle;
61            int             enable_fifo;
62    
63          int             irq_enable;          unsigned char   reg[DEV_NS16550_LENGTH];
64          int             addrmult;          unsigned char   fcr;            /*  FIFO control register  */
65          int             in_use;          int             int_asserted;
66          int             dlab;           /*  Divisor Latch Access bit  */          int             dlab;           /*  Divisor Latch Access bit  */
67          int             divisor;          int             divisor;
68    
69          int             databits;          int             databits;
70          char            parity;          char            parity;
71          const char      *stopbits;          const char      *stopbits;
# Line 72  struct ns_data { Line 74  struct ns_data {
74    
75  /*  /*
76   *  dev_ns16550_tick():   *  dev_ns16550_tick():
77     *
78     *  This function is called at regular intervals. An interrupt is caused to the
79     *  CPU if there is a character available for reading, or if the transmitter
80     *  slot is empty (i.e. the ns16550 is ready to transmit).
81   */   */
82  void dev_ns16550_tick(struct cpu *cpu, void *extra)  void dev_ns16550_tick(struct cpu *cpu, void *extra)
83  {  {
84          struct ns_data *d = extra;          struct ns_data *d = extra;
85    
         d->reg[com_iir] |= IIR_NOPEND;  
         cpu_interrupt_ack(cpu, d->irqnr);  
   
86          d->reg[com_iir] &= ~IIR_RXRDY;          d->reg[com_iir] &= ~IIR_RXRDY;
87          if (d->in_use) {          if (console_charavail(d->console_handle))
88                  if (console_charavail(d->console_handle))                  d->reg[com_iir] |= IIR_RXRDY;
                         d->reg[com_iir] |= IIR_RXRDY;  
         }  
89    
90          if ((d->irq_enable & IER_ETXRDY && d->reg[com_iir] & IIR_TXRDY) ||          /*
91              (d->irq_enable & IER_ERXRDY && d->reg[com_iir] & IIR_RXRDY)) {           *  If interrupts are enabled, and interrupts are pending, then
92             *  cause a CPU interrupt.
93             */
94            if (((d->reg[com_ier] & IER_ETXRDY) && (d->reg[com_iir] & IIR_TXRDY)) ||
95                ((d->reg[com_ier] & IER_ERXRDY) && (d->reg[com_iir] & IIR_RXRDY))) {
96                  d->reg[com_iir] &= ~IIR_NOPEND;                  d->reg[com_iir] &= ~IIR_NOPEND;
97                  if (d->reg[com_mcr] & MCR_IENABLE)                  if (d->reg[com_mcr] & MCR_IENABLE) {
98                          cpu_interrupt(cpu, d->irqnr);                          cpu_interrupt(cpu, d->irqnr);
99                            d->int_asserted = 1;
100                    }
101            } else {
102                    d->reg[com_iir] |= IIR_NOPEND;
103                    if (d->int_asserted)
104                            cpu_interrupt_ack(cpu, d->irqnr);
105                    d->int_asserted = 0;
106          }          }
107  }  }
108    
# Line 98  void dev_ns16550_tick(struct cpu *cpu, v Line 110  void dev_ns16550_tick(struct cpu *cpu, v
110  /*  /*
111   *  dev_ns16550_access():   *  dev_ns16550_access():
112   */   */
113  int dev_ns16550_access(struct cpu *cpu, struct memory *mem,  DEVICE_ACCESS(ns16550)
         uint64_t relative_addr, unsigned char *data, size_t len,  
         int writeflag, void *extra)  
114  {  {
115          uint64_t idata = 0, odata=0;          uint64_t idata = 0, odata=0;
116          int i;          size_t i;
117          struct ns_data *d = extra;          struct ns_data *d = extra;
118    
119          idata = memory_readmax64(cpu, data, len);          if (writeflag == MEM_WRITE)
120                    idata = memory_readmax64(cpu, data, len);
121    
122    #if 0
123            /*  The NS16550 should be accessed using byte read/writes:  */
124            if (len != 1)
125                    fatal("[ ns16550 (%s): len=%i, idata=0x%16llx! ]\n",
126                        d->name, len, (long long)idata);
127    #endif
128    
129          /*  Always ready to transmit:  */          /*
130             *  Always ready to transmit:
131             */
132          d->reg[com_lsr] |= LSR_TXRDY | LSR_TSRE;          d->reg[com_lsr] |= LSR_TXRDY | LSR_TSRE;
133          d->reg[com_lsr] &= ~LSR_RXRDY;          d->reg[com_msr] |= MSR_DCD | MSR_DSR | MSR_CTS;
         d->reg[com_msr] = MSR_DCD | MSR_DSR | MSR_CTS;  
134    
135  #ifdef DISABLE_FIFO          d->reg[com_iir] &= ~0xf0;
136          /*  FIFO turned off:  */          if (d->enable_fifo)
137          d->reg[com_iir] &= 0x0f;                  d->reg[com_iir] |= ((d->fcr << 5) & 0xc0);
 #endif  
138    
139          if (d->in_use) {          d->reg[com_lsr] &= ~LSR_RXRDY;
140                  if (console_charavail(d->console_handle)) {          if (console_charavail(d->console_handle))
141                          d->reg[com_lsr] |= LSR_RXRDY;                  d->reg[com_lsr] |= LSR_RXRDY;
                 }  
         }  
142    
143          relative_addr /= d->addrmult;          relative_addr /= d->addrmult;
144    
145            if (relative_addr >= DEV_NS16550_LENGTH) {
146                    fatal("[ ns16550 (%s): outside register space? relative_addr="
147                        "0x%llx. bad addrmult? bad device length? ]\n", d->name,
148                        (long long)relative_addr);
149                    return 0;
150            }
151    
152          switch (relative_addr) {          switch (relative_addr) {
153          case com_data:  /*  com_data or com_dlbl  */  
154            case com_data:  /*  data AND low byte of the divisor  */
155                  /*  Read/write of the Divisor value:  */                  /*  Read/write of the Divisor value:  */
156                  if (d->dlab) {                  if (d->dlab) {
157                          if (writeflag == MEM_WRITE) {                          /*  Write or read the low byte of the divisor:  */
158                                  /*  Set the low byte of the divisor:  */                          if (writeflag == MEM_WRITE)
159                                  d->divisor &= ~0xff;                                  d->divisor = (d->divisor & 0xff00) | idata;
160                                  d->divisor |= (idata & 0xff);                          else
                         } else {  
161                                  odata = d->divisor & 0xff;                                  odata = d->divisor & 0xff;
                         }  
162                          break;                          break;
163                  }                  }
164    
165                  /*  Read write of data:  */                  /*  Read/write of data:  */
166                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
167                          if (d->reg[com_mcr] & MCR_LOOPBACK) {                          if (d->reg[com_mcr] & MCR_LOOPBACK)
168                                  console_makeavail(d->console_handle, idata);                                  console_makeavail(d->console_handle, idata);
169                          } else {                          else
 #if 0  
                                 /*  Ugly hack: don't show form feeds:  */  
                                 if (idata != 12)  
 #endif  
170                                  console_putchar(d->console_handle, idata);                                  console_putchar(d->console_handle, idata);
                         }  
   
171                          d->reg[com_iir] |= IIR_TXRDY;                          d->reg[com_iir] |= IIR_TXRDY;
                         dev_ns16550_tick(cpu, d);  
                         return 1;  
172                  } else {                  } else {
173                          if (d->in_use)                          int x = console_readchar(d->console_handle);
174                                  odata = console_readchar(d->console_handle);                          odata = x < 0? 0 : x;
                         else  
                                 odata = 0;  
                         dev_ns16550_tick(cpu, d);  
175                  }                  }
176                    dev_ns16550_tick(cpu, d);
177                  break;                  break;
178    
179          case com_ier:   /*  interrupt enable AND high byte of the divisor  */          case com_ier:   /*  interrupt enable AND high byte of the divisor  */
180                  /*  Read/write of the Divisor value:  */                  /*  Read/write of the Divisor value:  */
181                  if (d->dlab) {                  if (d->dlab) {
182                          if (writeflag == MEM_WRITE) {                          if (writeflag == MEM_WRITE) {
183                                  /*  Set the high byte of the divisor:  */                                  /*  Set the high byte of the divisor:  */
184                                  d->divisor &= ~0xff00;                                  d->divisor = (d->divisor & 0xff) | (idata << 8);
185                                  d->divisor |= ((idata & 0xff) << 8);                                  debug("[ ns16550 (%s): speed set to %i bps ]\n",
186                                  debug("[ ns16550 speed set to %i bps ]\n",                                      d->name, (int)(115200 / d->divisor));
187                                      115200 / d->divisor);                          } else
188                          } else {                                  odata = d->divisor >> 8;
                                 odata = (d->divisor & 0xff00) >> 8;  
                         }  
189                          break;                          break;
190                  }                  }
191    
# Line 182  int dev_ns16550_access(struct cpu *cpu, Line 193  int dev_ns16550_access(struct cpu *cpu,
193                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
194                          /*  This is to supress Linux' behaviour  */                          /*  This is to supress Linux' behaviour  */
195                          if (idata != 0)                          if (idata != 0)
196                                  debug("[ ns16550 write to ier: 0x%02x ]\n",                                  debug("[ ns16550 (%s): write to ier: 0x%02x ]"
197                                      idata);                                      "\n", d->name, (int)idata);
198    
199                          /*  Needed for NetBSD 2.0, but not 1.6.2?  */                          /*  Needed for NetBSD 2.0.x, but not 1.6.2?  */
200                          if (!(d->irq_enable & IER_ETXRDY)                          if (!(d->reg[com_ier] & IER_ETXRDY)
201                              && (idata & IER_ETXRDY))                              && (idata & IER_ETXRDY))
202                                  d->reg[com_iir] |= IIR_TXRDY;                                  d->reg[com_iir] |= IIR_TXRDY;
203    
204                          d->irq_enable = idata;                          d->reg[com_ier] = idata;
205                          dev_ns16550_tick(cpu, d);                          dev_ns16550_tick(cpu, d);
206                  } else {                  } else
207                          odata = d->reg[relative_addr];                          odata = d->reg[com_ier];
                 }  
208                  break;                  break;
209    
210          case com_iir:   /*  interrupt identification (r), fifo control (w)  */          case com_iir:   /*  interrupt identification (r), fifo control (w)  */
211                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
212                          debug("[ ns16550 write to fifo control ]\n");                          debug("[ ns16550 (%s): write to fifo control: 0x%02x ]"
213                          d->reg[relative_addr] = idata;                              "\n", d->name, (int)idata);
214                            d->fcr = idata;
215                  } else {                  } else {
216                          odata = d->reg[relative_addr];                          odata = d->reg[com_iir];
217                          debug("[ ns16550 read from iir: 0x%02x ]\n", odata);                          debug("[ ns16550 (%s): read from iir: 0x%02x ]\n",
218                                d->name, (int)odata);
219                          dev_ns16550_tick(cpu, d);                          dev_ns16550_tick(cpu, d);
220                  }                  }
221                  break;                  break;
222    
223          case com_lsr:          case com_lsr:
224                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
225                          debug("[ ns16550 write to lsr ]\n");                          debug("[ ns16550 (%s): write to lsr: 0x%02x ]\n",
226                          d->reg[relative_addr] = idata;                              d->name, (int)idata);
227                            d->reg[com_lsr] = idata;
228                  } else {                  } else {
229                          odata = d->reg[relative_addr];                          odata = d->reg[com_lsr];
230                            /*  debug("[ ns16550 (%s): read from lsr: 0x%02x ]\n",
231                                d->name, (int)odata);  */
232                  }                  }
233                  break;                  break;
234    
235          case com_msr:          case com_msr:
236                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
237                          debug("[ ns16550 write to msr ]\n");                          debug("[ ns16550 (%s): write to msr: 0x%02x ]\n",
238                          d->reg[relative_addr] = idata;                              d->name, (int)idata);
239                            d->reg[com_msr] = idata;
240                  } else {                  } else {
241                          odata = d->reg[relative_addr];                          odata = d->reg[com_msr];
242                            debug("[ ns16550 (%s): read from msr: 0x%02x ]\n",
243                                d->name, (int)odata);
244                  }                  }
245                  break;                  break;
246    
247          case com_lctl:          case com_lctl:
248                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
249                          d->reg[relative_addr] = idata;                          d->reg[com_lctl] = idata;
250                          switch (idata & 0x7) {                          switch (idata & 0x7) {
251                          case 0: d->databits = 5; d->stopbits = "1"; break;                          case 0: d->databits = 5; d->stopbits = "1"; break;
252                          case 1: d->databits = 6; d->stopbits = "1"; break;                          case 1: d->databits = 6; d->stopbits = "1"; break;
# Line 248  int dev_ns16550_access(struct cpu *cpu, Line 270  int dev_ns16550_access(struct cpu *cpu,
270    
271                          d->dlab = idata & 0x80? 1 : 0;                          d->dlab = idata & 0x80? 1 : 0;
272    
273                          debug("[ ns16550 write to lctl: 0x%02x (%s%s"                          debug("[ ns16550 (%s): write to lctl: 0x%02x (%s%s"
274                              "setting mode %i%c%s) ]\n",                              "setting mode %i%c%s) ]\n", d->name, (int)idata,
                             (int)idata,  
275                              d->dlab? "Divisor Latch access, " : "",                              d->dlab? "Divisor Latch access, " : "",
276                              idata&0x40? "sending BREAK, " : "",                              idata&0x40? "sending BREAK, " : "",
277                              d->databits, d->parity, d->stopbits);                              d->databits, d->parity, d->stopbits);
278                  } else {                  } else {
279                          odata = d->reg[relative_addr];                          odata = d->reg[com_lctl];
280                          debug("[ ns16550 read from lctl: 0x%02x ]\n", odata);                          debug("[ ns16550 (%s): read from lctl: 0x%02x ]\n",
281                                d->name, (int)odata);
282                  }                  }
283                  break;                  break;
284    
285          case com_mcr:          case com_mcr:
286                  if (writeflag == MEM_WRITE) {                  if (writeflag == MEM_WRITE) {
287                          d->reg[relative_addr] = idata;                          d->reg[com_mcr] = idata;
288                          debug("[ ns16550 write to mcr: 0x%02x ]\n", idata);                          debug("[ ns16550 (%s): write to mcr: 0x%02x ]\n",
289                                d->name, (int)idata);
290                  } else {                  } else {
291                          odata = d->reg[relative_addr];                          odata = d->reg[com_mcr];
292                          debug("[ ns16550 read from mcr: 0x%02x ]\n", odata);                          debug("[ ns16550 (%s): read from mcr: 0x%02x ]\n",
293                                d->name, (int)odata);
294                  }                  }
295                  break;                  break;
296    
297          default:          default:
298                  if (writeflag==MEM_READ) {                  if (writeflag==MEM_READ) {
299                          debug("[ ns16550 read from reg %i ]\n",                          debug("[ ns16550 (%s): read from reg %i ]\n",
300                              (int)relative_addr);                              d->name, (int)relative_addr);
301                          odata = d->reg[relative_addr];                          odata = d->reg[relative_addr];
302                  } else {                  } else {
303                          debug("[ ns16550 write to reg %i:",                          debug("[ ns16550 (%s): write to reg %i:",
304                              (int)relative_addr);                              d->name, (int)relative_addr);
305                          for (i=0; i<len; i++)                          for (i=0; i<len; i++)
306                                  debug(" %02x", data[i]);                                  debug(" %02x", data[i]);
307                          debug(" ]\n");                          debug(" ]\n");
# Line 290  int dev_ns16550_access(struct cpu *cpu, Line 316  int dev_ns16550_access(struct cpu *cpu,
316  }  }
317    
318    
319  /*  DEVINIT(ns16550)
  *  dev_ns16550_init():  
  */  
 int dev_ns16550_init(struct machine *machine, struct memory *mem,  
         uint64_t baseaddr, int irq_nr, int addrmult, int in_use,  
         char *name)  
320  {  {
321          struct ns_data *d;          struct ns_data *d = malloc(sizeof(struct ns_data));
322          size_t nlen;          size_t nlen;
323          char *name2;          char *name;
324    
         d = malloc(sizeof(struct ns_data));  
325          if (d == NULL) {          if (d == NULL) {
326                  fprintf(stderr, "out of memory\n");                  fprintf(stderr, "out of memory\n");
327                  exit(1);                  exit(1);
328          }          }
329          memset(d, 0, sizeof(struct ns_data));          memset(d, 0, sizeof(struct ns_data));
330          d->irqnr    = irq_nr;          d->irqnr        = devinit->irq_nr;
331          d->addrmult = addrmult;          d->addrmult     = devinit->addr_mult;
332          d->in_use   = in_use;          d->in_use       = devinit->in_use;
333          d->dlab     = 0;          d->enable_fifo  = 1;
334          d->divisor  = 115200 / 9600;          d->dlab         = 0;
335          d->databits = 8;          d->divisor      = 115200 / 9600;
336          d->parity   = 'N';          d->databits     = 8;
337          d->stopbits = "1";          d->parity       = 'N';
338          d->console_handle = console_start_slave(machine, name);          d->stopbits     = "1";
339            d->name         = devinit->name2 != NULL? devinit->name2 : "";
340          nlen = strlen(name) + 20;          d->console_handle =
341          name2 = malloc(nlen);              console_start_slave(devinit->machine, devinit->name2 != NULL?
342          if (name2 == NULL) {              devinit->name2 : devinit->name, d->in_use);
343                  fprintf(stderr, "out of memory in dev_ns16550_init()\n");  
344            nlen = strlen(devinit->name) + 10;
345            if (devinit->name2 != NULL)
346                    nlen += strlen(devinit->name2);
347            name = malloc(nlen);
348            if (name == NULL) {
349                    fprintf(stderr, "out of memory\n");
350                  exit(1);                  exit(1);
351          }          }
352          if (name != NULL && name[0])          if (devinit->name2 != NULL && devinit->name2[0])
353                  snprintf(name2, nlen, "ns16550 [%s]", name);                  snprintf(name, nlen, "%s [%s]", devinit->name, devinit->name2);
354          else          else
355                  snprintf(name2, nlen, "ns16550");                  snprintf(name, nlen, "%s", devinit->name);
356    
357          memory_device_register(mem, name2, baseaddr,          memory_device_register(devinit->machine->memory, name, devinit->addr,
358              DEV_NS16550_LENGTH * addrmult, dev_ns16550_access, d,              DEV_NS16550_LENGTH * d->addrmult, dev_ns16550_access, d,
359              MEM_DEFAULT, NULL);              DM_DEFAULT, NULL);
360          machine_add_tickfunction(machine, dev_ns16550_tick,          machine_add_tickfunction(devinit->machine,
361              d, NS16550_TICK_SHIFT);              dev_ns16550_tick, d, TICK_SHIFT);
362    
363            /*
364             *  NOTE:  Ugly cast into a pointer, because this is a convenient way
365             *         to return the console handle to code in src/machine.c.
366             */
367            devinit->return_ptr = (void *)(size_t)d->console_handle;
368    
369          return d->console_handle;          return 1;
370  }  }
371    

Legend:
Removed from v.10  
changed lines
  Added in v.22

  ViewVC Help
Powered by ViewVC 1.1.26