Searched refs:REG_RANGE (Results 1 – 1 of 1) sorted by relevance
/drivers/gpu/drm/i915/ |
D | intel_uncore.c | 531 #define REG_RANGE(reg, start, end) ((reg) >= (start) && (reg) < (end)) macro 534 (REG_RANGE((reg), 0x2000, 0x4000) || \ 535 REG_RANGE((reg), 0x5000, 0x8000) || \ 536 REG_RANGE((reg), 0xB000, 0x12000) || \ 537 REG_RANGE((reg), 0x2E000, 0x30000)) 540 (REG_RANGE((reg), 0x12000, 0x14000) || \ 541 REG_RANGE((reg), 0x22000, 0x24000) || \ 542 REG_RANGE((reg), 0x30000, 0x40000)) 545 (REG_RANGE((reg), 0x2000, 0x4000) || \ 546 REG_RANGE((reg), 0x5200, 0x8000) || \ [all …]
|