2024-04-12 12:41:45 +03:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2024 Intel Corporation
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __INTEL_WAKELOCK_H__
|
|
|
|
#define __INTEL_WAKELOCK_H__
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include <linux/refcount.h>
|
|
|
|
|
|
|
|
#include "i915_reg_defs.h"
|
|
|
|
|
2024-04-17 16:02:45 +03:00
|
|
|
struct intel_display;
|
2024-04-12 12:41:45 +03:00
|
|
|
|
|
|
|
struct intel_dmc_wl {
|
2024-11-08 09:57:14 -03:00
|
|
|
spinlock_t lock; /* protects enabled, taken, dc_state and refcount */
|
2024-04-12 12:41:45 +03:00
|
|
|
bool enabled;
|
|
|
|
bool taken;
|
|
|
|
refcount_t refcount;
|
2024-11-08 09:57:14 -03:00
|
|
|
/*
|
|
|
|
* We are keeping a copy of the enabled DC state because
|
|
|
|
* intel_display.power.domains is protected by a mutex and we do
|
|
|
|
* not want call mutex_lock() in atomic context, where some of
|
|
|
|
* the tracked MMIO operations happen.
|
|
|
|
*/
|
|
|
|
u32 dc_state;
|
2024-04-12 12:41:45 +03:00
|
|
|
struct delayed_work work;
|
|
|
|
};
|
|
|
|
|
2024-04-17 16:02:45 +03:00
|
|
|
void intel_dmc_wl_init(struct intel_display *display);
|
2024-11-08 09:57:14 -03:00
|
|
|
void intel_dmc_wl_enable(struct intel_display *display, u32 dc_state);
|
2024-04-17 16:02:45 +03:00
|
|
|
void intel_dmc_wl_disable(struct intel_display *display);
|
2024-11-29 13:37:54 -03:00
|
|
|
void intel_dmc_wl_flush_release_work(struct intel_display *display);
|
2024-04-17 16:02:45 +03:00
|
|
|
void intel_dmc_wl_get(struct intel_display *display, i915_reg_t reg);
|
|
|
|
void intel_dmc_wl_put(struct intel_display *display, i915_reg_t reg);
|
2024-11-08 09:57:10 -03:00
|
|
|
void intel_dmc_wl_get_noreg(struct intel_display *display);
|
|
|
|
void intel_dmc_wl_put_noreg(struct intel_display *display);
|
2024-04-12 12:41:45 +03:00
|
|
|
|
|
|
|
#endif /* __INTEL_WAKELOCK_H__ */
|