Changeset 93b84b3 in mainline for arch/mips32/src/drivers/serial.c


Ignore:
Timestamp:
2005-12-12T16:30:07Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ebbdb8f
Parents:
af9a7c5
Message:

Fixed weird simics panic.
Run kconsole, if we panic. This currently works in gxemul,
simics. In mips we need to modify the simulator.
On ia32 we need a function, that would speak directly to the chip
and fetch the character using polling.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips32/src/drivers/serial.c

    raf9a7c5 r93b84b3  
    7272}
    7373
    74 static chardev_operations_t serial_ops = {
    75         .resume = serial_enable,
    76         .suspend = serial_disable,
    77         .write = serial_write
    78 };
     74/** Read character from serial port, wait until available */
     75static char serial_do_read(chardev_t *dev)
     76{
     77        serial_t *sd = (serial_t *)dev->data;
     78        char ch;
     79
     80        while (!(SERIAL_READ_LSR(sd->port) & 1))
     81                ;
     82        ch = SERIAL_READ(sd->port);
     83
     84        if (ch =='\r')
     85                ch = '\n';
     86        return ch;
     87}
     88
    7989
    8090/** Process keyboard interrupt. Does not work in simics? */
     
    93103}
    94104
     105
     106
     107static chardev_operations_t serial_ops = {
     108        .resume = serial_enable,
     109        .suspend = serial_disable,
     110        .write = serial_write,
     111        .read = serial_do_read
     112};
    95113
    96114iroutine old_timer;
Note: See TracChangeset for help on using the changeset viewer.