On Gwe, 2005-07-01 at 13:54, Maciej W. Rozycki wrote:
> > writeb/writel may be merged in some cases (but not re-ordered) for I/O
>
> Is that non-reordering specified anywhere for the API or does it just
> happen to be satisfied by most implementations? Ours (for MIPS, that is)
> for example does nothing to ensure that.
It is defined by the device I/O document as follows:
The read and write functions are defined to be ordered. That is
the
compiler is not permitted to reorder the I/O sequence. When the
ordering can be compiler optimised, you can use <function>
__readb</function> and friends to indicate the relaxed ordering.
Use
this with care.
Note order - not synchronicity. On that it says
While the basic functions are defined to be synchronous with
respect
to each other and ordered with respect to each other the busses
the
devices sit on may themselves have asynchronicity. In particular
many
authors are burned by the fact that PCI bus writes are posted
asynchronously. A driver author must issue a read from the same
device to ensure that writes have occurred in the specific cases
the
author cares. This kind of property cannot be hidden from driver
writers in the API. In some cases, the read used to flush the
device
may be expected to fail (if the card is resetting, for
example). In
that case, the read should be done from config space, which is
guaranteed to soft-fail if the card doesn't respond.
> What if the host I/O bus is not PCI? For this kind of stuff I tend to
> think in the terms of TURBOchannel systems, just to be sure not to get
> influenced by the most common hardware. ;-)
The bus behaviour is bus defined.
> Again, the I/O bus your host is attached to need not be PCI and you may
> need a bridge specific operation to make your write be completed, possibly
> combined with your quoted sequence (if there is actually PCI somewhere in
> the system; think AlphaServer 8400).
We don't currently have cross bridge "io_write_and_be_synchronous()"
type functions. So far drivers have always known what to do. Your
example might break that of course.
Alan
--
"In flight refueling scares me. It's like two elephants
mating at mach one"
-- Arjan van de Ven
|