1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2022 Intel Corporation 4 */ 5 6 #ifndef __INTEL_HTI_REGS_H__ 7 #define __INTEL_HTI_REGS_H__ 8 9 #include "i915_reg_defs.h" 10 11 #define HDPORT_STATE _MMIO(0x45050) 12 #define HDPORT_DPLL_USED_MASK REG_GENMASK(15, 12) 13 #define HDPORT_DDI_USED(phy) REG_BIT(2 * (phy) + 1) 14 #define HDPORT_ENABLED REG_BIT(0) 15 16 #endif /* __INTEL_HTI_REGS_H__ */ 17