Lab 19, keyboard through serial, fixes to get Ls

In previous Lab we got a screen working, but still no way to send commands into Raspberry computer. My guess that for time being it just simple enough to make the keyboard input coming from serial cable, so then I can play with Sh on raspberry and do some simple experiments onboard until I will have the Usb subsystem working and it recognize keyboard connected to RPi.

To work with input from Pl011 we should have it in non-blocking way. To do so we just make some function like pl011init() and check the serial io port for waiting bytes with timer (using addclock0link()). Take some consulting with port/devuart.c and see that for 115200 it is enough to check it every 22 ms. You may see that the programming is really simple:

void
pl011init(void)
{
    /*
     * at 115200 baud, the 1024 char buffer takes 56 ms to process,
     * processing it every 22 ms should be fine
     */
    addclock0link(pl011_clock, 22);
}

And in pl011_clock we just check for waiting bytes:

static void
pl011_clock(void)
{
    char c;
    int i;
    if (pl011_tstc()) {
        c = pl011_getc();
        if (c == 13) {
            pl011_putc('\r');
            pl011_putc('\n');
            kbdputc(kbdq,'\r');
            kbdputc(kbdq,'\n');
            return;
        }
        pl011_putc(c);
        kbdputc(kbdq,c);
    }
}

But now if we try to execute something from osinit.b like Sh:

init(nil: ref Draw->Context, nil: list of string)
{
    shell := load Sh "/dis/sh.dis";
    sys = load Sys Sys->PATH;
    sys->print("init: starting shell\n");

    sys->bind("#i", "/dev", sys->MREPL);    # draw device
    sys->bind("#c", "/dev", sys->MAFTER);   # console device
    sys->bind("#u", "/dev", sys->MAFTER);   # usb subsystem

    spawn shell->init(nil, nil);
}

We get a fault with lock:

$ panic: ilock: no way out: pc 0x30f1c: lock 0x0 held by pc 0xe59ff018
ktrace/kernel/path 00009578 00ad07f4 00000000

Tracing of the problem leads us to the fact that we haven’t initialized kbdq (Keyboard Queue). Simple fact but hard to reveal and sure you can not google about :).
So add to pl011init():

    if(kbdq == nil)
        kbdq = qopen(4*1024, 0, 0, 0);

Now Sh looks as started and when we try to type symbols on our serial console they also appear on screen connected to Raspberry Pi. Success! No, wait, attempt to run Ls give us the another fault:

$ ls
panic: Undefined instruction
 ktrace/kernel/path 0000968c 00add608 00000000
[Ls] Broken: "sys: trap: fault pc=000095a4"
3 "Ls":sys: trap: fault pc=000095a4
,$ pwd
/
$ echo 123
123
$

But echo and pwd are working. So, what it can be? After long study and experiement first I found that when trap.c was written I put panic() for PsMund, but Inferno+Arm uses “undefined instructions” to work with FPU. Oops, we do not have any FPU codes currently. So started to migrate some code again from 9pi. Added fpiarm.c, had to adjust it to fit Inferno, but little. From port added fpi and fpimem. Some polishing, compiling and still faulting, but at least I know that it if FPU codes, so for now I just disabled fpemu() in fpiarm(). And I got Ls finally working!

Ls-in-Sh

FILES:
rpi-lab-19.zip

This entry was posted in Blog, Inferno OS, Raspberry Pi, Research. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

One Comment

  1. fred
    Posted December 1, 2013 at 01:15 | Permalink

    nice one !

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>