MTL introduces a new way to instruct the PUnit with power and bandwidth requirements of DE. Add the functionality to program the registers and handle waits using interrupts. The current wait time for timeouts is programmed for 10 msecs to factor in the worst case scenarios. Changes made to use REG_BIT for a register that we touched(GEN8_DE_MISC_IER _MMIO). Wa_14016740474 is added which applies to Xe_LPD+ display v2: checkpatch warning fixes, simplify program pmdemand part v3: update to dbufs and pipes values to pmdemand register(stan) Removed the macro usage in update_pmdemand_values() v4: move the pmdemand_pre_plane_update before cdclk update pmdemand_needs_update included cdclk params comparisons pmdemand_state NULL check (Gustavo) pmdemand.o in sorted order in the makefile (Jani) update pmdemand misc irq handler loop (Gustavo) active phys bitmask and programming correction (Gustavo) v5: simplify pmdemand_state structure simplify methods to find active phys and max port clock Timeout in case of previou pmdemand task pending (Gustavo) v6: rebasing updates to max_ddiclk calculations (Gustavo) updates to active_phys count method (Gustavo) v7: use two separate loop to iterate throug old and new crtc states to calculate the active phys (Gustavo) v8: use uniform function names (Gustavo) v9: For phys change iterate through connectors (Imre) Look for change in phys for pmdemand update (Gustavo, Imre) Some more stlying changes (Imre) Update pmdemand state during HW readout/sanitize (Imre) v10: Fix CI checkpatch warnings v11: use correct pmdemand object pointer during hw readout, simplify the check for phys need update (Gustavo) v12: Handle possible non serialize cases (Imre) Initialise also pmdemand params HW readout (Imre) Update active phys mask during sanitize calls (Imre) Check TC/encoder changes to limit connector update (Imre) v13: Check display version before accessing pmdemand functions v14: Move is_serialized to intel_global_state.c simplify update params and other stlying issues (Imre) Bspec: 66451, 64636, 64602, 64603 Cc: Matt Atwood <matthew.s.atwood@intel.com> Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Cc: Gustavo Sousa <gustavo.sousa@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Gustavo Sousa <gustavo.sousa@intel.com> Signed-off-by: Mika Kahola <mika.kahola@intel.com> Signed-off-by: Vinod Govindapillai <vinod.govindapillai@intel.com> Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> #v4 Acked-by: Gustavo Sousa <gustavo.sousa@intel.com> #v11 Reviewed-by: Imre Deak <imre.deak@intel.com> [RK: Fixed minor typo in one of the comments. s/qclck_gc/qclk_gv/] Signed-off-by: Radhakrishna Sripada <radhakrishna.sripada@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230606201032.347449-1-vinod.govindapillai@intel.com
92 lines
3 KiB
C
92 lines
3 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_GLOBAL_STATE_H__
|
|
#define __INTEL_GLOBAL_STATE_H__
|
|
|
|
#include <linux/kref.h>
|
|
#include <linux/list.h>
|
|
|
|
struct drm_i915_private;
|
|
struct intel_atomic_state;
|
|
struct intel_global_obj;
|
|
struct intel_global_state;
|
|
|
|
struct intel_global_state_funcs {
|
|
struct intel_global_state *(*atomic_duplicate_state)(struct intel_global_obj *obj);
|
|
void (*atomic_destroy_state)(struct intel_global_obj *obj,
|
|
struct intel_global_state *state);
|
|
};
|
|
|
|
struct intel_global_obj {
|
|
struct list_head head;
|
|
struct intel_global_state *state;
|
|
const struct intel_global_state_funcs *funcs;
|
|
};
|
|
|
|
#define intel_for_each_global_obj(obj, dev_priv) \
|
|
list_for_each_entry(obj, &(dev_priv)->display.global.obj_list, head)
|
|
|
|
#define for_each_new_global_obj_in_state(__state, obj, new_obj_state, __i) \
|
|
for ((__i) = 0; \
|
|
(__i) < (__state)->num_global_objs && \
|
|
((obj) = (__state)->global_objs[__i].ptr, \
|
|
(new_obj_state) = (__state)->global_objs[__i].new_state, 1); \
|
|
(__i)++) \
|
|
for_each_if(obj)
|
|
|
|
#define for_each_old_global_obj_in_state(__state, obj, new_obj_state, __i) \
|
|
for ((__i) = 0; \
|
|
(__i) < (__state)->num_global_objs && \
|
|
((obj) = (__state)->global_objs[__i].ptr, \
|
|
(new_obj_state) = (__state)->global_objs[__i].old_state, 1); \
|
|
(__i)++) \
|
|
for_each_if(obj)
|
|
|
|
#define for_each_oldnew_global_obj_in_state(__state, obj, old_obj_state, new_obj_state, __i) \
|
|
for ((__i) = 0; \
|
|
(__i) < (__state)->num_global_objs && \
|
|
((obj) = (__state)->global_objs[__i].ptr, \
|
|
(old_obj_state) = (__state)->global_objs[__i].old_state, \
|
|
(new_obj_state) = (__state)->global_objs[__i].new_state, 1); \
|
|
(__i)++) \
|
|
for_each_if(obj)
|
|
|
|
struct intel_global_state {
|
|
struct intel_global_obj *obj;
|
|
struct intel_atomic_state *state;
|
|
struct kref ref;
|
|
bool changed;
|
|
};
|
|
|
|
struct __intel_global_objs_state {
|
|
struct intel_global_obj *ptr;
|
|
struct intel_global_state *state, *old_state, *new_state;
|
|
};
|
|
|
|
void intel_atomic_global_obj_init(struct drm_i915_private *dev_priv,
|
|
struct intel_global_obj *obj,
|
|
struct intel_global_state *state,
|
|
const struct intel_global_state_funcs *funcs);
|
|
void intel_atomic_global_obj_cleanup(struct drm_i915_private *dev_priv);
|
|
|
|
struct intel_global_state *
|
|
intel_atomic_get_global_obj_state(struct intel_atomic_state *state,
|
|
struct intel_global_obj *obj);
|
|
struct intel_global_state *
|
|
intel_atomic_get_old_global_obj_state(struct intel_atomic_state *state,
|
|
struct intel_global_obj *obj);
|
|
struct intel_global_state *
|
|
intel_atomic_get_new_global_obj_state(struct intel_atomic_state *state,
|
|
struct intel_global_obj *obj);
|
|
|
|
void intel_atomic_swap_global_state(struct intel_atomic_state *state);
|
|
void intel_atomic_clear_global_state(struct intel_atomic_state *state);
|
|
int intel_atomic_lock_global_state(struct intel_global_state *obj_state);
|
|
int intel_atomic_serialize_global_state(struct intel_global_state *obj_state);
|
|
|
|
bool intel_atomic_global_state_is_serialized(struct intel_atomic_state *state);
|
|
|
|
#endif
|