Searched refs:map__ (Results 1 – 2 of 2) sorted by relevance
| /linux/include/linux/ |
| H A D | iosys-map.h | 389 #define iosys_map_rd(map__, offset__, type__) ({ \ argument 391 if ((map__)->is_iomem) { \ 392 __iosys_map_rd_io(val_, (map__)->vaddr_iomem + (offset__), type__); \ 394 __iosys_map_rd_sys(val_, (map__)->vaddr + (offset__), type__); \ 411 #define iosys_map_wr(map__, offset__, type__, val__) ({ \ argument 413 if ((map__)->is_iomem) { \ 414 __iosys_map_wr_io(val_, (map__)->vaddr_iomem + (offset__), type__); \ 416 __iosys_map_wr_sys(val_, (map__)->vaddr + (offset__), type__); \ 482 #define iosys_map_rd_field(map__, struct_offset__, struct_type__, field__) ({ \ argument 484 iosys_map_rd(map__, struct_offset__ + offsetof(struct_type__, field__), \ [all …]
|
| /linux/drivers/gpu/drm/xe/ |
| H A D | xe_map.h | 69 #define xe_map_rd(xe__, map__, offset__, type__) ({ \ argument 72 iosys_map_rd(map__, offset__, type__); \ 75 #define xe_map_wr(xe__, map__, offset__, type__, val__) ({ \ argument 78 iosys_map_wr(map__, offset__, type__, val__); \ 81 #define xe_map_rd_field(xe__, map__, struct_offset__, struct_type__, field__) ({ \ argument 84 iosys_map_rd_field(map__, struct_offset__, struct_type__, field__); \ 87 #define xe_map_wr_field(xe__, map__, struct_offset__, struct_type__, field__, val__) ({ \ argument 90 iosys_map_wr_field(map__, struct_offset__, struct_type__, field__, val__); \
|