Contributors: 10
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Jani Nikula |
77 |
41.40% |
5 |
19.23% |
| Ville Syrjälä |
40 |
21.51% |
7 |
26.92% |
| Paulo Zanoni |
35 |
18.82% |
4 |
15.38% |
| Imre Deak |
10 |
5.38% |
2 |
7.69% |
| Daniel Vetter |
9 |
4.84% |
2 |
7.69% |
| Ander Conselvan de Oliveira |
7 |
3.76% |
2 |
7.69% |
| Ramalingam C |
3 |
1.61% |
1 |
3.85% |
| Clint Taylor |
2 |
1.08% |
1 |
3.85% |
| Matt Roper |
2 |
1.08% |
1 |
3.85% |
| Chris Wilson |
1 |
0.54% |
1 |
3.85% |
| Total |
186 |
|
26 |
|
/* 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);
void g4x_dp_set_clock(struct intel_encoder *encoder,
struct intel_crtc_state *pipe_config);
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 void g4x_dp_set_clock(struct intel_encoder *encoder,
struct intel_crtc_state *pipe_config)
{
}
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