Lines Matching refs:phys
64 #define set_fixmap(idx, phys) \
65 __set_fixmap(idx, phys, FIXMAP_PAGE_NORMAL)
74 #define __set_fixmap_offset(idx, phys, flags) \
77 __set_fixmap(idx, phys, flags); \
78 ________addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
82 #define set_fixmap_offset(idx, phys) \
83 __set_fixmap_offset(idx, phys, FIXMAP_PAGE_NORMAL)
88 #define set_fixmap_nocache(idx, phys) \
89 __set_fixmap(idx, phys, FIXMAP_PAGE_NOCACHE)
91 #define set_fixmap_offset_nocache(idx, phys) \
92 __set_fixmap_offset(idx, phys, FIXMAP_PAGE_NOCACHE)
97 #define set_fixmap_io(idx, phys) \
98 __set_fixmap(idx, phys, FIXMAP_PAGE_IO)
100 #define set_fixmap_offset_io(idx, phys) \
101 __set_fixmap_offset(idx, phys, FIXMAP_PAGE_IO)