Searched refs:REG_RANGE (Results 1 – 1 of 1) sorted by relevance
/drivers/gpu/drm/i915/ |
D | intel_uncore.c | 469 #define REG_RANGE(reg, start, end) ((reg) >= (start) && (reg) < (end)) macro 472 (REG_RANGE((reg), 0x2000, 0x4000) || \ 473 REG_RANGE((reg), 0x5000, 0x8000) || \ 474 REG_RANGE((reg), 0xB000, 0x12000) || \ 475 REG_RANGE((reg), 0x2E000, 0x30000)) 478 (REG_RANGE((reg), 0x12000, 0x14000) || \ 479 REG_RANGE((reg), 0x22000, 0x24000) || \ 480 REG_RANGE((reg), 0x30000, 0x40000)) 483 (REG_RANGE((reg), 0x2000, 0x4000) || \ 484 REG_RANGE((reg), 0x5000, 0x8000) || \ [all …]
|