Home | History | Annotate | Download | only in PciBusDxe

Lines Matching refs:Aperture

1121   UINT8                             Aperture;

1127 Aperture = 0;
1132 // if there is io request, add to the io aperture
1136 Aperture |= 0x01;
1140 // if there is mem32 request, add to the mem32 aperture
1144 Aperture |= 0x02;
1148 // if there is pmem32 request, add to the pmem32 aperture
1152 Aperture |= 0x04;
1156 // if there is mem64 request, add to the mem64 aperture
1160 Aperture |= 0x08;
1164 // if there is pmem64 request, add to the pmem64 aperture
1168 Aperture |= 0x10;
1185 // Deal with io aperture
1187 if ((Aperture & 0x01) != 0) {
1204 // Deal with mem32 aperture
1206 if ((Aperture & 0x02) != 0) {
1228 // Deal with Pmem32 aperture
1230 if ((Aperture & 0x04) != 0) {
1251 // Deal with mem64 aperture
1253 if ((Aperture & 0x08) != 0) {
1274 // Deal with Pmem64 aperture
1276 if ((Aperture & 0x10) != 0) {
1370 // Memory type aperture
1397 // Io type aperture