why volatile on vgacon.c?

From: Santiago Garcia Mantinan (manty@i.am)
Date: Wed Nov 29 2000 - 11:24:15 EST


Hi!

I used to be able to run my 12 ethernet ports pentium based bridge without
vga card, but with tty1, tty2, ... still working, as the kernel used to
recognice a kind of a cga card on my machine even though there was none. But
the kernel could write to the memory were the card was supposed to be, and
so it worked.

That was on 2.2 series, but since I moved it to 2.4 series I don't have that
cga card found anymore. I have looked on the kernel code and followed it to
the __init function in vgacon.c, more concretely this piece of code...

        scr_writew(0xAA55, p);
        scr_writew(0x55AA, p + 1);
        if (scr_readw(p) != 0xAA55 || scr_readw(p + 1) != 0x55AA) {

Well, the thing is that this code and the code in this function is almost
the same in 2.4 as in 2.2, however reading returns the written values on 2.2
and different ones (0xffff) on 2.4

This is caused by the volatile declaration of *p on 2.4, so the questions
are:

was the old (I have found a CGA) behaviour considered a bug and is the
volatile declaration its fix?

If so, is there any way to have /dev/tty1 on a no graphic card i386 machine?
(besides unvolatilizating *p wich works for me)

Regards...

-- 
Manty/BestiaTester -> http://manty.net

PS: Please cc me, as I'm not on the list. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Nov 30 2000 - 21:00:22 EST