Contributors: 9
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Jani Nikula |
69 |
44.52% |
5 |
22.73% |
| Ville Syrjälä |
29 |
18.71% |
6 |
27.27% |
| Paulo Zanoni |
28 |
18.06% |
4 |
18.18% |
| Imre Deak |
10 |
6.45% |
2 |
9.09% |
| Daniel Vetter |
7 |
4.52% |
1 |
4.55% |
| Ander Conselvan de Oliveira |
6 |
3.87% |
1 |
4.55% |
| Ramalingam C |
3 |
1.94% |
1 |
4.55% |
| Clint Taylor |
2 |
1.29% |
1 |
4.55% |
| Chris Wilson |
1 |
0.65% |
1 |
4.55% |
| Total |
155 |
|
22 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2020 Intel Corporation
*/
#ifndef _G4X_DP_H_
#define _G4X_DP_H_
#include <linux/types.h>
#include "i915_reg_defs.h"
enum pipe;
enum port;
struct drm_i915_private;
struct intel_crtc_state;
struct intel_dp;
struct intel_encoder;
#ifdef I915
const struct dpll *vlv_get_dpll(struct drm_i915_private *i915);
bool g4x_dp_port_enabled(struct drm_i915_private *dev_priv,
i915_reg_t dp_reg, enum port port,
enum pipe *pipe);
bool g4x_dp_init(struct drm_i915_private *dev_priv,
i915_reg_t output_reg, enum port port);
#else
static inline const struct dpll *vlv_get_dpll(struct drm_i915_private *i915)
{
return NULL;
}
static inline bool g4x_dp_port_enabled(struct drm_i915_private *dev_priv,
i915_reg_t dp_reg, int port,
enum pipe *pipe)
{
return false;
}
static inline bool g4x_dp_init(struct drm_i915_private *dev_priv,
i915_reg_t output_reg, int port)
{
return false;
}
#endif
#endif