Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_PMDEMAND_H__
|
|
#define __INTEL_PMDEMAND_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum pipe;
|
|
struct intel_atomic_state;
|
|
struct intel_crtc_state;
|
|
struct intel_display;
|
|
struct intel_encoder;
|
|
struct intel_global_state;
|
|
struct intel_plane_state;
|
|
struct intel_pmdemand_state;
|
|
|
|
struct intel_pmdemand_state *to_intel_pmdemand_state(struct intel_global_state *obj_state);
|
|
|
|
void intel_pmdemand_init_early(struct intel_display *display);
|
|
int intel_pmdemand_init(struct intel_display *display);
|
|
void intel_pmdemand_init_pmdemand_params(struct intel_display *display,
|
|
struct intel_pmdemand_state *pmdemand_state);
|
|
void intel_pmdemand_update_port_clock(struct intel_display *display,
|
|
struct intel_pmdemand_state *pmdemand_state,
|
|
enum pipe pipe, int port_clock);
|
|
void intel_pmdemand_update_phys_mask(struct intel_display *display,
|
|
struct intel_encoder *encoder,
|
|
struct intel_pmdemand_state *pmdemand_state,
|
|
bool clear_bit);
|
|
void intel_pmdemand_program_dbuf(struct intel_display *display,
|
|
u8 dbuf_slices);
|
|
void intel_pmdemand_pre_plane_update(struct intel_atomic_state *state);
|
|
void intel_pmdemand_post_plane_update(struct intel_atomic_state *state);
|
|
int intel_pmdemand_atomic_check(struct intel_atomic_state *state);
|
|
|
|
#endif /* __INTEL_PMDEMAND_H__ */
|