blob: 028ee19b64ce77db2a7dbf885669112f3795a0bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef __SKL_PREFILL_H__
#define __SKL_PREFILL_H__
#include <linux/types.h>
struct intel_crtc_state;
struct skl_prefill_ctx {
/* .16 scanlines */
struct {
unsigned int fixed;
unsigned int wm0;
unsigned int scaler_1st;
unsigned int scaler_2nd;
unsigned int dsc;
unsigned int full;
} prefill;
/* .16 adjustment factors */
struct {
unsigned int cdclk;
unsigned int scaler_1st;
unsigned int scaler_2nd;
} adj;
};
void skl_prefill_init_worst(struct skl_prefill_ctx *ctx,
const struct intel_crtc_state *crtc_state);
void skl_prefill_init(struct skl_prefill_ctx *ctx,
const struct intel_crtc_state *crtc_state);
bool skl_prefill_vblank_too_short(const struct skl_prefill_ctx *ctx,
const struct intel_crtc_state *crtc_state,
unsigned int latency_us);
int skl_prefill_min_guardband(const struct skl_prefill_ctx *ctx,
const struct intel_crtc_state *crtc_state,
unsigned int latency_us);
int skl_prefill_min_cdclk(const struct skl_prefill_ctx *ctx,
const struct intel_crtc_state *crtc_state);
#endif /* __SKL_PREFILL_H__ */
|