mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:30:52 +07:00
drm: Move port definition back to i915 header
We dont need the definition of the enum port outside I915, anymore. Hence move enum port definition into I915 driver itself. v2: intel_display.h is included in intel_hdcp.h v3: enum port is declared in headers. v4: commit msg is rephrased. v5: copyright year is updated [Tomas] Signed-off-by: Ramalingam C <ramalingam.c@intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Shashank Sharma <shashank.sharma@intel.com> Reviewed-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Uma Shankar <uma.shankar@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190828164216.405-3-ramalingam.c@intel.com
This commit is contained in:
parent
0dcceb35a1
commit
5b6030da28
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright © 2016 Intel Corporation
|
* Copyright © 2016-2019 Intel Corporation
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
* copy of this software and associated documentation files (the "Software"),
|
* copy of this software and associated documentation files (the "Software"),
|
||||||
@ -35,6 +35,7 @@
|
|||||||
#include <drm/i915_drm.h>
|
#include <drm/i915_drm.h>
|
||||||
|
|
||||||
struct drm_i915_private;
|
struct drm_i915_private;
|
||||||
|
enum port;
|
||||||
|
|
||||||
enum intel_backlight_type {
|
enum intel_backlight_type {
|
||||||
INTEL_BACKLIGHT_PMIC,
|
INTEL_BACKLIGHT_PMIC,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright © 2006-2017 Intel Corporation
|
* Copyright © 2006-2019 Intel Corporation
|
||||||
*
|
*
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
* copy of this software and associated documentation files (the "Software"),
|
* copy of this software and associated documentation files (the "Software"),
|
||||||
@ -182,6 +182,24 @@ enum plane_id {
|
|||||||
for ((__p) = PLANE_PRIMARY; (__p) < I915_MAX_PLANES; (__p)++) \
|
for ((__p) = PLANE_PRIMARY; (__p) < I915_MAX_PLANES; (__p)++) \
|
||||||
for_each_if((__crtc)->plane_ids_mask & BIT(__p))
|
for_each_if((__crtc)->plane_ids_mask & BIT(__p))
|
||||||
|
|
||||||
|
enum port {
|
||||||
|
PORT_NONE = -1,
|
||||||
|
|
||||||
|
PORT_A = 0,
|
||||||
|
PORT_B,
|
||||||
|
PORT_C,
|
||||||
|
PORT_D,
|
||||||
|
PORT_E,
|
||||||
|
PORT_F,
|
||||||
|
PORT_G,
|
||||||
|
PORT_H,
|
||||||
|
PORT_I,
|
||||||
|
|
||||||
|
I915_MAX_PORTS
|
||||||
|
};
|
||||||
|
|
||||||
|
#define port_name(p) ((p) + 'A')
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Ports identifier referenced from other drivers.
|
* Ports identifier referenced from other drivers.
|
||||||
* Expected to remain stable over time
|
* Expected to remain stable over time
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "i915_reg.h"
|
#include "i915_reg.h"
|
||||||
|
|
||||||
enum pipe;
|
enum pipe;
|
||||||
|
enum port;
|
||||||
struct drm_connector_state;
|
struct drm_connector_state;
|
||||||
struct drm_encoder;
|
struct drm_encoder;
|
||||||
struct drm_i915_private;
|
struct drm_i915_private;
|
||||||
|
@ -15,6 +15,7 @@ struct drm_connector_state;
|
|||||||
struct drm_i915_private;
|
struct drm_i915_private;
|
||||||
struct intel_connector;
|
struct intel_connector;
|
||||||
struct intel_hdcp_shim;
|
struct intel_hdcp_shim;
|
||||||
|
enum port;
|
||||||
|
|
||||||
void intel_hdcp_atomic_check(struct drm_connector *connector,
|
void intel_hdcp_atomic_check(struct drm_connector *connector,
|
||||||
struct drm_connector_state *old_state,
|
struct drm_connector_state *old_state,
|
||||||
|
@ -23,6 +23,7 @@ struct intel_crtc_state;
|
|||||||
struct intel_hdmi;
|
struct intel_hdmi;
|
||||||
struct drm_connector_state;
|
struct drm_connector_state;
|
||||||
union hdmi_infoframe;
|
union hdmi_infoframe;
|
||||||
|
enum port;
|
||||||
|
|
||||||
void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
|
void intel_hdmi_init(struct drm_i915_private *dev_priv, i915_reg_t hdmi_reg,
|
||||||
enum port port);
|
enum port port);
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
struct drm_i915_private;
|
struct drm_i915_private;
|
||||||
struct intel_connector;
|
struct intel_connector;
|
||||||
struct intel_encoder;
|
struct intel_encoder;
|
||||||
|
enum port;
|
||||||
|
|
||||||
void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
|
void intel_hpd_poll_init(struct drm_i915_private *dev_priv);
|
||||||
enum intel_hotplug_state intel_encoder_hotplug(struct intel_encoder *encoder,
|
enum intel_hotplug_state intel_encoder_hotplug(struct intel_encoder *encoder,
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
|
|
||||||
struct drm_i915_private;
|
struct drm_i915_private;
|
||||||
enum pipe;
|
enum pipe;
|
||||||
|
enum port;
|
||||||
|
|
||||||
bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
|
bool intel_sdvo_port_enabled(struct drm_i915_private *dev_priv,
|
||||||
i915_reg_t sdvo_reg, enum pipe *pipe);
|
i915_reg_t sdvo_reg, enum pipe *pipe);
|
||||||
|
@ -100,22 +100,4 @@ extern struct resource intel_graphics_stolen_res;
|
|||||||
#define INTEL_GEN11_BSM_DW1 0xc4
|
#define INTEL_GEN11_BSM_DW1 0xc4
|
||||||
#define INTEL_BSM_MASK (-(1u << 20))
|
#define INTEL_BSM_MASK (-(1u << 20))
|
||||||
|
|
||||||
enum port {
|
|
||||||
PORT_NONE = -1,
|
|
||||||
|
|
||||||
PORT_A = 0,
|
|
||||||
PORT_B,
|
|
||||||
PORT_C,
|
|
||||||
PORT_D,
|
|
||||||
PORT_E,
|
|
||||||
PORT_F,
|
|
||||||
PORT_G,
|
|
||||||
PORT_H,
|
|
||||||
PORT_I,
|
|
||||||
|
|
||||||
I915_MAX_PORTS
|
|
||||||
};
|
|
||||||
|
|
||||||
#define port_name(p) ((p) + 'A')
|
|
||||||
|
|
||||||
#endif /* _I915_DRM_H_ */
|
#endif /* _I915_DRM_H_ */
|
||||||
|
Loading…
Reference in New Issue
Block a user