Lines Matching defs:physical

121     vm_offset_t physical, int flags);
123 vm_offset_t physical, int flags);
125 vm_offset_t physical, int flags);
127 vm_offset_t physical, int flags);
129 vm_offset_t physical, int flags);
1279 device_printf(dev, "agp_i810 does not support physical "
1460 * beginning of the aperture to the given physical address. Setup the
1467 * Also, the bits of the physical page address above 4GB needs to be
1471 agp_i810_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
1476 pte = (u_int32_t)physical | I810_PTE_VALID;
1495 agp_i830_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
1500 pte = (u_int32_t)physical | I810_PTE_VALID;
1507 agp_i915_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
1512 pte = (u_int32_t)physical | I810_PTE_VALID;
1515 pte |= (physical & 0x0000000f00000000ull) >> 28;
1530 agp_i965_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
1535 pte = (u_int32_t)physical | I810_PTE_VALID;
1538 pte |= (physical & 0x0000000f00000000ull) >> 28;
1553 agp_g4x_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
1558 pte = (u_int32_t)physical | I810_PTE_VALID;
1561 pte |= (physical & 0x0000000f00000000ull) >> 28;
1576 agp_i810_bind_page(device_t dev, vm_offset_t offset, vm_offset_t physical)
1592 sc->match->driver->install_gtt_pte(dev, index, physical, 0);
1722 * Type 2 is the contiguous physical memory type, that hands
1723 * back a physical address. This is used for cursors on i810.
1724 * Hand back as many single pages with physical as the user
1754 * get its physical address.
1763 * Just grab the physical address.