Re: PCI drivers - memory mapped vs. I/O ports

Richard B. Johnson (root@chaos.analogic.com)
Mon, 18 Mar 2002 15:36:27 -0500 (EST)


On Mon, 18 Mar 2002, Ed Vance wrote:

> If a PCI device can be programmed equally well via I/O port space or memory
> space, what are the reasons to chose one space over the other when writing
> the driver?
>

o There is more 'memory' I/O space. Therefore you are more likely
to have enough space for your device when other boards are
installed. IOTW, you may find that there is no I/O space allocated
because there isn't any available.

o Memory address space I/O is faster on Intel Machines. You can
write or read whole buffers of I/O space in memory address space.
the best you can do in port space is one long-word at a time.

o PCI posted writes work when accessing memory-address I/O space.
Port I/O space cannot do this. The FIFO is written immediately
before any other access is allowed. This improves the access
speed in certain circumstances.

Basically, if you have a choice, it's hands-down to use memory-mapped
I/O space.

Cheers,
Dick Johnson

Penguin : Linux version 2.4.18 on an i686 machine (797.90 BogoMips).

Windows-2000/Professional isn't.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/