Searched refs:REG_RANGE (Results 1 – 1 of 1) sorted by relevance
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_uncore.c | 478 #define REG_RANGE(reg, start, end) ((reg) >= (start) && (reg) < (end)) macro 481 (REG_RANGE((reg), 0x2000, 0x4000) || \ 482 REG_RANGE((reg), 0x5000, 0x8000) || \ 483 REG_RANGE((reg), 0xB000, 0x12000) || \ 484 REG_RANGE((reg), 0x2E000, 0x30000)) 487 (REG_RANGE((reg), 0x12000, 0x14000) || \ 488 REG_RANGE((reg), 0x22000, 0x24000) || \ 489 REG_RANGE((reg), 0x30000, 0x40000)) 492 (REG_RANGE((reg), 0x2000, 0x4000) || \ 493 REG_RANGE((reg), 0x5200, 0x8000) || \ [all …]
|