brintos

brintos / linux-shallow public Read only

0
0
Text · 387 B · e206f28 Raw
17 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2022 Intel Corporation4 */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