Contributors: 10
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Ville Syrjälä |
54 |
31.03% |
11 |
44.00% |
Dave Airlie |
48 |
27.59% |
3 |
12.00% |
Jani Nikula |
41 |
23.56% |
2 |
8.00% |
Jesse Barnes |
16 |
9.20% |
3 |
12.00% |
Chandra Konduru |
4 |
2.30% |
1 |
4.00% |
Chris Wilson |
4 |
2.30% |
1 |
4.00% |
Imre Deak |
3 |
1.72% |
1 |
4.00% |
Ander Conselvan de Oliveira |
2 |
1.15% |
1 |
4.00% |
Maarten Lankhorst |
1 |
0.57% |
1 |
4.00% |
Gustavo Padovan |
1 |
0.57% |
1 |
4.00% |
Total |
174 |
|
25 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2020 Intel Corporation
*/
#ifndef _I9XX_PLANE_H_
#define _I9XX_PLANE_H_
#include <linux/types.h>
enum pipe;
struct drm_i915_private;
struct intel_crtc;
struct intel_initial_plane_config;
struct intel_plane;
struct intel_plane_state;
#ifdef I915
unsigned int i965_plane_max_stride(struct intel_plane *plane,
u32 pixel_format, u64 modifier,
unsigned int rotation);
int i9xx_check_plane_surface(struct intel_plane_state *plane_state);
struct intel_plane *
intel_primary_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe);
void i9xx_get_initial_plane_config(struct intel_crtc *crtc,
struct intel_initial_plane_config *plane_config);
#else
static inline unsigned int i965_plane_max_stride(struct intel_plane *plane,
u32 pixel_format, u64 modifier,
unsigned int rotation)
{
return 0;
}
static inline int i9xx_check_plane_surface(struct intel_plane_state *plane_state)
{
return 0;
}
static inline struct intel_plane *
intel_primary_plane_create(struct drm_i915_private *dev_priv, int pipe)
{
return NULL;
}
static inline void i9xx_get_initial_plane_config(struct intel_crtc *crtc,
struct intel_initial_plane_config *plane_config)
{
}
#endif
#endif