mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Some display register files include i915_reg_defs.h, some don't include anything. Prefer intel_display_reg_defs.h in display. Reviewed-by: Michał Grzelak <michal.grzelak@intel.com> Link: https://lore.kernel.org/r/06c24e1f6a7a2f6b4801b0a079eec3cc924402a7.1749469962.git.jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
17 lines
396 B
C
17 lines
396 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2022 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_HTI_REGS_H__
|
|
#define __INTEL_HTI_REGS_H__
|
|
|
|
#include "intel_display_reg_defs.h"
|
|
|
|
#define HDPORT_STATE _MMIO(0x45050)
|
|
#define HDPORT_DPLL_USED_MASK REG_GENMASK(15, 12)
|
|
#define HDPORT_DDI_USED(phy) REG_BIT(2 * (phy) + 1)
|
|
#define HDPORT_ENABLED REG_BIT(0)
|
|
|
|
#endif /* __INTEL_HTI_REGS_H__ */
|