On Tue, 1 Jan 2008 22:01:43 +0100 Ingo Molnar <[EMAIL PROTECTED]> wrote:
> > out 80h, al is only two bytes. Any alternative that has been > > suggested in this discussion will use more space. mov dx, > > alt_port; out dx, al will be larger, a function call will > > definitely be a lot larger. People have been making changes to the > > kernel to save a couple of hundred bytes of text size. > > i've done dozens of patches that saved much less of text size, so > yes, i very much care about code size. But it has been stated in this > thread that most of the _p() API uses in the kernel today are bogus. > So eventually getting rid of the bogus ones will be a net code size > _reduction_. (But even that is besides the point, we prefer clean and > easier to maintain code.) And once again, the _p in the code that talks to the PIT is very much non-bogus. And it is a critical path that's called a lot. The i8253 PIT and the i8259 interrupt controller are probably the only ones that are relevant on a modern machine, and it seems that even some fairly modern chipsets have limitations on how fast you can drive them. BTW, I just checked the Intel M8253 data sheet (dead tree variant), and it says under A.C Characteristics, READ CYCLE: Recovery Time Between /READ and Any Other Control Signal: 1 us So at least for the original M8253 a udelay(1) might be more appropriate than outb_p, since the delay is not expressed in clock cycles but absolute time. The data sheet for the Intel M8259A says: End of /RD to Next Command: 300 ns End of /WR to Next Command: 370 ns On the other hand, I don't know how all the i8253/i8259 clones or the numerous variants of Super I/O chips behave. It wouldn't surprise me if some Super I/O chip uses the ISA bus clock to latch the values internally so that the delay is dependent on the bus frequency instead. > > I don't know if the difference in code size or the udelay will be > > significantly slower, but I think it might be. > > ok, "I dont know but it might be slower" is a perfectly fine > statement instead of your original "it will be slower". I didn't say that, I said I'm afraid it will be slower. :-) /Christer -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/