Home | History | Annotate | Download | only in Library

Lines Matching refs:Segment

19   Macro that converts PCI Segment and I/O Port to an address that can be

23 The unused upper bits of Segment, and Port are stripped prior to the
26 @param Segment PCI Segment number. Range 0..65535.
33 #define IO_LIB_ADDRESS(Segment,Port) \
34 ( ((Port) & 0xffff) | (((Segment) & 0xffff) << 16) )