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


Ignore:
Timestamp:
2005-12-12T16:30:07Z (19 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/msim.c

    raf9a7c5 r93b84b3  
    3838static void msim_enable(chardev_t *dev);
    3939static void msim_disable(chardev_t *dev);
     40static char msim_do_read(chardev_t *dev);
    4041
    4142static chardev_operations_t msim_ops = {
    4243        .resume = msim_enable,
    4344        .suspend = msim_disable,
    44         .write = msim_write
     45        .write = msim_write,
     46        .read = msim_do_read,
    4547};
    4648
     
    6466
    6567#include <print.h>
     68/** Read character using polling, assume interrupts disabled */
     69static char msim_do_read(chardev_t *dev)
     70{
     71        char ch;
     72
     73        while (1) {
     74                ch = *((volatile char *) MSIM_KBD_ADDRESS);
     75                if (ch) {
     76                        if (ch == '\r')
     77                                return '\n';
     78                        if (ch == 0x7f)
     79                                return '\b';
     80                        return ch;
     81                }
     82        }
     83}
     84
    6685/** Process keyboard interrupt. */
    6786static void msim_interrupt(int n, void *stack)
    6887{
    69         char ch;
     88        char ch = 0;
    7089
    7190        ch = *((char *) MSIM_KBD_ADDRESS);
Note: See TracChangeset for help on using the changeset viewer.